You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2014/12/31 05:58:44 UTC

[01/18] docs commit: CB-8219 Added YAML validation script: `bin/validatejsdoc --compare=false`

Repository: cordova-docs
Updated Branches:
  refs/heads/master 468560dd3 -> d717119db


CB-8219 Added YAML validation script: `bin/validatejsdoc --compare=false`


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/4ef9f102
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/4ef9f102
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/4ef9f102

Branch: refs/heads/master
Commit: 4ef9f102f78f3ede896e1b5262f52a5aab4eb34a
Parents: 468560d
Author: Andrey Kurdyumov <ka...@gmail.com>
Authored: Thu Dec 25 19:54:08 2014 +0600
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Tue Dec 30 23:54:36 2014 -0500

----------------------------------------------------------------------
 bin/validatejsdoc     |   9 +-
 lib/docs_validator.js | 207 +++++++++++++++++++++++++++++++++++++++++++++
 package.json          |   1 +
 3 files changed, 215 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/4ef9f102/bin/validatejsdoc
----------------------------------------------------------------------
diff --git a/bin/validatejsdoc b/bin/validatejsdoc
index 86bb3fa..ef72b5a 100755
--- a/bin/validatejsdoc
+++ b/bin/validatejsdoc
@@ -20,7 +20,6 @@
 */
 /*jslint node:true, nomen: true */
 
-var comparer = require('../lib/docs_comparer');
 var yargs = require('yargs')
     .describe('edge', 'Compare edge version of English docs with Ruby version')
     .count("verbose")
@@ -58,4 +57,10 @@ if (argv.edge) {
     }
 }
 
-new comparer().compare(language, version, argv.verbose);
\ No newline at end of file
+if (argv.compare) {
+    var comparer = require('../lib/docs_comparer');
+    new comparer().compare(language, version, argv.verbose);
+} else {
+    var validator = require('../lib/docs_validator');
+    new validator().validate(language, version, argv.verbose);
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/4ef9f102/lib/docs_validator.js
----------------------------------------------------------------------
diff --git a/lib/docs_validator.js b/lib/docs_validator.js
new file mode 100644
index 0000000..10b9e3a
--- /dev/null
+++ b/lib/docs_validator.js
@@ -0,0 +1,207 @@
+/*
+       Licensed to the Apache Software Foundation (ASF) under one
+       or more contributor license agreements.  See the NOTICE file
+       distributed with this work for additional information
+       regarding copyright ownership.  The ASF licenses this file
+       to you under the Apache License, Version 2.0 (the
+       "License"); you may not use this file except in compliance
+       with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+       Unless required by applicable law or agreed to in writing,
+       software distributed under the License is distributed on an
+       "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+       KIND, either express or implied.  See the License for the
+       specific language governing permissions and limitations
+       under the License.
+*/
+/*jslint node: true */
+/*global setImmediate*/
+var fs = require("fs-extra");
+var path = require("path");
+var JoDoc = require("./cordova/jodoc");
+var FileHelpers = require("./file_helpers");
+var cheerio = require('cheerio');
+var jsdiff = require('diff'),
+    yaml = require("js-yaml"),
+    dir = require("node-dir");
+require('colors');
+
+var DocsValidator = (function () {
+    'use strict';
+
+    function processEachFileSync(source_path, fileCallback, directoryCallback) {
+        var directoryEntries = fs.readdirSync(source_path);
+        directoryEntries.forEach(function (dirEntry) {
+            var fullPath = path.join(source_path, dirEntry),
+                stat;
+            if (!fs.existsSync(fullPath)) {
+                return;
+            }
+
+            stat = fs.lstatSync(fullPath);
+            if (stat.isFile()) {
+                fileCallback(fullPath);
+                return;
+            }
+
+            if (stat.isDirectory()) {
+                if (directoryCallback(fullPath)) {
+                    processEachFileSync(fullPath, fileCallback, directoryCallback);
+                }
+
+                return;
+            }
+        });
+    }
+
+    function processEachFile(source_path, fileCallback, directoryCallback, errorCallback) {
+        fs.readdirSync(source_path, function (err, directoryEntries) {
+            if (err) {
+                errorCallback(err);
+                return;
+            }
+
+            directoryEntries.forEach(function (dirEntry) {
+                var fullPath = path.join(source_path, dirEntry);
+                fs.exists(fullPath, function (exists) {
+                    if (!exists) {
+                        return;
+                    }
+
+                    fs.lstat(fullPath, function (err, stat) {
+                        if (err) {
+                            errorCallback(err);
+                            return;
+                        }
+
+                        if (stat.isFile()) {
+                            fileCallback(fullPath);
+                            return;
+                        }
+
+                        if (stat.isDirectory()) {
+                            if (directoryCallback(fullPath)) {
+                                processEachFile(fullPath, fileCallback, directoryCallback, errorCallback);
+                            }
+
+                            return;
+                        }
+                    });
+                });
+            });
+        });
+    }
+
+    /**
+    * Creates a new instance of DocsValidator
+    * @param inputDirectory Directory which contains files which has to be processed.
+    */
+    function DocsValidator(originalDirectory) {
+        this.original_directory = originalDirectory || path.join(FileHelpers.getRootDirectory(), "docs");
+    }
+
+    /**
+    * Validates the specific version of documentation
+    * @param language Language which has to be validated.
+    * @param version Version which files has to be validated.
+    * @param verbose_mode Verbosity level.
+    */
+    DocsValidator.prototype.validate = function (language, version, verbose_mode) {
+        var self = this,
+            ignore_list = ['.', '..', '.DS_Store', 'test'];
+
+        verbose_mode = verbose_mode || 0;
+        if (verbose_mode > 0) {
+            console.log("Comparing docs for lang " + language + " and version " + version);
+            console.log("Clearing output directory");
+        }
+
+        fs.readdirSync(this.original_directory).forEach(function (language_dir) {
+            if (ignore_list.indexOf(language_dir) !== -1) {
+                return;
+            }
+
+            if (language && language_dir !== language) {
+                return;
+            }
+
+            var language_path = path.join(self.original_directory, language_dir);
+
+            fs.readdirSync(language_path).forEach(function (version_dir) {
+                if (ignore_list.indexOf(version_dir) !== -1) {
+                    return;
+                }
+
+                if (version && version_dir !== version) {
+                    return;
+                }
+
+                var input_path = path.join(self.original_directory, language_dir, version_dir),
+                    options = {
+                        lang: language_dir,
+                        version: version_dir,
+                        verbose: verbose_mode
+                    };
+
+                console.log(" => Validating the Cordova Documentation for " + version_dir + "-" + language_dir + "...");
+                self.process(input_path, options);
+            });
+        });
+    };
+    DocsValidator.prototype.process = function (original_directory, options) {
+        var self = this,
+            compareFiles,
+            completed;
+        console.log("Processing " + original_directory);
+        compareFiles = function (fileName) {
+            self.validateYaml(fileName, options);
+        };
+        completed = false;
+        dir.readFiles(original_directory,
+            { match: /\.md$/ },
+            function (err, content, filename, next) {
+                if (err) {
+                    throw err;
+                }
+
+                self.validateYaml(filename, content, options);
+                next();
+            },
+            function (err, files) {
+                if (err) {
+                    throw err;
+                }
+
+                completed = true;
+            });
+        function waitCompletition() {
+            if (!completed) {
+                setImmediate(waitCompletition);
+            }
+        }
+
+        setImmediate(waitCompletition);
+    };
+
+    DocsValidator.prototype.validateYaml = function (sourceFile, content, options) {
+        if (options.verbose > 0) {
+            console.log("Validate " + sourceFile);
+        }
+
+        var yamlRegexStripper = /^(---\s*\n[\s\S]*?\n?)^(---\s*$\n?)/m,
+            match = yamlRegexStripper.exec(content);
+
+        if (!match) {
+            console.log("File " + sourceFile + " miss the YAML license header");
+        } else {
+            if (match[1].indexOf("license:") === -1) {
+                console.log("File " + sourceFile + " has invalid YAML license header");
+            }
+        }
+    };
+
+    return DocsValidator;
+}());
+module.exports = DocsValidator;

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/4ef9f102/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 2283eee..b10eb86 100644
--- a/package.json
+++ b/package.json
@@ -12,6 +12,7 @@
     "fs-extra": "^0.11.1",
     "jodoc": "git://github.com/kant2002/jodoc-js",
     "js-yaml": "^3.2.2",
+    "node-dir": "^0.1.6",
     "shelljs": "^0.3.0",
     "yargs": "^1.3.1"
   },


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[05/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/support/index.md b/docs/pl/edge/guide/support/index.md
index 55478d7..79f9924 100644
--- a/docs/pl/edge/guide/support/index.md
+++ b/docs/pl/edge/guide/support/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Wspierane platformy
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/index.md b/docs/pl/edge/index.md
index 6d4a8eb..a6e0651 100644
--- a/docs/pl/edge/index.md
+++ b/docs/pl/edge/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 <div id="home">
   <h1>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/plugin_ref/plugman.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/plugin_ref/plugman.md b/docs/pl/edge/plugin_ref/plugman.md
index eb9af22..47db644 100644
--- a/docs/pl/edge/plugin_ref/plugman.md
+++ b/docs/pl/edge/plugin_ref/plugman.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Za pomocą Plugman do zarządzania wtyczki
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/plugin_ref/spec.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/plugin_ref/spec.md b/docs/pl/edge/plugin_ref/spec.md
index 52922f2..30de5d1 100644
--- a/docs/pl/edge/plugin_ref/spec.md
+++ b/docs/pl/edge/plugin_ref/spec.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Specyfikacja plugin
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/3.1.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.1.0/guide/platforms/firefoxos/config.md b/docs/ru/3.1.0/guide/platforms/firefoxos/config.md
index 3b86e5f..5c69d50 100644
--- a/docs/ru/3.1.0/guide/platforms/firefoxos/config.md
+++ b/docs/ru/3.1.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS конфигурация
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/3.4.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.4.0/cordova/plugins/pluginapis.md b/docs/ru/3.4.0/cordova/plugins/pluginapis.md
index 3c7e71c..494771b 100644
--- a/docs/ru/3.4.0/cordova/plugins/pluginapis.md
+++ b/docs/ru/3.4.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-Лицензия: лицензируются для Apache Software Foundation (ASF) одного или нескольких корреспондентов лицензионных соглашений. Смотрите файл уведомления, распространяется с этой работой за дополнительной информацией относительно авторского права собственности. ASF лицензии этот файл вам под Apache License, версия 2.0 ("Лицензия"); Вы не можете использовать этот файл за исключением в соответствии с лицензией. Вы можете получить копию лицензии на
-
-           http://www.Apache.org/Licenses/License-2.0 если иное не предусмотрено действующим законодательством или согласованных в письменной форме, программное обеспечение, распространяемое под лицензией распространяется «Как есть» основе, без гарантий или условий любого рода, явных или подразумеваемых.  Смотрите лицензию для конкретного языка, регулирующих разрешения и ограничения
-    
-
-## по лицензии.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # API плагинов
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/3.4.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.4.0/guide/platforms/amazonfireos/index.md b/docs/ru/3.4.0/guide/platforms/amazonfireos/index.md
index a6dba77..ce16ae1 100644
--- a/docs/ru/3.4.0/guide/platforms/amazonfireos/index.md
+++ b/docs/ru/3.4.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-Лицензия: лицензируются для Apache Software Foundation (ASF) одного или нескольких корреспондентов лицензионных соглашений. Смотрите файл уведомления, распространяется с этой работой за дополнительной информацией относительно авторского права собственности. ASF лицензии этот файл вам под Apache License, версия 2.0 ("Лицензия"); Вы не можете использовать этот файл за исключением в соответствии с лицензией. Вы можете получить копию лицензии на
-
-           http://www.Apache.org/Licenses/License-2.0 если иное не предусмотрено действующим законодательством или согласованных в письменной форме, программное обеспечение, распространяемое под лицензией распространяется «Как есть» основе, без гарантий или условий любого рода, явных или подразумеваемых.  Смотрите лицензию для конкретного языка, регулирующих разрешения и ограничения
-    
-
-## по лицензии.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon Fire платформы OS Гид
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/3.4.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.4.0/guide/platforms/firefoxos/config.md b/docs/ru/3.4.0/guide/platforms/firefoxos/config.md
index 3b86e5f..5c69d50 100644
--- a/docs/ru/3.4.0/guide/platforms/firefoxos/config.md
+++ b/docs/ru/3.4.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS конфигурация
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/3.4.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.4.0/guide/platforms/wp8/plugin.md b/docs/ru/3.4.0/guide/platforms/wp8/plugin.md
index 215e469..f15e742 100644
--- a/docs/ru/3.4.0/guide/platforms/wp8/plugin.md
+++ b/docs/ru/3.4.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---Лицензия: лицензируются для 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone плагины

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/3.5.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.5.0/cordova/plugins/pluginapis.md b/docs/ru/3.5.0/cordova/plugins/pluginapis.md
index 3c7e71c..494771b 100644
--- a/docs/ru/3.5.0/cordova/plugins/pluginapis.md
+++ b/docs/ru/3.5.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-Лицензия: лицензируются для Apache Software Foundation (ASF) одного или нескольких корреспондентов лицензионных соглашений. Смотрите файл уведомления, распространяется с этой работой за дополнительной информацией относительно авторского права собственности. ASF лицензии этот файл вам под Apache License, версия 2.0 ("Лицензия"); Вы не можете использовать этот файл за исключением в соответствии с лицензией. Вы можете получить копию лицензии на
-
-           http://www.Apache.org/Licenses/License-2.0 если иное не предусмотрено действующим законодательством или согласованных в письменной форме, программное обеспечение, распространяемое под лицензией распространяется «Как есть» основе, без гарантий или условий любого рода, явных или подразумеваемых.  Смотрите лицензию для конкретного языка, регулирующих разрешения и ограничения
-    
-
-## по лицензии.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # API плагинов
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/3.5.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.5.0/guide/platforms/amazonfireos/index.md b/docs/ru/3.5.0/guide/platforms/amazonfireos/index.md
index a6dba77..ce16ae1 100644
--- a/docs/ru/3.5.0/guide/platforms/amazonfireos/index.md
+++ b/docs/ru/3.5.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-Лицензия: лицензируются для Apache Software Foundation (ASF) одного или нескольких корреспондентов лицензионных соглашений. Смотрите файл уведомления, распространяется с этой работой за дополнительной информацией относительно авторского права собственности. ASF лицензии этот файл вам под Apache License, версия 2.0 ("Лицензия"); Вы не можете использовать этот файл за исключением в соответствии с лицензией. Вы можете получить копию лицензии на
-
-           http://www.Apache.org/Licenses/License-2.0 если иное не предусмотрено действующим законодательством или согласованных в письменной форме, программное обеспечение, распространяемое под лицензией распространяется «Как есть» основе, без гарантий или условий любого рода, явных или подразумеваемых.  Смотрите лицензию для конкретного языка, регулирующих разрешения и ограничения
-    
-
-## по лицензии.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon Fire платформы OS Гид
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/3.5.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.5.0/guide/platforms/firefoxos/config.md b/docs/ru/3.5.0/guide/platforms/firefoxos/config.md
index 3b86e5f..5c69d50 100644
--- a/docs/ru/3.5.0/guide/platforms/firefoxos/config.md
+++ b/docs/ru/3.5.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS конфигурация
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/3.5.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/3.5.0/guide/platforms/wp8/plugin.md b/docs/ru/3.5.0/guide/platforms/wp8/plugin.md
index 215e469..f15e742 100644
--- a/docs/ru/3.5.0/guide/platforms/wp8/plugin.md
+++ b/docs/ru/3.5.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---Лицензия: лицензируются для 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone плагины

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/config_ref/images.md b/docs/ru/edge/config_ref/images.md
index ca7ed0a..a2b77d8 100644
--- a/docs/ru/edge/config_ref/images.md
+++ b/docs/ru/edge/config_ref/images.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Иконки и заставки
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/config_ref/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/config_ref/index.md b/docs/ru/edge/config_ref/index.md
index c4d2e68..f3725fe 100644
--- a/docs/ru/edge/config_ref/index.md
+++ b/docs/ru/edge/config_ref/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Файл config.xml
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.backbutton.md b/docs/ru/edge/cordova/events/events.backbutton.md
index cd968c1..fed1908 100644
--- a/docs/ru/edge/cordova/events/events.backbutton.md
+++ b/docs/ru/edge/cordova/events/events.backbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # backbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.deviceready.md b/docs/ru/edge/cordova/events/events.deviceready.md
index 090aaa6..9c402f2 100644
--- a/docs/ru/edge/cordova/events/events.deviceready.md
+++ b/docs/ru/edge/cordova/events/events.deviceready.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # deviceready
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.endcallbutton.md b/docs/ru/edge/cordova/events/events.endcallbutton.md
index a377939..a93688d 100644
--- a/docs/ru/edge/cordova/events/events.endcallbutton.md
+++ b/docs/ru/edge/cordova/events/events.endcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # endcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.md b/docs/ru/edge/cordova/events/events.md
index b580aa2..17c8baa 100644
--- a/docs/ru/edge/cordova/events/events.md
+++ b/docs/ru/edge/cordova/events/events.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # События
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.menubutton.md b/docs/ru/edge/cordova/events/events.menubutton.md
index 335910f..e223a6f 100644
--- a/docs/ru/edge/cordova/events/events.menubutton.md
+++ b/docs/ru/edge/cordova/events/events.menubutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # menubutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.pause.md b/docs/ru/edge/cordova/events/events.pause.md
index 20220b1..f512b48 100644
--- a/docs/ru/edge/cordova/events/events.pause.md
+++ b/docs/ru/edge/cordova/events/events.pause.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # pause
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.resume.md b/docs/ru/edge/cordova/events/events.resume.md
index 88fd409..80366b9 100644
--- a/docs/ru/edge/cordova/events/events.resume.md
+++ b/docs/ru/edge/cordova/events/events.resume.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # resume
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.searchbutton.md b/docs/ru/edge/cordova/events/events.searchbutton.md
index ad95aca..9651908 100644
--- a/docs/ru/edge/cordova/events/events.searchbutton.md
+++ b/docs/ru/edge/cordova/events/events.searchbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # searchbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.startcallbutton.md b/docs/ru/edge/cordova/events/events.startcallbutton.md
index 0ad2abb..7c5c8a2 100644
--- a/docs/ru/edge/cordova/events/events.startcallbutton.md
+++ b/docs/ru/edge/cordova/events/events.startcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # startcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.volumedownbutton.md b/docs/ru/edge/cordova/events/events.volumedownbutton.md
index 7a5243a..dbf0e4e 100644
--- a/docs/ru/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/ru/edge/cordova/events/events.volumedownbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumedownbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/events/events.volumeupbutton.md b/docs/ru/edge/cordova/events/events.volumeupbutton.md
index 307323f..55afb34 100644
--- a/docs/ru/edge/cordova/events/events.volumeupbutton.md
+++ b/docs/ru/edge/cordova/events/events.volumeupbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/plugins/pluginapis.md b/docs/ru/edge/cordova/plugins/pluginapis.md
index 97d8a1b..1d456bb 100644
--- a/docs/ru/edge/cordova/plugins/pluginapis.md
+++ b/docs/ru/edge/cordova/plugins/pluginapis.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # API плагинов
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/cordova/storage/storage.md b/docs/ru/edge/cordova/storage/storage.md
index 3cd3428..38800e7 100644
--- a/docs/ru/edge/cordova/storage/storage.md
+++ b/docs/ru/edge/cordova/storage/storage.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Хранилище
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/appdev/privacy/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/appdev/privacy/index.md b/docs/ru/edge/guide/appdev/privacy/index.md
index 2391a9c..d53a58b 100644
--- a/docs/ru/edge/guide/appdev/privacy/index.md
+++ b/docs/ru/edge/guide/appdev/privacy/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство по конфиденциальности
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/appdev/security/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/appdev/security/index.md b/docs/ru/edge/guide/appdev/security/index.md
index e188cf9..9508523 100644
--- a/docs/ru/edge/guide/appdev/security/index.md
+++ b/docs/ru/edge/guide/appdev/security/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство по безопасности
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/appdev/whitelist/index.md b/docs/ru/edge/guide/appdev/whitelist/index.md
index 4d79184..83989ff 100644
--- a/docs/ru/edge/guide/appdev/whitelist/index.md
+++ b/docs/ru/edge/guide/appdev/whitelist/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Инструкция по доступу к внешним ресурсам
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/cli/index.md b/docs/ru/edge/guide/cli/index.md
index 7cbabaf..d0aae31 100644
--- a/docs/ru/edge/guide/cli/index.md
+++ b/docs/ru/edge/guide/cli/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Интерфейс командной строки
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/hybrid/plugins/index.md b/docs/ru/edge/guide/hybrid/plugins/index.md
index 1912de3..5641430 100644
--- a/docs/ru/edge/guide/hybrid/plugins/index.md
+++ b/docs/ru/edge/guide/hybrid/plugins/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство по разработке расширений
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/hybrid/webviews/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/hybrid/webviews/index.md b/docs/ru/edge/guide/hybrid/webviews/index.md
index 3e19d09..3b2625c 100644
--- a/docs/ru/edge/guide/hybrid/webviews/index.md
+++ b/docs/ru/edge/guide/hybrid/webviews/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Интеграция WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/next/index.md b/docs/ru/edge/guide/next/index.md
index d4fac2d..dd486ad 100644
--- a/docs/ru/edge/guide/next/index.md
+++ b/docs/ru/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Последующие шаги
 
 Для разработчиков, иметь представление о том, как использовать Cordova CLI и использовать плагины, есть несколько вещей, вы можете хотеть рассматривать исследования рядом с построения лучшего, более мощные приложений Cordova. Следующий документ предлагает советы по различным темам, касающимся передовой практики, испытаний, модернизации и другие темы, но не предназначен быть директивный характер. Рассмотрим это вашей отправной точкой для вашего роста, как разработчик Кордова. Кроме того если вы видите то, что можно улучшить, пожалуйста, [внести][1]
 !

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/overview/index.md b/docs/ru/edge/guide/overview/index.md
index 97d3146..8a4333c 100644
--- a/docs/ru/edge/guide/overview/index.md
+++ b/docs/ru/edge/guide/overview/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Введение
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/amazonfireos/config.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/amazonfireos/config.md b/docs/ru/edge/guide/platforms/amazonfireos/config.md
index 7cd87e5..c3b0502 100644
--- a/docs/ru/edge/guide/platforms/amazonfireos/config.md
+++ b/docs/ru/edge/guide/platforms/amazonfireos/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Настройка Amazon Fire OS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/amazonfireos/index.md b/docs/ru/edge/guide/platforms/amazonfireos/index.md
index f6922e1..cfb0801 100644
--- a/docs/ru/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/ru/edge/guide/platforms/amazonfireos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство для платформы Amazon Fire OS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/amazonfireos/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/amazonfireos/plugin.md b/docs/ru/edge/guide/platforms/amazonfireos/plugin.md
index bb90699..674ae1f 100644
--- a/docs/ru/edge/guide/platforms/amazonfireos/plugin.md
+++ b/docs/ru/edge/guide/platforms/amazonfireos/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Плагины для Amazon Fire OS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/amazonfireos/webview.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/amazonfireos/webview.md b/docs/ru/edge/guide/platforms/amazonfireos/webview.md
index 5a80add..8974951 100644
--- a/docs/ru/edge/guide/platforms/amazonfireos/webview.md
+++ b/docs/ru/edge/guide/platforms/amazonfireos/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # WebView в Amazon Fire OS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/android/config.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/android/config.md b/docs/ru/edge/guide/platforms/android/config.md
index 579e459..7bbe81a 100644
--- a/docs/ru/edge/guide/platforms/android/config.md
+++ b/docs/ru/edge/guide/platforms/android/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Конфигурация Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/android/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/android/index.md b/docs/ru/edge/guide/platforms/android/index.md
index d50fc0b..1b6e1c3 100644
--- a/docs/ru/edge/guide/platforms/android/index.md
+++ b/docs/ru/edge/guide/platforms/android/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство для платформы Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/android/plugin.md b/docs/ru/edge/guide/platforms/android/plugin.md
index b195e44..608cef4 100644
--- a/docs/ru/edge/guide/platforms/android/plugin.md
+++ b/docs/ru/edge/guide/platforms/android/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Плагины для Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/android/tools.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/android/tools.md b/docs/ru/edge/guide/platforms/android/tools.md
index 7f902aa..9f966d2 100644
--- a/docs/ru/edge/guide/platforms/android/tools.md
+++ b/docs/ru/edge/guide/platforms/android/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство по инструментам командной строки Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/android/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/android/upgrade.md b/docs/ru/edge/guide/platforms/android/upgrade.md
index ef66082..7042f1a 100644
--- a/docs/ru/edge/guide/platforms/android/upgrade.md
+++ b/docs/ru/edge/guide/platforms/android/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Обновление для Android
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[02/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/firefoxos/config.md b/docs/zh/edge/guide/platforms/firefoxos/config.md
index dcf3322..c174682 100644
--- a/docs/zh/edge/guide/platforms/firefoxos/config.md
+++ b/docs/zh/edge/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 配置
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/firefoxos/index.md b/docs/zh/edge/guide/platforms/firefoxos/index.md
index 3b0db99..90e9711 100644
--- a/docs/zh/edge/guide/platforms/firefoxos/index.md
+++ b/docs/zh/edge/guide/platforms/firefoxos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 火狐瀏覽器作業系統平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/index.md b/docs/zh/edge/guide/platforms/index.md
index 40426f0..058095a 100644
--- a/docs/zh/edge/guide/platforms/index.md
+++ b/docs/zh/edge/guide/platforms/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/ios/config.md b/docs/zh/edge/guide/platforms/ios/config.md
index 5a1872a..f6f150d 100644
--- a/docs/zh/edge/guide/platforms/ios/config.md
+++ b/docs/zh/edge/guide/platforms/ios/config.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS 配置
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/ios/index.md b/docs/zh/edge/guide/platforms/ios/index.md
index 8fcad78..7c3b53f 100644
--- a/docs/zh/edge/guide/platforms/ios/index.md
+++ b/docs/zh/edge/guide/platforms/ios/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS 平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 06f7ebb..22df574 100644
--- a/docs/zh/edge/guide/platforms/ios/plugin.md
+++ b/docs/zh/edge/guide/platforms/ios/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS 外掛程式
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/ios/tools.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/ios/tools.md b/docs/zh/edge/guide/platforms/ios/tools.md
index 9263d2d..2829f58 100644
--- a/docs/zh/edge/guide/platforms/ios/tools.md
+++ b/docs/zh/edge/guide/platforms/ios/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS 殼工具指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/ios/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/ios/upgrade.md b/docs/zh/edge/guide/platforms/ios/upgrade.md
index 5479cfc..6ea7d17 100644
--- a/docs/zh/edge/guide/platforms/ios/upgrade.md
+++ b/docs/zh/edge/guide/platforms/ios/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 升級 iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/ios/webview.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/ios/webview.md b/docs/zh/edge/guide/platforms/ios/webview.md
index 3a94141..fb9352f 100644
--- a/docs/zh/edge/guide/platforms/ios/webview.md
+++ b/docs/zh/edge/guide/platforms/ios/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # WebViews iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/tizen/index.md b/docs/zh/edge/guide/platforms/tizen/index.md
index 4bed019..c00c08f 100644
--- a/docs/zh/edge/guide/platforms/tizen/index.md
+++ b/docs/zh/edge/guide/platforms/tizen/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Tizen 平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/ubuntu/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/ubuntu/index.md b/docs/zh/edge/guide/platforms/ubuntu/index.md
index b6d86bb..41b8d91 100644
--- a/docs/zh/edge/guide/platforms/ubuntu/index.md
+++ b/docs/zh/edge/guide/platforms/ubuntu/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Ubuntu 平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/win8/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/win8/index.md b/docs/zh/edge/guide/platforms/win8/index.md
index 3a7c18a..10d6a1c 100644
--- a/docs/zh/edge/guide/platforms/win8/index.md
+++ b/docs/zh/edge/guide/platforms/win8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows 平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/win8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/win8/plugin.md b/docs/zh/edge/guide/platforms/win8/plugin.md
index 9e05b26..1c3e8a6 100644
--- a/docs/zh/edge/guide/platforms/win8/plugin.md
+++ b/docs/zh/edge/guide/platforms/win8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows 外掛程式
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/win8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/win8/upgrade.md b/docs/zh/edge/guide/platforms/win8/upgrade.md
index e09023b..82c9324 100644
--- a/docs/zh/edge/guide/platforms/win8/upgrade.md
+++ b/docs/zh/edge/guide/platforms/win8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 升級 Windows 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/wp8/index.md b/docs/zh/edge/guide/platforms/wp8/index.md
index 0c42c18..13991ef 100644
--- a/docs/zh/edge/guide/platforms/wp8/index.md
+++ b/docs/zh/edge/guide/platforms/wp8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/wp8/parallels.md b/docs/zh/edge/guide/platforms/wp8/parallels.md
index 14c17ff..8fff1a5 100644
--- a/docs/zh/edge/guide/platforms/wp8/parallels.md
+++ b/docs/zh/edge/guide/platforms/wp8/parallels.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 配置 512mb
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/wp8/plugin.md b/docs/zh/edge/guide/platforms/wp8/plugin.md
index 8ff7979..506c115 100644
--- a/docs/zh/edge/guide/platforms/wp8/plugin.md
+++ b/docs/zh/edge/guide/platforms/wp8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 外掛程式
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/wp8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/wp8/upgrade.md b/docs/zh/edge/guide/platforms/wp8/upgrade.md
index 6da0fb5..7ac7cb7 100644
--- a/docs/zh/edge/guide/platforms/wp8/upgrade.md
+++ b/docs/zh/edge/guide/platforms/wp8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (ASF)。 See the NOTICE file distributed with this work for additional information regarding copyright ownership. ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 升級 Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/wp8/vmware.md b/docs/zh/edge/guide/platforms/wp8/vmware.md
index 810e7dc..d6c1e5a 100644
--- a/docs/zh/edge/guide/platforms/wp8/vmware.md
+++ b/docs/zh/edge/guide/platforms/wp8/vmware.md
@@ -1,11 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱許可證規定的許可權和限制的特定語言
-    
-
-## 根據許可證。
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 配置 VMWare 融合
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/wp8/webview.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/wp8/webview.md b/docs/zh/edge/guide/platforms/wp8/webview.md
index b913c9e..2eb2910 100644
--- a/docs/zh/edge/guide/platforms/wp8/webview.md
+++ b/docs/zh/edge/guide/platforms/wp8/webview.md
@@ -1,18 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Windows Phone 8.0 WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/support/index.md b/docs/zh/edge/guide/support/index.md
index c681efe..3e62cfa 100644
--- a/docs/zh/edge/guide/support/index.md
+++ b/docs/zh/edge/guide/support/index.md
@@ -1,11 +1,21 @@
-* * *
+---
+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
 
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
+           http://www.apache.org/licenses/LICENSE-2.0
 
-           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.
+---
 
 # 平臺支援
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/index.md b/docs/zh/edge/index.md
index cee1760..8d48f60 100644
--- a/docs/zh/edge/index.md
+++ b/docs/zh/edge/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 <div id="home">
   <h1>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/plugin_ref/plugman.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/plugin_ref/plugman.md b/docs/zh/edge/plugin_ref/plugman.md
index 6aceea2..59042e1 100644
--- a/docs/zh/edge/plugin_ref/plugman.md
+++ b/docs/zh/edge/plugin_ref/plugman.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 使用 Plugman 來管理外掛程式
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/plugin_ref/spec.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/plugin_ref/spec.md b/docs/zh/edge/plugin_ref/spec.md
index f13bac4..980898e 100644
--- a/docs/zh/edge/plugin_ref/spec.md
+++ b/docs/zh/edge/plugin_ref/spec.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 外掛程式規範
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[18/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
CB-8219 Add missing license headers from translations (close #250)


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/d717119d
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/d717119d
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/d717119d

Branch: refs/heads/master
Commit: d717119db2055ce754f6c04f39817495ef772c03
Parents: 4ef9f10
Author: Andrey Kurdyumov <ka...@gmail.com>
Authored: Thu Dec 25 21:35:27 2014 +0600
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Tue Dec 30 23:56:50 2014 -0500

----------------------------------------------------------------------
 .../3.1.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/de/3.4.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.4.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.4.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/de/3.4.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/de/3.4.0/guide/support/index.md            | 18 +++++++---
 docs/de/3.5.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.5.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.5.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/de/3.5.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/de/3.5.0/guide/support/index.md            | 18 +++++++---
 docs/de/edge/config_ref/images.md               | 18 ++++++----
 docs/de/edge/config_ref/index.md                | 18 ++++++----
 .../de/edge/cordova/events/events.backbutton.md | 18 ++++++----
 .../edge/cordova/events/events.deviceready.md   | 18 ++++++----
 .../edge/cordova/events/events.endcallbutton.md | 18 ++++++----
 docs/de/edge/cordova/events/events.md           | 18 ++++++----
 .../de/edge/cordova/events/events.menubutton.md | 18 ++++++----
 docs/de/edge/cordova/events/events.pause.md     | 18 ++++++----
 docs/de/edge/cordova/events/events.resume.md    | 18 ++++++----
 .../edge/cordova/events/events.searchbutton.md  | 18 ++++++----
 .../cordova/events/events.startcallbutton.md    | 18 ++++++----
 .../cordova/events/events.volumedownbutton.md   | 18 ++++++----
 .../cordova/events/events.volumeupbutton.md     | 18 ++++++----
 docs/de/edge/cordova/plugins/pluginapis.md      | 26 +++++++++-----
 docs/de/edge/cordova/storage/storage.md         | 18 ++++++----
 docs/de/edge/guide/appdev/privacy/index.md      | 18 ++++++----
 docs/de/edge/guide/appdev/security/index.md     | 26 +++++++++-----
 docs/de/edge/guide/appdev/whitelist/index.md    | 18 ++++++----
 docs/de/edge/guide/cli/index.md                 | 17 +++++----
 docs/de/edge/guide/hybrid/plugins/index.md      | 18 ++++++----
 docs/de/edge/guide/hybrid/webviews/index.md     | 18 ++++++----
 docs/de/edge/guide/next/index.md                | 19 ++++++++++
 docs/de/edge/guide/overview/index.md            | 17 +++++----
 .../edge/guide/platforms/amazonfireos/config.md | 20 ++++++-----
 .../edge/guide/platforms/amazonfireos/index.md  | 26 +++++++++-----
 .../edge/guide/platforms/amazonfireos/plugin.md | 20 ++++++-----
 .../guide/platforms/amazonfireos/webview.md     | 18 ++++++----
 docs/de/edge/guide/platforms/android/config.md  | 20 ++++++-----
 docs/de/edge/guide/platforms/android/index.md   | 18 ++++++----
 docs/de/edge/guide/platforms/android/plugin.md  | 20 ++++++-----
 docs/de/edge/guide/platforms/android/tools.md   | 18 ++++++----
 docs/de/edge/guide/platforms/android/upgrade.md | 18 ++++++----
 docs/de/edge/guide/platforms/android/webview.md | 18 ++++++----
 .../edge/guide/platforms/blackberry/upgrade.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/config.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/index.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/plugin.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/tools.md  | 18 ++++++----
 .../guide/platforms/blackberry10/upgrade.md     | 18 ++++++----
 .../de/edge/guide/platforms/firefoxos/config.md | 38 ++++++++++----------
 docs/de/edge/guide/platforms/firefoxos/index.md | 18 ++++++----
 docs/de/edge/guide/platforms/index.md           | 18 ++++++----
 docs/de/edge/guide/platforms/ios/config.md      | 18 ++++++----
 docs/de/edge/guide/platforms/ios/index.md       | 18 ++++++----
 docs/de/edge/guide/platforms/ios/plugin.md      | 20 ++++++-----
 docs/de/edge/guide/platforms/ios/tools.md       | 18 ++++++----
 docs/de/edge/guide/platforms/ios/upgrade.md     | 18 ++++++----
 docs/de/edge/guide/platforms/ios/webview.md     | 18 ++++++----
 docs/de/edge/guide/platforms/tizen/index.md     | 18 ++++++----
 docs/de/edge/guide/platforms/ubuntu/index.md    | 18 ++++++----
 docs/de/edge/guide/platforms/win8/index.md      | 18 ++++++----
 docs/de/edge/guide/platforms/win8/plugin.md     | 18 ++++++----
 docs/de/edge/guide/platforms/win8/upgrade.md    | 18 ++++++----
 docs/de/edge/guide/platforms/wp8/index.md       | 18 ++++++----
 docs/de/edge/guide/platforms/wp8/parallels.md   | 18 ++++++----
 docs/de/edge/guide/platforms/wp8/plugin.md      | 18 ++++++----
 docs/de/edge/guide/platforms/wp8/upgrade.md     | 18 ++++++----
 docs/de/edge/guide/platforms/wp8/vmware.md      | 26 +++++++++-----
 docs/de/edge/guide/platforms/wp8/webview.md     | 17 +++++----
 docs/de/edge/guide/support/index.md             | 22 ++++++++----
 docs/de/edge/index.md                           | 18 ++++++----
 docs/de/edge/plugin_ref/plugman.md              | 18 ++++++----
 docs/de/edge/plugin_ref/spec.md                 | 18 ++++++----
 .../2.2.0/guide/project-settings/ios/index.md   | 38 ++++++++++----------
 .../2.3.0/guide/project-settings/ios/index.md   | 38 ++++++++++----------
 .../guide/project-settings/android/index.md     | 38 ++++++++++----------
 .../2.4.0/guide/project-settings/bada/index.md  | 38 ++++++++++----------
 .../guide/project-settings/blackberry/index.md  | 38 ++++++++++----------
 .../guide/project-settings/firefoxos/index.md   | 38 ++++++++++----------
 .../2.4.0/guide/project-settings/ios/index.md   | 38 ++++++++++----------
 .../2.4.0/guide/project-settings/webos/index.md | 38 ++++++++++----------
 .../guide/project-settings/windows8/index.md    | 38 ++++++++++----------
 .../2.4.0/guide/project-settings/wp7/index.md   | 38 ++++++++++----------
 .../2.4.0/guide/project-settings/wp8/index.md   | 38 ++++++++++----------
 .../guide/project-settings/android/index.md     | 38 ++++++++++----------
 .../2.5.0/guide/project-settings/bada/index.md  | 38 ++++++++++----------
 .../guide/project-settings/blackberry/index.md  | 38 ++++++++++----------
 .../guide/project-settings/firefoxos/index.md   | 38 ++++++++++----------
 .../2.5.0/guide/project-settings/ios/index.md   | 38 ++++++++++----------
 .../2.5.0/guide/project-settings/webos/index.md | 38 ++++++++++----------
 .../guide/project-settings/windows8/index.md    | 38 ++++++++++----------
 .../2.5.0/guide/project-settings/wp7/index.md   | 38 ++++++++++----------
 .../2.5.0/guide/project-settings/wp8/index.md   | 38 ++++++++++----------
 .../guide/project-settings/android/index.md     | 38 ++++++++++----------
 .../2.6.0/guide/project-settings/bada/index.md  | 38 ++++++++++----------
 .../guide/project-settings/blackberry/index.md  | 38 ++++++++++----------
 .../guide/project-settings/firefoxos/index.md   | 38 ++++++++++----------
 .../2.6.0/guide/project-settings/ios/index.md   | 38 ++++++++++----------
 .../2.6.0/guide/project-settings/webos/index.md | 38 ++++++++++----------
 .../guide/project-settings/windows8/index.md    | 38 ++++++++++----------
 .../2.6.0/guide/project-settings/wp7/index.md   | 38 ++++++++++----------
 .../2.6.0/guide/project-settings/wp8/index.md   | 38 ++++++++++----------
 .../guide/project-settings/android/index.md     | 38 ++++++++++----------
 .../2.7.0/guide/project-settings/bada/index.md  | 38 ++++++++++----------
 .../guide/project-settings/blackberry/index.md  | 38 ++++++++++----------
 .../guide/project-settings/firefoxos/index.md   | 38 ++++++++++----------
 .../2.7.0/guide/project-settings/ios/index.md   | 38 ++++++++++----------
 .../2.7.0/guide/project-settings/webos/index.md | 38 ++++++++++----------
 .../guide/project-settings/windows8/index.md    | 38 ++++++++++----------
 .../2.7.0/guide/project-settings/wp7/index.md   | 38 ++++++++++----------
 .../2.7.0/guide/project-settings/wp8/index.md   | 38 ++++++++++----------
 .../guide/project-settings/android/index.md     | 38 ++++++++++----------
 .../2.8.0/guide/project-settings/bada/index.md  | 38 ++++++++++----------
 .../guide/project-settings/blackberry/index.md  | 38 ++++++++++----------
 .../guide/project-settings/firefoxos/index.md   | 38 ++++++++++----------
 .../2.8.0/guide/project-settings/ios/index.md   | 38 ++++++++++----------
 .../2.8.0/guide/project-settings/webos/index.md | 38 ++++++++++----------
 .../guide/project-settings/windows8/index.md    | 38 ++++++++++----------
 .../2.8.0/guide/project-settings/wp7/index.md   | 38 ++++++++++----------
 .../2.8.0/guide/project-settings/wp8/index.md   | 38 ++++++++++----------
 .../guide/project-settings/android/index.md     | 38 ++++++++++----------
 .../guide/project-settings/blackberry/index.md  | 38 ++++++++++----------
 .../guide/project-settings/firefoxos/index.md   | 38 ++++++++++----------
 .../2.9.0/guide/project-settings/ios/index.md   | 38 ++++++++++----------
 .../guide/project-settings/windows8/index.md    | 38 ++++++++++----------
 .../2.9.0/guide/project-settings/wp7/index.md   | 38 ++++++++++----------
 .../2.9.0/guide/project-settings/wp8/index.md   | 38 ++++++++++----------
 .../3.0.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/en/3.5.0/guide/next/index.md               | 19 ++++++++++
 docs/en/3.6.0/guide/next/index.md               | 19 ++++++++++
 docs/en/4.0.0/guide/next/index.md               | 19 ++++++++++
 docs/en/edge/guide/next/index.md                | 19 ++++++++++
 .../3.1.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/es/3.4.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.4.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.4.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/es/3.4.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/es/3.4.0/guide/support/index.md            | 18 +++++++---
 docs/es/3.5.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.5.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.5.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/es/3.5.0/guide/platforms/wp8/parallels.md  | 15 +++++---
 docs/es/3.5.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/es/3.5.0/guide/platforms/wp8/vmware.md     | 24 +++++++++----
 docs/es/3.5.0/guide/support/index.md            | 18 +++++++---
 docs/es/edge/config_ref/images.md               | 18 ++++++----
 docs/es/edge/config_ref/index.md                | 18 ++++++----
 .../es/edge/cordova/events/events.backbutton.md | 18 ++++++----
 .../edge/cordova/events/events.deviceready.md   | 18 ++++++----
 .../edge/cordova/events/events.endcallbutton.md | 18 ++++++----
 docs/es/edge/cordova/events/events.md           | 18 ++++++----
 .../es/edge/cordova/events/events.menubutton.md | 18 ++++++----
 docs/es/edge/cordova/events/events.pause.md     | 18 ++++++----
 docs/es/edge/cordova/events/events.resume.md    | 18 ++++++----
 .../edge/cordova/events/events.searchbutton.md  | 18 ++++++----
 .../cordova/events/events.startcallbutton.md    | 18 ++++++----
 .../cordova/events/events.volumedownbutton.md   | 18 ++++++----
 .../cordova/events/events.volumeupbutton.md     | 18 ++++++----
 docs/es/edge/cordova/plugins/pluginapis.md      | 18 ++++++----
 docs/es/edge/cordova/storage/storage.md         | 18 ++++++----
 docs/es/edge/guide/appdev/privacy/index.md      | 18 ++++++----
 docs/es/edge/guide/appdev/security/index.md     | 18 ++++++----
 docs/es/edge/guide/appdev/whitelist/index.md    | 18 ++++++----
 docs/es/edge/guide/cli/index.md                 | 17 +++++----
 docs/es/edge/guide/hybrid/plugins/index.md      | 18 ++++++----
 docs/es/edge/guide/hybrid/webviews/index.md     | 18 ++++++----
 docs/es/edge/guide/next/index.md                | 19 ++++++++++
 docs/es/edge/guide/overview/index.md            | 17 +++++----
 .../edge/guide/platforms/amazonfireos/config.md | 20 ++++++-----
 .../edge/guide/platforms/amazonfireos/index.md  | 18 ++++++----
 .../edge/guide/platforms/amazonfireos/plugin.md | 20 ++++++-----
 .../guide/platforms/amazonfireos/webview.md     | 18 ++++++----
 docs/es/edge/guide/platforms/android/config.md  | 20 ++++++-----
 docs/es/edge/guide/platforms/android/index.md   | 18 ++++++----
 docs/es/edge/guide/platforms/android/plugin.md  | 20 ++++++-----
 docs/es/edge/guide/platforms/android/tools.md   | 18 ++++++----
 docs/es/edge/guide/platforms/android/upgrade.md | 18 ++++++----
 docs/es/edge/guide/platforms/android/webview.md | 18 ++++++----
 .../edge/guide/platforms/blackberry/upgrade.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/config.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/index.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/plugin.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/tools.md  | 18 ++++++----
 .../guide/platforms/blackberry10/upgrade.md     | 18 ++++++----
 .../es/edge/guide/platforms/firefoxos/config.md | 38 ++++++++++----------
 docs/es/edge/guide/platforms/firefoxos/index.md | 18 ++++++----
 docs/es/edge/guide/platforms/index.md           | 18 ++++++----
 docs/es/edge/guide/platforms/ios/config.md      | 18 ++++++----
 docs/es/edge/guide/platforms/ios/index.md       | 18 ++++++----
 docs/es/edge/guide/platforms/ios/plugin.md      | 20 ++++++-----
 docs/es/edge/guide/platforms/ios/tools.md       | 18 ++++++----
 docs/es/edge/guide/platforms/ios/upgrade.md     | 18 ++++++----
 docs/es/edge/guide/platforms/ios/webview.md     | 18 ++++++----
 docs/es/edge/guide/platforms/tizen/index.md     | 18 ++++++----
 docs/es/edge/guide/platforms/ubuntu/index.md    | 18 ++++++----
 docs/es/edge/guide/platforms/win8/index.md      | 18 ++++++----
 docs/es/edge/guide/platforms/win8/plugin.md     | 18 ++++++----
 docs/es/edge/guide/platforms/win8/upgrade.md    | 18 ++++++----
 docs/es/edge/guide/platforms/wp8/index.md       | 18 ++++++----
 docs/es/edge/guide/platforms/wp8/parallels.md   | 18 ++++++----
 docs/es/edge/guide/platforms/wp8/plugin.md      | 18 ++++++----
 docs/es/edge/guide/platforms/wp8/upgrade.md     | 18 ++++++----
 docs/es/edge/guide/platforms/wp8/vmware.md      | 18 ++++++----
 docs/es/edge/guide/platforms/wp8/webview.md     | 17 +++++----
 docs/es/edge/guide/support/index.md             | 17 +++++----
 docs/es/edge/index.md                           | 18 ++++++----
 docs/es/edge/plugin_ref/plugman.md              | 18 ++++++----
 docs/es/edge/plugin_ref/spec.md                 | 18 ++++++----
 .../3.1.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/fr/3.4.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.4.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.4.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/fr/3.4.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/fr/3.4.0/guide/support/index.md            | 18 +++++++---
 docs/fr/3.5.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.5.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.5.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/fr/3.5.0/guide/platforms/wp8/parallels.md  | 15 +++++---
 docs/fr/3.5.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/fr/3.5.0/guide/platforms/wp8/vmware.md     | 24 +++++++++----
 docs/fr/3.5.0/guide/support/index.md            | 18 +++++++---
 docs/fr/edge/config_ref/images.md               | 18 ++++++----
 docs/fr/edge/config_ref/index.md                | 18 ++++++----
 .../fr/edge/cordova/events/events.backbutton.md | 18 ++++++----
 .../edge/cordova/events/events.deviceready.md   | 18 ++++++----
 .../edge/cordova/events/events.endcallbutton.md | 18 ++++++----
 docs/fr/edge/cordova/events/events.md           | 18 ++++++----
 .../fr/edge/cordova/events/events.menubutton.md | 18 ++++++----
 docs/fr/edge/cordova/events/events.pause.md     | 18 ++++++----
 docs/fr/edge/cordova/events/events.resume.md    | 18 ++++++----
 .../edge/cordova/events/events.searchbutton.md  | 18 ++++++----
 .../cordova/events/events.startcallbutton.md    | 18 ++++++----
 .../cordova/events/events.volumedownbutton.md   | 18 ++++++----
 .../cordova/events/events.volumeupbutton.md     | 18 ++++++----
 docs/fr/edge/cordova/plugins/pluginapis.md      | 26 +++++++++-----
 docs/fr/edge/cordova/storage/storage.md         | 18 ++++++----
 docs/fr/edge/guide/appdev/privacy/index.md      | 18 ++++++----
 docs/fr/edge/guide/appdev/security/index.md     | 26 +++++++++-----
 docs/fr/edge/guide/appdev/whitelist/index.md    | 18 ++++++----
 docs/fr/edge/guide/cli/index.md                 | 17 +++++----
 docs/fr/edge/guide/hybrid/plugins/index.md      | 18 ++++++----
 docs/fr/edge/guide/hybrid/webviews/index.md     | 18 ++++++----
 docs/fr/edge/guide/next/index.md                | 19 ++++++++++
 docs/fr/edge/guide/overview/index.md            | 17 +++++----
 .../edge/guide/platforms/amazonfireos/config.md | 20 ++++++-----
 .../edge/guide/platforms/amazonfireos/index.md  | 26 +++++++++-----
 .../edge/guide/platforms/amazonfireos/plugin.md | 20 ++++++-----
 .../guide/platforms/amazonfireos/webview.md     | 18 ++++++----
 docs/fr/edge/guide/platforms/android/config.md  | 20 ++++++-----
 docs/fr/edge/guide/platforms/android/index.md   | 18 ++++++----
 docs/fr/edge/guide/platforms/android/plugin.md  | 20 ++++++-----
 docs/fr/edge/guide/platforms/android/tools.md   | 18 ++++++----
 docs/fr/edge/guide/platforms/android/upgrade.md | 18 ++++++----
 docs/fr/edge/guide/platforms/android/webview.md | 18 ++++++----
 .../edge/guide/platforms/blackberry/upgrade.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/config.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/index.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/plugin.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/tools.md  | 18 ++++++----
 .../guide/platforms/blackberry10/upgrade.md     | 18 ++++++----
 .../fr/edge/guide/platforms/firefoxos/config.md | 38 ++++++++++----------
 docs/fr/edge/guide/platforms/firefoxos/index.md | 18 ++++++----
 docs/fr/edge/guide/platforms/index.md           | 18 ++++++----
 docs/fr/edge/guide/platforms/ios/config.md      | 18 ++++++----
 docs/fr/edge/guide/platforms/ios/index.md       | 18 ++++++----
 docs/fr/edge/guide/platforms/ios/plugin.md      | 20 ++++++-----
 docs/fr/edge/guide/platforms/ios/tools.md       | 18 ++++++----
 docs/fr/edge/guide/platforms/ios/upgrade.md     | 18 ++++++----
 docs/fr/edge/guide/platforms/ios/webview.md     | 18 ++++++----
 docs/fr/edge/guide/platforms/tizen/index.md     | 18 ++++++----
 docs/fr/edge/guide/platforms/ubuntu/index.md    | 18 ++++++----
 docs/fr/edge/guide/platforms/win8/index.md      | 18 ++++++----
 docs/fr/edge/guide/platforms/win8/plugin.md     | 18 ++++++----
 docs/fr/edge/guide/platforms/win8/upgrade.md    | 18 ++++++----
 docs/fr/edge/guide/platforms/wp8/index.md       | 18 ++++++----
 docs/fr/edge/guide/platforms/wp8/parallels.md   | 18 ++++++----
 docs/fr/edge/guide/platforms/wp8/plugin.md      | 18 ++++++----
 docs/fr/edge/guide/platforms/wp8/upgrade.md     | 18 ++++++----
 docs/fr/edge/guide/platforms/wp8/vmware.md      | 26 +++++++++-----
 docs/fr/edge/guide/platforms/wp8/webview.md     | 17 +++++----
 docs/fr/edge/guide/support/index.md             | 22 ++++++++----
 docs/fr/edge/index.md                           | 18 ++++++----
 docs/fr/edge/plugin_ref/plugman.md              | 18 ++++++----
 docs/fr/edge/plugin_ref/spec.md                 | 18 ++++++----
 .../3.1.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/it/3.4.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.4.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.4.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/it/3.4.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/it/3.4.0/guide/support/index.md            | 18 +++++++---
 docs/it/3.5.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.5.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.5.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/it/3.5.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/it/3.5.0/guide/support/index.md            | 18 +++++++---
 docs/it/edge/config_ref/images.md               | 18 ++++++----
 docs/it/edge/config_ref/index.md                | 18 ++++++----
 .../it/edge/cordova/events/events.backbutton.md | 18 ++++++----
 .../edge/cordova/events/events.deviceready.md   | 18 ++++++----
 .../edge/cordova/events/events.endcallbutton.md | 18 ++++++----
 docs/it/edge/cordova/events/events.md           | 18 ++++++----
 .../it/edge/cordova/events/events.menubutton.md | 18 ++++++----
 docs/it/edge/cordova/events/events.pause.md     | 18 ++++++----
 docs/it/edge/cordova/events/events.resume.md    | 18 ++++++----
 .../edge/cordova/events/events.searchbutton.md  | 18 ++++++----
 .../cordova/events/events.startcallbutton.md    | 18 ++++++----
 .../cordova/events/events.volumedownbutton.md   | 18 ++++++----
 .../cordova/events/events.volumeupbutton.md     | 18 ++++++----
 docs/it/edge/cordova/plugins/pluginapis.md      | 26 +++++++++-----
 docs/it/edge/cordova/storage/storage.md         | 18 ++++++----
 docs/it/edge/guide/appdev/privacy/index.md      | 18 ++++++----
 docs/it/edge/guide/appdev/security/index.md     | 26 +++++++++-----
 docs/it/edge/guide/appdev/whitelist/index.md    | 18 ++++++----
 docs/it/edge/guide/cli/index.md                 | 17 +++++----
 docs/it/edge/guide/hybrid/plugins/index.md      | 18 ++++++----
 docs/it/edge/guide/hybrid/webviews/index.md     | 18 ++++++----
 docs/it/edge/guide/next/index.md                | 19 ++++++++++
 docs/it/edge/guide/overview/index.md            | 17 +++++----
 .../edge/guide/platforms/amazonfireos/config.md | 20 ++++++-----
 .../edge/guide/platforms/amazonfireos/index.md  | 26 +++++++++-----
 .../edge/guide/platforms/amazonfireos/plugin.md | 20 ++++++-----
 .../guide/platforms/amazonfireos/webview.md     | 18 ++++++----
 docs/it/edge/guide/platforms/android/config.md  | 20 ++++++-----
 docs/it/edge/guide/platforms/android/index.md   | 18 ++++++----
 docs/it/edge/guide/platforms/android/plugin.md  | 20 ++++++-----
 docs/it/edge/guide/platforms/android/tools.md   | 18 ++++++----
 docs/it/edge/guide/platforms/android/upgrade.md | 18 ++++++----
 docs/it/edge/guide/platforms/android/webview.md | 18 ++++++----
 .../edge/guide/platforms/blackberry/upgrade.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/config.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/index.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/plugin.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/tools.md  | 18 ++++++----
 .../guide/platforms/blackberry10/upgrade.md     | 18 ++++++----
 .../it/edge/guide/platforms/firefoxos/config.md | 38 ++++++++++----------
 docs/it/edge/guide/platforms/firefoxos/index.md | 18 ++++++----
 docs/it/edge/guide/platforms/index.md           | 18 ++++++----
 docs/it/edge/guide/platforms/ios/config.md      | 18 ++++++----
 docs/it/edge/guide/platforms/ios/index.md       | 18 ++++++----
 docs/it/edge/guide/platforms/ios/plugin.md      | 20 ++++++-----
 docs/it/edge/guide/platforms/ios/tools.md       | 18 ++++++----
 docs/it/edge/guide/platforms/ios/upgrade.md     | 18 ++++++----
 docs/it/edge/guide/platforms/ios/webview.md     | 18 ++++++----
 docs/it/edge/guide/platforms/tizen/index.md     | 18 ++++++----
 docs/it/edge/guide/platforms/ubuntu/index.md    | 18 ++++++----
 docs/it/edge/guide/platforms/win8/index.md      | 18 ++++++----
 docs/it/edge/guide/platforms/win8/plugin.md     | 18 ++++++----
 docs/it/edge/guide/platforms/win8/upgrade.md    | 18 ++++++----
 docs/it/edge/guide/platforms/wp8/index.md       | 18 ++++++----
 docs/it/edge/guide/platforms/wp8/parallels.md   | 18 ++++++----
 docs/it/edge/guide/platforms/wp8/plugin.md      | 18 ++++++----
 docs/it/edge/guide/platforms/wp8/upgrade.md     | 18 ++++++----
 docs/it/edge/guide/platforms/wp8/vmware.md      | 26 +++++++++-----
 docs/it/edge/guide/platforms/wp8/webview.md     | 17 +++++----
 docs/it/edge/guide/support/index.md             | 22 ++++++++----
 docs/it/edge/index.md                           | 18 ++++++----
 docs/it/edge/plugin_ref/plugman.md              | 18 ++++++----
 docs/it/edge/plugin_ref/spec.md                 | 18 ++++++----
 .../ja/2.2.0/guide/getting-started/ios/index.md |  2 +-
 .../2.2.0/guide/project-settings/ios/index.md   | 38 ++++++++++----------
 .../3.1.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/ja/3.4.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.4.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.4.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/ja/3.4.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/ja/3.4.0/guide/support/index.md            | 18 +++++++---
 docs/ja/3.5.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.5.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.5.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/ja/3.5.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/ja/3.5.0/guide/support/index.md            | 18 +++++++---
 docs/ja/edge/config_ref/images.md               | 18 ++++++----
 docs/ja/edge/config_ref/index.md                | 18 ++++++----
 .../ja/edge/cordova/events/events.backbutton.md | 18 ++++++----
 .../edge/cordova/events/events.deviceready.md   | 18 ++++++----
 .../edge/cordova/events/events.endcallbutton.md | 18 ++++++----
 docs/ja/edge/cordova/events/events.md           | 18 ++++++----
 .../ja/edge/cordova/events/events.menubutton.md | 18 ++++++----
 docs/ja/edge/cordova/events/events.pause.md     | 18 ++++++----
 docs/ja/edge/cordova/events/events.resume.md    | 18 ++++++----
 .../edge/cordova/events/events.searchbutton.md  | 18 ++++++----
 .../cordova/events/events.startcallbutton.md    | 18 ++++++----
 .../cordova/events/events.volumedownbutton.md   | 18 ++++++----
 .../cordova/events/events.volumeupbutton.md     | 18 ++++++----
 docs/ja/edge/cordova/plugins/pluginapis.md      | 26 +++++++++-----
 docs/ja/edge/cordova/storage/storage.md         | 18 ++++++----
 docs/ja/edge/guide/appdev/privacy/index.md      | 18 ++++++----
 docs/ja/edge/guide/appdev/security/index.md     | 26 +++++++++-----
 docs/ja/edge/guide/appdev/whitelist/index.md    | 18 ++++++----
 docs/ja/edge/guide/cli/index.md                 | 17 +++++----
 docs/ja/edge/guide/hybrid/plugins/index.md      | 18 ++++++----
 docs/ja/edge/guide/hybrid/webviews/index.md     | 18 ++++++----
 docs/ja/edge/guide/next/index.md                | 19 ++++++++++
 docs/ja/edge/guide/overview/index.md            | 17 +++++----
 .../edge/guide/platforms/amazonfireos/config.md | 20 ++++++-----
 .../edge/guide/platforms/amazonfireos/index.md  | 26 +++++++++-----
 .../edge/guide/platforms/amazonfireos/plugin.md | 20 ++++++-----
 .../guide/platforms/amazonfireos/webview.md     | 18 ++++++----
 docs/ja/edge/guide/platforms/android/config.md  | 20 ++++++-----
 docs/ja/edge/guide/platforms/android/index.md   | 18 ++++++----
 docs/ja/edge/guide/platforms/android/plugin.md  | 20 ++++++-----
 docs/ja/edge/guide/platforms/android/tools.md   | 18 ++++++----
 docs/ja/edge/guide/platforms/android/upgrade.md | 18 ++++++----
 docs/ja/edge/guide/platforms/android/webview.md | 18 ++++++----
 .../edge/guide/platforms/blackberry/upgrade.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/config.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/index.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/plugin.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/tools.md  | 18 ++++++----
 .../guide/platforms/blackberry10/upgrade.md     | 18 ++++++----
 .../ja/edge/guide/platforms/firefoxos/config.md | 38 ++++++++++----------
 docs/ja/edge/guide/platforms/firefoxos/index.md | 18 ++++++----
 docs/ja/edge/guide/platforms/index.md           | 18 ++++++----
 docs/ja/edge/guide/platforms/ios/config.md      | 18 ++++++----
 docs/ja/edge/guide/platforms/ios/index.md       | 18 ++++++----
 docs/ja/edge/guide/platforms/ios/plugin.md      | 20 ++++++-----
 docs/ja/edge/guide/platforms/ios/tools.md       | 18 ++++++----
 docs/ja/edge/guide/platforms/ios/upgrade.md     | 18 ++++++----
 docs/ja/edge/guide/platforms/ios/webview.md     | 18 ++++++----
 docs/ja/edge/guide/platforms/tizen/index.md     | 18 ++++++----
 docs/ja/edge/guide/platforms/ubuntu/index.md    | 18 ++++++----
 docs/ja/edge/guide/platforms/win8/index.md      | 18 ++++++----
 docs/ja/edge/guide/platforms/win8/plugin.md     | 18 ++++++----
 docs/ja/edge/guide/platforms/win8/upgrade.md    | 18 ++++++----
 docs/ja/edge/guide/platforms/wp8/index.md       | 18 ++++++----
 docs/ja/edge/guide/platforms/wp8/parallels.md   | 18 ++++++----
 docs/ja/edge/guide/platforms/wp8/plugin.md      | 18 ++++++----
 docs/ja/edge/guide/platforms/wp8/upgrade.md     | 18 ++++++----
 docs/ja/edge/guide/platforms/wp8/vmware.md      | 26 +++++++++-----
 docs/ja/edge/guide/platforms/wp8/webview.md     | 17 +++++----
 docs/ja/edge/guide/support/index.md             | 22 ++++++++----
 docs/ja/edge/index.md                           | 18 ++++++----
 docs/ja/edge/plugin_ref/plugman.md              | 18 ++++++----
 docs/ja/edge/plugin_ref/spec.md                 | 18 ++++++----
 .../3.1.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/ko/3.4.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.4.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.4.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/ko/3.4.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/ko/3.4.0/guide/support/index.md            | 18 +++++++---
 docs/ko/3.5.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.5.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.5.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/ko/3.5.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/ko/3.5.0/guide/support/index.md            | 18 +++++++---
 docs/ko/edge/config_ref/images.md               | 18 ++++++----
 docs/ko/edge/config_ref/index.md                | 18 ++++++----
 .../ko/edge/cordova/events/events.backbutton.md | 18 ++++++----
 .../edge/cordova/events/events.deviceready.md   | 18 ++++++----
 .../edge/cordova/events/events.endcallbutton.md | 18 ++++++----
 docs/ko/edge/cordova/events/events.md           | 18 ++++++----
 .../ko/edge/cordova/events/events.menubutton.md | 18 ++++++----
 docs/ko/edge/cordova/events/events.pause.md     | 18 ++++++----
 docs/ko/edge/cordova/events/events.resume.md    | 18 ++++++----
 .../edge/cordova/events/events.searchbutton.md  | 18 ++++++----
 .../cordova/events/events.startcallbutton.md    | 18 ++++++----
 .../cordova/events/events.volumedownbutton.md   | 18 ++++++----
 .../cordova/events/events.volumeupbutton.md     | 18 ++++++----
 docs/ko/edge/cordova/plugins/pluginapis.md      | 26 +++++++++-----
 docs/ko/edge/cordova/storage/storage.md         | 18 ++++++----
 docs/ko/edge/guide/appdev/privacy/index.md      | 18 ++++++----
 docs/ko/edge/guide/appdev/security/index.md     | 26 +++++++++-----
 docs/ko/edge/guide/appdev/whitelist/index.md    | 18 ++++++----
 docs/ko/edge/guide/cli/index.md                 | 17 +++++----
 docs/ko/edge/guide/hybrid/plugins/index.md      | 18 ++++++----
 docs/ko/edge/guide/hybrid/webviews/index.md     | 18 ++++++----
 docs/ko/edge/guide/next/index.md                | 19 ++++++++++
 docs/ko/edge/guide/overview/index.md            | 17 +++++----
 .../edge/guide/platforms/amazonfireos/config.md | 20 ++++++-----
 .../edge/guide/platforms/amazonfireos/index.md  | 26 +++++++++-----
 .../edge/guide/platforms/amazonfireos/plugin.md | 20 ++++++-----
 .../guide/platforms/amazonfireos/webview.md     | 18 ++++++----
 docs/ko/edge/guide/platforms/android/config.md  | 20 ++++++-----
 docs/ko/edge/guide/platforms/android/index.md   | 18 ++++++----
 docs/ko/edge/guide/platforms/android/plugin.md  | 20 ++++++-----
 docs/ko/edge/guide/platforms/android/tools.md   | 18 ++++++----
 docs/ko/edge/guide/platforms/android/upgrade.md | 18 ++++++----
 docs/ko/edge/guide/platforms/android/webview.md | 18 ++++++----
 .../edge/guide/platforms/blackberry/upgrade.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/config.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/index.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/plugin.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/tools.md  | 18 ++++++----
 .../guide/platforms/blackberry10/upgrade.md     | 18 ++++++----
 .../ko/edge/guide/platforms/firefoxos/config.md | 38 ++++++++++----------
 docs/ko/edge/guide/platforms/firefoxos/index.md | 18 ++++++----
 docs/ko/edge/guide/platforms/index.md           | 18 ++++++----
 docs/ko/edge/guide/platforms/ios/config.md      | 18 ++++++----
 docs/ko/edge/guide/platforms/ios/index.md       | 18 ++++++----
 docs/ko/edge/guide/platforms/ios/plugin.md      | 20 ++++++-----
 docs/ko/edge/guide/platforms/ios/tools.md       | 18 ++++++----
 docs/ko/edge/guide/platforms/ios/upgrade.md     | 18 ++++++----
 docs/ko/edge/guide/platforms/ios/webview.md     | 18 ++++++----
 docs/ko/edge/guide/platforms/tizen/index.md     | 18 ++++++----
 docs/ko/edge/guide/platforms/ubuntu/index.md    | 18 ++++++----
 docs/ko/edge/guide/platforms/win8/index.md      | 18 ++++++----
 docs/ko/edge/guide/platforms/win8/plugin.md     | 18 ++++++----
 docs/ko/edge/guide/platforms/win8/upgrade.md    | 18 ++++++----
 docs/ko/edge/guide/platforms/wp8/index.md       | 18 ++++++----
 docs/ko/edge/guide/platforms/wp8/parallels.md   | 18 ++++++----
 docs/ko/edge/guide/platforms/wp8/plugin.md      | 18 ++++++----
 docs/ko/edge/guide/platforms/wp8/upgrade.md     | 18 ++++++----
 docs/ko/edge/guide/platforms/wp8/vmware.md      | 26 +++++++++-----
 docs/ko/edge/guide/platforms/wp8/webview.md     | 17 +++++----
 docs/ko/edge/guide/support/index.md             | 22 ++++++++----
 docs/ko/edge/index.md                           | 18 ++++++----
 docs/ko/edge/plugin_ref/plugman.md              | 18 ++++++----
 docs/ko/edge/plugin_ref/spec.md                 | 18 ++++++----
 docs/pl/edge/config_ref/images.md               | 18 ++++++----
 docs/pl/edge/config_ref/index.md                | 18 ++++++----
 .../pl/edge/cordova/events/events.backbutton.md | 18 ++++++----
 .../edge/cordova/events/events.deviceready.md   | 18 ++++++----
 .../edge/cordova/events/events.endcallbutton.md | 18 ++++++----
 docs/pl/edge/cordova/events/events.md           | 18 ++++++----
 .../pl/edge/cordova/events/events.menubutton.md | 18 ++++++----
 docs/pl/edge/cordova/events/events.pause.md     | 18 ++++++----
 docs/pl/edge/cordova/events/events.resume.md    | 18 ++++++----
 .../edge/cordova/events/events.searchbutton.md  | 18 ++++++----
 .../cordova/events/events.startcallbutton.md    | 18 ++++++----
 .../cordova/events/events.volumedownbutton.md   | 18 ++++++----
 .../cordova/events/events.volumeupbutton.md     | 18 ++++++----
 docs/pl/edge/cordova/plugins/pluginapis.md      | 18 ++++++----
 docs/pl/edge/cordova/storage/storage.md         | 18 ++++++----
 docs/pl/edge/guide/appdev/privacy/index.md      | 18 ++++++----
 docs/pl/edge/guide/appdev/security/index.md     | 18 ++++++----
 docs/pl/edge/guide/appdev/whitelist/index.md    | 18 ++++++----
 docs/pl/edge/guide/cli/index.md                 | 17 +++++----
 docs/pl/edge/guide/hybrid/plugins/index.md      | 18 ++++++----
 docs/pl/edge/guide/hybrid/webviews/index.md     | 18 ++++++----
 docs/pl/edge/guide/next/index.md                | 19 ++++++++++
 docs/pl/edge/guide/overview/index.md            | 17 +++++----
 .../edge/guide/platforms/amazonfireos/config.md | 20 ++++++-----
 .../edge/guide/platforms/amazonfireos/index.md  | 18 ++++++----
 .../edge/guide/platforms/amazonfireos/plugin.md | 20 ++++++-----
 .../guide/platforms/amazonfireos/webview.md     | 18 ++++++----
 docs/pl/edge/guide/platforms/android/config.md  | 20 ++++++-----
 docs/pl/edge/guide/platforms/android/index.md   | 18 ++++++----
 docs/pl/edge/guide/platforms/android/plugin.md  | 20 ++++++-----
 docs/pl/edge/guide/platforms/android/tools.md   | 18 ++++++----
 docs/pl/edge/guide/platforms/android/upgrade.md | 18 ++++++----
 docs/pl/edge/guide/platforms/android/webview.md | 18 ++++++----
 .../edge/guide/platforms/blackberry/upgrade.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/config.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/index.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/plugin.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/tools.md  | 18 ++++++----
 .../guide/platforms/blackberry10/upgrade.md     | 18 ++++++----
 docs/pl/edge/guide/platforms/firefoxos/index.md | 18 ++++++----
 docs/pl/edge/guide/platforms/index.md           | 18 ++++++----
 docs/pl/edge/guide/platforms/ios/config.md      | 18 ++++++----
 docs/pl/edge/guide/platforms/ios/index.md       | 18 ++++++----
 docs/pl/edge/guide/platforms/ios/plugin.md      | 20 ++++++-----
 docs/pl/edge/guide/platforms/ios/tools.md       | 18 ++++++----
 docs/pl/edge/guide/platforms/ios/upgrade.md     | 18 ++++++----
 docs/pl/edge/guide/platforms/ios/webview.md     | 18 ++++++----
 docs/pl/edge/guide/platforms/tizen/index.md     | 18 ++++++----
 docs/pl/edge/guide/platforms/ubuntu/index.md    | 18 ++++++----
 docs/pl/edge/guide/platforms/win8/index.md      | 18 ++++++----
 docs/pl/edge/guide/platforms/win8/plugin.md     | 18 ++++++----
 docs/pl/edge/guide/platforms/win8/upgrade.md    | 18 ++++++----
 docs/pl/edge/guide/platforms/wp8/index.md       | 18 ++++++----
 docs/pl/edge/guide/platforms/wp8/parallels.md   | 18 ++++++----
 docs/pl/edge/guide/platforms/wp8/plugin.md      | 18 ++++++----
 docs/pl/edge/guide/platforms/wp8/upgrade.md     | 18 ++++++----
 docs/pl/edge/guide/platforms/wp8/vmware.md      | 18 ++++++----
 docs/pl/edge/guide/platforms/wp8/webview.md     | 17 +++++----
 docs/pl/edge/guide/support/index.md             | 17 +++++----
 docs/pl/edge/index.md                           | 18 ++++++----
 docs/pl/edge/plugin_ref/plugman.md              | 18 ++++++----
 docs/pl/edge/plugin_ref/spec.md                 | 18 ++++++----
 .../3.1.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/ru/3.4.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.4.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.4.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/ru/3.4.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/ru/3.5.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.5.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.5.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/ru/3.5.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/ru/edge/config_ref/images.md               | 18 ++++++----
 docs/ru/edge/config_ref/index.md                | 18 ++++++----
 .../ru/edge/cordova/events/events.backbutton.md | 18 ++++++----
 .../edge/cordova/events/events.deviceready.md   | 18 ++++++----
 .../edge/cordova/events/events.endcallbutton.md | 18 ++++++----
 docs/ru/edge/cordova/events/events.md           | 18 ++++++----
 .../ru/edge/cordova/events/events.menubutton.md | 18 ++++++----
 docs/ru/edge/cordova/events/events.pause.md     | 18 ++++++----
 docs/ru/edge/cordova/events/events.resume.md    | 18 ++++++----
 .../edge/cordova/events/events.searchbutton.md  | 18 ++++++----
 .../cordova/events/events.startcallbutton.md    | 18 ++++++----
 .../cordova/events/events.volumedownbutton.md   | 18 ++++++----
 .../cordova/events/events.volumeupbutton.md     | 18 ++++++----
 docs/ru/edge/cordova/plugins/pluginapis.md      | 18 ++++++----
 docs/ru/edge/cordova/storage/storage.md         | 18 ++++++----
 docs/ru/edge/guide/appdev/privacy/index.md      | 18 ++++++----
 docs/ru/edge/guide/appdev/security/index.md     | 18 ++++++----
 docs/ru/edge/guide/appdev/whitelist/index.md    | 18 ++++++----
 docs/ru/edge/guide/cli/index.md                 | 17 +++++----
 docs/ru/edge/guide/hybrid/plugins/index.md      | 18 ++++++----
 docs/ru/edge/guide/hybrid/webviews/index.md     | 18 ++++++----
 docs/ru/edge/guide/next/index.md                | 19 ++++++++++
 docs/ru/edge/guide/overview/index.md            | 17 +++++----
 .../edge/guide/platforms/amazonfireos/config.md | 20 ++++++-----
 .../edge/guide/platforms/amazonfireos/index.md  | 18 ++++++----
 .../edge/guide/platforms/amazonfireos/plugin.md | 20 ++++++-----
 .../guide/platforms/amazonfireos/webview.md     | 18 ++++++----
 docs/ru/edge/guide/platforms/android/config.md  | 20 ++++++-----
 docs/ru/edge/guide/platforms/android/index.md   | 18 ++++++----
 docs/ru/edge/guide/platforms/android/plugin.md  | 20 ++++++-----
 docs/ru/edge/guide/platforms/android/tools.md   | 18 ++++++----
 docs/ru/edge/guide/platforms/android/upgrade.md | 18 ++++++----
 docs/ru/edge/guide/platforms/android/webview.md | 18 ++++++----
 .../edge/guide/platforms/blackberry/upgrade.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/config.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/index.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/plugin.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/tools.md  | 18 ++++++----
 .../guide/platforms/blackberry10/upgrade.md     | 18 ++++++----
 .../ru/edge/guide/platforms/firefoxos/config.md | 38 ++++++++++----------
 docs/ru/edge/guide/platforms/firefoxos/index.md | 18 ++++++----
 docs/ru/edge/guide/platforms/index.md           | 18 ++++++----
 docs/ru/edge/guide/platforms/ios/config.md      | 18 ++++++----
 docs/ru/edge/guide/platforms/ios/index.md       | 18 ++++++----
 docs/ru/edge/guide/platforms/ios/plugin.md      | 20 ++++++-----
 docs/ru/edge/guide/platforms/ios/tools.md       | 18 ++++++----
 docs/ru/edge/guide/platforms/ios/upgrade.md     | 18 ++++++----
 docs/ru/edge/guide/platforms/ios/webview.md     | 18 ++++++----
 docs/ru/edge/guide/platforms/tizen/index.md     | 18 ++++++----
 docs/ru/edge/guide/platforms/ubuntu/index.md    | 18 ++++++----
 docs/ru/edge/guide/platforms/win8/index.md      | 18 ++++++----
 docs/ru/edge/guide/platforms/win8/plugin.md     | 18 ++++++----
 docs/ru/edge/guide/platforms/win8/upgrade.md    | 18 ++++++----
 docs/ru/edge/guide/platforms/wp8/index.md       | 18 ++++++----
 docs/ru/edge/guide/platforms/wp8/parallels.md   | 18 ++++++----
 docs/ru/edge/guide/platforms/wp8/plugin.md      | 18 ++++++----
 docs/ru/edge/guide/platforms/wp8/upgrade.md     | 18 ++++++----
 docs/ru/edge/guide/platforms/wp8/vmware.md      | 18 ++++++----
 docs/ru/edge/guide/platforms/wp8/webview.md     | 17 +++++----
 docs/ru/edge/guide/support/index.md             | 17 +++++----
 docs/ru/edge/index.md                           | 18 ++++++----
 docs/ru/edge/plugin_ref/plugman.md              | 18 ++++++----
 docs/ru/edge/plugin_ref/spec.md                 | 18 ++++++----
 docs/sl/3.4.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.4.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 docs/sl/3.4.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/sl/3.4.0/guide/support/index.md            | 18 +++++++---
 docs/sl/3.5.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.5.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 docs/sl/3.5.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/sl/3.5.0/guide/support/index.md            | 18 +++++++---
 docs/sl/edge/cordova/plugins/pluginapis.md      | 24 +++++++++----
 .../edge/guide/platforms/amazonfireos/index.md  | 24 +++++++++----
 docs/sl/edge/guide/platforms/wp8/plugin.md      | 15 +++++---
 docs/sl/edge/guide/support/index.md             | 18 +++++++---
 .../3.1.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/zh/3.4.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.4.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.4.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/zh/3.4.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/zh/3.4.0/guide/support/index.md            | 18 +++++++---
 docs/zh/3.5.0/cordova/plugins/pluginapis.md     | 24 +++++++++----
 .../3.5.0/guide/platforms/amazonfireos/index.md | 24 +++++++++----
 .../3.5.0/guide/platforms/firefoxos/config.md   | 38 ++++++++++----------
 docs/zh/3.5.0/guide/platforms/wp8/plugin.md     | 15 +++++---
 docs/zh/3.5.0/guide/support/index.md            | 18 +++++++---
 docs/zh/edge/config_ref/images.md               | 18 ++++++----
 docs/zh/edge/config_ref/index.md                | 18 ++++++----
 .../zh/edge/cordova/events/events.backbutton.md | 18 ++++++----
 .../edge/cordova/events/events.deviceready.md   | 18 ++++++----
 .../edge/cordova/events/events.endcallbutton.md | 18 ++++++----
 docs/zh/edge/cordova/events/events.md           | 18 ++++++----
 .../zh/edge/cordova/events/events.menubutton.md | 18 ++++++----
 docs/zh/edge/cordova/events/events.pause.md     | 18 ++++++----
 docs/zh/edge/cordova/events/events.resume.md    | 18 ++++++----
 .../edge/cordova/events/events.searchbutton.md  | 18 ++++++----
 .../cordova/events/events.startcallbutton.md    | 18 ++++++----
 .../cordova/events/events.volumedownbutton.md   | 18 ++++++----
 .../cordova/events/events.volumeupbutton.md     | 18 ++++++----
 docs/zh/edge/cordova/plugins/pluginapis.md      | 26 +++++++++-----
 docs/zh/edge/cordova/storage/storage.md         | 18 ++++++----
 docs/zh/edge/guide/appdev/privacy/index.md      | 18 ++++++----
 docs/zh/edge/guide/appdev/security/index.md     | 26 +++++++++-----
 docs/zh/edge/guide/appdev/whitelist/index.md    | 18 ++++++----
 docs/zh/edge/guide/cli/index.md                 | 17 +++++----
 docs/zh/edge/guide/hybrid/plugins/index.md      | 18 ++++++----
 docs/zh/edge/guide/hybrid/webviews/index.md     | 18 ++++++----
 docs/zh/edge/guide/next/index.md                | 19 ++++++++++
 docs/zh/edge/guide/overview/index.md            | 17 +++++----
 .../edge/guide/platforms/amazonfireos/config.md | 20 ++++++-----
 .../edge/guide/platforms/amazonfireos/index.md  | 26 +++++++++-----
 .../edge/guide/platforms/amazonfireos/plugin.md | 20 ++++++-----
 .../guide/platforms/amazonfireos/webview.md     | 18 ++++++----
 docs/zh/edge/guide/platforms/android/config.md  | 20 ++++++-----
 docs/zh/edge/guide/platforms/android/index.md   | 18 ++++++----
 docs/zh/edge/guide/platforms/android/plugin.md  | 20 ++++++-----
 docs/zh/edge/guide/platforms/android/tools.md   | 18 ++++++----
 docs/zh/edge/guide/platforms/android/upgrade.md | 18 ++++++----
 docs/zh/edge/guide/platforms/android/webview.md | 18 ++++++----
 .../edge/guide/platforms/blackberry/upgrade.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/config.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/index.md  | 18 ++++++----
 .../edge/guide/platforms/blackberry10/plugin.md | 20 ++++++-----
 .../edge/guide/platforms/blackberry10/tools.md  | 18 ++++++----
 .../guide/platforms/blackberry10/upgrade.md     | 18 ++++++----
 .../zh/edge/guide/platforms/firefoxos/config.md | 38 ++++++++++----------
 docs/zh/edge/guide/platforms/firefoxos/index.md | 18 ++++++----
 docs/zh/edge/guide/platforms/index.md           | 18 ++++++----
 docs/zh/edge/guide/platforms/ios/config.md      | 18 ++++++----
 docs/zh/edge/guide/platforms/ios/index.md       | 18 ++++++----
 docs/zh/edge/guide/platforms/ios/plugin.md      | 20 ++++++-----
 docs/zh/edge/guide/platforms/ios/tools.md       | 18 ++++++----
 docs/zh/edge/guide/platforms/ios/upgrade.md     | 18 ++++++----
 docs/zh/edge/guide/platforms/ios/webview.md     | 18 ++++++----
 docs/zh/edge/guide/platforms/tizen/index.md     | 18 ++++++----
 docs/zh/edge/guide/platforms/ubuntu/index.md    | 18 ++++++----
 docs/zh/edge/guide/platforms/win8/index.md      | 18 ++++++----
 docs/zh/edge/guide/platforms/win8/plugin.md     | 18 ++++++----
 docs/zh/edge/guide/platforms/win8/upgrade.md    | 18 ++++++----
 docs/zh/edge/guide/platforms/wp8/index.md       | 18 ++++++----
 docs/zh/edge/guide/platforms/wp8/parallels.md   | 18 ++++++----
 docs/zh/edge/guide/platforms/wp8/plugin.md      | 18 ++++++----
 docs/zh/edge/guide/platforms/wp8/upgrade.md     | 18 ++++++----
 docs/zh/edge/guide/platforms/wp8/vmware.md      | 26 +++++++++-----
 docs/zh/edge/guide/platforms/wp8/webview.md     | 17 +++++----
 docs/zh/edge/guide/support/index.md             | 22 ++++++++----
 docs/zh/edge/index.md                           | 18 ++++++----
 docs/zh/edge/plugin_ref/plugman.md              | 18 ++++++----
 docs/zh/edge/plugin_ref/spec.md                 | 18 ++++++----
 729 files changed, 9232 insertions(+), 6136 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.1.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/guide/platforms/firefoxos/config.md b/docs/de/3.1.0/guide/platforms/firefoxos/config.md
index f16d115..cbda490 100644
--- a/docs/de/3.1.0/guide/platforms/firefoxos/config.md
+++ b/docs/de/3.1.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS Konfiguration
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.4.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/de/3.4.0/cordova/plugins/pluginapis.md b/docs/de/3.4.0/cordova/plugins/pluginapis.md
index a4e9cbc..14f2e3e 100644
--- a/docs/de/3.4.0/cordova/plugins/pluginapis.md
+++ b/docs/de/3.4.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen
-    
-
-## unter der Lizenz.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin APIs
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.4.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/de/3.4.0/guide/platforms/amazonfireos/index.md b/docs/de/3.4.0/guide/platforms/amazonfireos/index.md
index c771d61..5dc6cc4 100644
--- a/docs/de/3.4.0/guide/platforms/amazonfireos/index.md
+++ b/docs/de/3.4.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen
-    
-
-## unter der Lizenz.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Handbuch für die OS-Plattform von Amazon-Feuer
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.4.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/de/3.4.0/guide/platforms/firefoxos/config.md b/docs/de/3.4.0/guide/platforms/firefoxos/config.md
index f16d115..cbda490 100644
--- a/docs/de/3.4.0/guide/platforms/firefoxos/config.md
+++ b/docs/de/3.4.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS Konfiguration
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.4.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/3.4.0/guide/platforms/wp8/plugin.md b/docs/de/3.4.0/guide/platforms/wp8/plugin.md
index 9e43f28..9c024f7 100644
--- a/docs/de/3.4.0/guide/platforms/wp8/plugin.md
+++ b/docs/de/3.4.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.4.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/de/3.4.0/guide/support/index.md b/docs/de/3.4.0/guide/support/index.md
index 5d92eaa..ea382f1 100644
--- a/docs/de/3.4.0/guide/support/index.md
+++ b/docs/de/3.4.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen unter der Lizenz.
-    
+           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.
 ---
 
 # Plattformunterstützung

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.5.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/de/3.5.0/cordova/plugins/pluginapis.md b/docs/de/3.5.0/cordova/plugins/pluginapis.md
index a4e9cbc..14f2e3e 100644
--- a/docs/de/3.5.0/cordova/plugins/pluginapis.md
+++ b/docs/de/3.5.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen
-    
-
-## unter der Lizenz.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin APIs
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.5.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/de/3.5.0/guide/platforms/amazonfireos/index.md b/docs/de/3.5.0/guide/platforms/amazonfireos/index.md
index c771d61..5dc6cc4 100644
--- a/docs/de/3.5.0/guide/platforms/amazonfireos/index.md
+++ b/docs/de/3.5.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen
-    
-
-## unter der Lizenz.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Handbuch für die OS-Plattform von Amazon-Feuer
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.5.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/de/3.5.0/guide/platforms/firefoxos/config.md b/docs/de/3.5.0/guide/platforms/firefoxos/config.md
index f16d115..cbda490 100644
--- a/docs/de/3.5.0/guide/platforms/firefoxos/config.md
+++ b/docs/de/3.5.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS Konfiguration
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.5.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/3.5.0/guide/platforms/wp8/plugin.md b/docs/de/3.5.0/guide/platforms/wp8/plugin.md
index 9e43f28..9c024f7 100644
--- a/docs/de/3.5.0/guide/platforms/wp8/plugin.md
+++ b/docs/de/3.5.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/3.5.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/de/3.5.0/guide/support/index.md b/docs/de/3.5.0/guide/support/index.md
index 5d92eaa..ea382f1 100644
--- a/docs/de/3.5.0/guide/support/index.md
+++ b/docs/de/3.5.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen unter der Lizenz.
-    
+           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.
 ---
 
 # Plattformunterstützung

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/config_ref/images.md b/docs/de/edge/config_ref/images.md
index edb4180..a6f5233 100644
--- a/docs/de/edge/config_ref/images.md
+++ b/docs/de/edge/config_ref/images.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Symbole und Splash-Screens
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/config_ref/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/config_ref/index.md b/docs/de/edge/config_ref/index.md
index f19999f..1756fe1 100644
--- a/docs/de/edge/config_ref/index.md
+++ b/docs/de/edge/config_ref/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Die Datei config.xml
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.backbutton.md b/docs/de/edge/cordova/events/events.backbutton.md
index c309b18..a88d342 100644
--- a/docs/de/edge/cordova/events/events.backbutton.md
+++ b/docs/de/edge/cordova/events/events.backbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # backbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.deviceready.md b/docs/de/edge/cordova/events/events.deviceready.md
index 03c6331..51b5b36 100644
--- a/docs/de/edge/cordova/events/events.deviceready.md
+++ b/docs/de/edge/cordova/events/events.deviceready.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # deviceready
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.endcallbutton.md b/docs/de/edge/cordova/events/events.endcallbutton.md
index 210c088..abe1a1d 100644
--- a/docs/de/edge/cordova/events/events.endcallbutton.md
+++ b/docs/de/edge/cordova/events/events.endcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # endcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.md b/docs/de/edge/cordova/events/events.md
index 395ac66..e87641d 100644
--- a/docs/de/edge/cordova/events/events.md
+++ b/docs/de/edge/cordova/events/events.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Veranstaltungen
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.menubutton.md b/docs/de/edge/cordova/events/events.menubutton.md
index dcde6bb..23f6a35 100644
--- a/docs/de/edge/cordova/events/events.menubutton.md
+++ b/docs/de/edge/cordova/events/events.menubutton.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # menubutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.pause.md b/docs/de/edge/cordova/events/events.pause.md
index cf792e1..35f248d 100644
--- a/docs/de/edge/cordova/events/events.pause.md
+++ b/docs/de/edge/cordova/events/events.pause.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Anhalten
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.resume.md b/docs/de/edge/cordova/events/events.resume.md
index cbf9ec3..338b7e5 100644
--- a/docs/de/edge/cordova/events/events.resume.md
+++ b/docs/de/edge/cordova/events/events.resume.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Lebenslauf
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[15/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.7.0/guide/project-settings/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.7.0/guide/project-settings/ios/index.md b/docs/en/2.7.0/guide/project-settings/ios/index.md
index a401f10..5caa2b9 100644
--- a/docs/en/2.7.0/guide/project-settings/ios/index.md
+++ b/docs/en/2.7.0/guide/project-settings/ios/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for iOS
 ========================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.7.0/guide/project-settings/webos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.7.0/guide/project-settings/webos/index.md b/docs/en/2.7.0/guide/project-settings/webos/index.md
index bd47e17..87f61dd 100644
--- a/docs/en/2.7.0/guide/project-settings/webos/index.md
+++ b/docs/en/2.7.0/guide/project-settings/webos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for webOS 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.7.0/guide/project-settings/windows8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.7.0/guide/project-settings/windows8/index.md b/docs/en/2.7.0/guide/project-settings/windows8/index.md
index e38dbbb..f983ed7 100644
--- a/docs/en/2.7.0/guide/project-settings/windows8/index.md
+++ b/docs/en/2.7.0/guide/project-settings/windows8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows 8 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.7.0/guide/project-settings/wp7/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.7.0/guide/project-settings/wp7/index.md b/docs/en/2.7.0/guide/project-settings/wp7/index.md
index 9c4a410..b93940c 100644
--- a/docs/en/2.7.0/guide/project-settings/wp7/index.md
+++ b/docs/en/2.7.0/guide/project-settings/wp7/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 7 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.7.0/guide/project-settings/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.7.0/guide/project-settings/wp8/index.md b/docs/en/2.7.0/guide/project-settings/wp8/index.md
index 7d9ca64..3cf4019 100644
--- a/docs/en/2.7.0/guide/project-settings/wp8/index.md
+++ b/docs/en/2.7.0/guide/project-settings/wp8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 8
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.8.0/guide/project-settings/android/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.8.0/guide/project-settings/android/index.md b/docs/en/2.8.0/guide/project-settings/android/index.md
index 20b0ea1..f9d601e 100644
--- a/docs/en/2.8.0/guide/project-settings/android/index.md
+++ b/docs/en/2.8.0/guide/project-settings/android/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Android
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.8.0/guide/project-settings/bada/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.8.0/guide/project-settings/bada/index.md b/docs/en/2.8.0/guide/project-settings/bada/index.md
index f5507d9..9799aae 100644
--- a/docs/en/2.8.0/guide/project-settings/bada/index.md
+++ b/docs/en/2.8.0/guide/project-settings/bada/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Bada 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.8.0/guide/project-settings/blackberry/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.8.0/guide/project-settings/blackberry/index.md b/docs/en/2.8.0/guide/project-settings/blackberry/index.md
index c08e3fe..e7db6c4 100644
--- a/docs/en/2.8.0/guide/project-settings/blackberry/index.md
+++ b/docs/en/2.8.0/guide/project-settings/blackberry/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for BlackBerry 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.8.0/guide/project-settings/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.8.0/guide/project-settings/firefoxos/index.md b/docs/en/2.8.0/guide/project-settings/firefoxos/index.md
index 89f53b8..e1958dd 100644
--- a/docs/en/2.8.0/guide/project-settings/firefoxos/index.md
+++ b/docs/en/2.8.0/guide/project-settings/firefoxos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for FirefoxOS 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.8.0/guide/project-settings/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.8.0/guide/project-settings/ios/index.md b/docs/en/2.8.0/guide/project-settings/ios/index.md
index a401f10..5caa2b9 100644
--- a/docs/en/2.8.0/guide/project-settings/ios/index.md
+++ b/docs/en/2.8.0/guide/project-settings/ios/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for iOS
 ========================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.8.0/guide/project-settings/webos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.8.0/guide/project-settings/webos/index.md b/docs/en/2.8.0/guide/project-settings/webos/index.md
index bd47e17..87f61dd 100644
--- a/docs/en/2.8.0/guide/project-settings/webos/index.md
+++ b/docs/en/2.8.0/guide/project-settings/webos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for webOS 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.8.0/guide/project-settings/windows8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.8.0/guide/project-settings/windows8/index.md b/docs/en/2.8.0/guide/project-settings/windows8/index.md
index e38dbbb..f983ed7 100644
--- a/docs/en/2.8.0/guide/project-settings/windows8/index.md
+++ b/docs/en/2.8.0/guide/project-settings/windows8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows 8 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.8.0/guide/project-settings/wp7/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.8.0/guide/project-settings/wp7/index.md b/docs/en/2.8.0/guide/project-settings/wp7/index.md
index 9c4a410..b93940c 100644
--- a/docs/en/2.8.0/guide/project-settings/wp7/index.md
+++ b/docs/en/2.8.0/guide/project-settings/wp7/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 7 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.8.0/guide/project-settings/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.8.0/guide/project-settings/wp8/index.md b/docs/en/2.8.0/guide/project-settings/wp8/index.md
index 7d9ca64..3cf4019 100644
--- a/docs/en/2.8.0/guide/project-settings/wp8/index.md
+++ b/docs/en/2.8.0/guide/project-settings/wp8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 8
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.9.0/guide/project-settings/android/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.9.0/guide/project-settings/android/index.md b/docs/en/2.9.0/guide/project-settings/android/index.md
index e4b627a..729792f 100644
--- a/docs/en/2.9.0/guide/project-settings/android/index.md
+++ b/docs/en/2.9.0/guide/project-settings/android/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Android
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.9.0/guide/project-settings/blackberry/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.9.0/guide/project-settings/blackberry/index.md b/docs/en/2.9.0/guide/project-settings/blackberry/index.md
index 69b870b..69f1df2 100644
--- a/docs/en/2.9.0/guide/project-settings/blackberry/index.md
+++ b/docs/en/2.9.0/guide/project-settings/blackberry/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for BlackBerry
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.9.0/guide/project-settings/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.9.0/guide/project-settings/firefoxos/index.md b/docs/en/2.9.0/guide/project-settings/firefoxos/index.md
index aed24a3..7648dfe 100644
--- a/docs/en/2.9.0/guide/project-settings/firefoxos/index.md
+++ b/docs/en/2.9.0/guide/project-settings/firefoxos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for FirefoxOS
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.9.0/guide/project-settings/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.9.0/guide/project-settings/ios/index.md b/docs/en/2.9.0/guide/project-settings/ios/index.md
index 60e1129..502e462 100644
--- a/docs/en/2.9.0/guide/project-settings/ios/index.md
+++ b/docs/en/2.9.0/guide/project-settings/ios/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for iOS
 ========================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.9.0/guide/project-settings/windows8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.9.0/guide/project-settings/windows8/index.md b/docs/en/2.9.0/guide/project-settings/windows8/index.md
index 7a4f706..90a8512 100644
--- a/docs/en/2.9.0/guide/project-settings/windows8/index.md
+++ b/docs/en/2.9.0/guide/project-settings/windows8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows 8
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.9.0/guide/project-settings/wp7/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.9.0/guide/project-settings/wp7/index.md b/docs/en/2.9.0/guide/project-settings/wp7/index.md
index 8c4da6c..692238b 100644
--- a/docs/en/2.9.0/guide/project-settings/wp7/index.md
+++ b/docs/en/2.9.0/guide/project-settings/wp7/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 7
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.9.0/guide/project-settings/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.9.0/guide/project-settings/wp8/index.md b/docs/en/2.9.0/guide/project-settings/wp8/index.md
index 5a59d78..be8c90d 100644
--- a/docs/en/2.9.0/guide/project-settings/wp8/index.md
+++ b/docs/en/2.9.0/guide/project-settings/wp8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 8
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/3.0.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/en/3.0.0/guide/platforms/firefoxos/config.md b/docs/en/3.0.0/guide/platforms/firefoxos/config.md
index 8d2e96c..e3c3e3f 100644
--- a/docs/en/3.0.0/guide/platforms/firefoxos/config.md
+++ b/docs/en/3.0.0/guide/platforms/firefoxos/config.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS Configuration
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/3.5.0/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/en/3.5.0/guide/next/index.md b/docs/en/3.5.0/guide/next/index.md
index 88104f5..f948c75 100644
--- a/docs/en/3.5.0/guide/next/index.md
+++ b/docs/en/3.5.0/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Next Steps
 
 For developers who have an understanding of how to use the Cordova CLI and make use of plugins, there are a few things you may want to consider researching next to build better, more performant Cordova applications. The following document offers advice on various topics relating to best practices, testing, upgrades, and other topics, but is not meant to be prescriptive. Consider this your launching point for your growth as a Cordova developer. Also, if you see something that can be improved, please [contribute](http://cordova.apache.org/#contribute)!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/3.6.0/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/en/3.6.0/guide/next/index.md b/docs/en/3.6.0/guide/next/index.md
index ba6564e..39f44e3 100644
--- a/docs/en/3.6.0/guide/next/index.md
+++ b/docs/en/3.6.0/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Next Steps
 
 For developers who have an understanding of how to use the Cordova CLI and make use of plugins, there are a few things you may want to consider researching next to build better, more performant Cordova applications. The following document offers advice on various topics relating to best practices, testing, upgrades, and other topics, but is not meant to be prescriptive. Consider this your launching point for your growth as a Cordova developer. Also, if you see something that can be improved, please [contribute](http://cordova.apache.org/#contribute)!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/4.0.0/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/en/4.0.0/guide/next/index.md b/docs/en/4.0.0/guide/next/index.md
index 8f369e0..5e86490 100644
--- a/docs/en/4.0.0/guide/next/index.md
+++ b/docs/en/4.0.0/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Next Steps
 
 For developers who have an understanding of how to use the Cordova CLI and make use of plugins, there are a few things you may want to consider researching next to build better, more performant Cordova applications. The following document offers advice on various topics relating to best practices, testing, upgrades, and other topics, but is not meant to be prescriptive. Consider this your launching point for your growth as a Cordova developer. Also, if you see something that can be improved, please [contribute](http://cordova.apache.org/#contribute)!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/next/index.md b/docs/en/edge/guide/next/index.md
index 8f369e0..5e86490 100644
--- a/docs/en/edge/guide/next/index.md
+++ b/docs/en/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Next Steps
 
 For developers who have an understanding of how to use the Cordova CLI and make use of plugins, there are a few things you may want to consider researching next to build better, more performant Cordova applications. The following document offers advice on various topics relating to best practices, testing, upgrades, and other topics, but is not meant to be prescriptive. Consider this your launching point for your growth as a Cordova developer. Also, if you see something that can be improved, please [contribute](http://cordova.apache.org/#contribute)!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.1.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/es/3.1.0/guide/platforms/firefoxos/config.md b/docs/es/3.1.0/guide/platforms/firefoxos/config.md
index 2e8eff2..c66372d 100644
--- a/docs/es/3.1.0/guide/platforms/firefoxos/config.md
+++ b/docs/es/3.1.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuración de FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.4.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/es/3.4.0/cordova/plugins/pluginapis.md b/docs/es/3.4.0/cordova/plugins/pluginapis.md
index ecca858..3eb0130 100644
--- a/docs/es/3.4.0/cordova/plugins/pluginapis.md
+++ b/docs/es/3.4.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. Consulte el archivo aviso distribuido con este trabajo para información adicional sobre la propiedad de derechos de autor. El ASF licencias este archivo a usted bajo la licencia Apache, versión 2.0 (la "licencia"); Usted no puede usar este archivo excepto en cumplimiento de la licencia. Usted puede obtener una copia de la licencia en
-
-           http://www.apache.org/licenses/LICENSE-2.0 a menos que requerido por la ley aplicable o por escrito, software distribuido bajo la licencia se distribuye en un "Tal cual" base, sin garantías o condiciones de ninguna clase, expresa o implícita.  Ver la licencia para el lenguaje específico que regulan los permisos y limitaciones
-    
-
-## bajo la licencia.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin APIs
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.4.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/es/3.4.0/guide/platforms/amazonfireos/index.md b/docs/es/3.4.0/guide/platforms/amazonfireos/index.md
index 7f121a9..805b422 100644
--- a/docs/es/3.4.0/guide/platforms/amazonfireos/index.md
+++ b/docs/es/3.4.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. Consulte el archivo aviso distribuido con este trabajo para información adicional sobre la propiedad de derechos de autor. El ASF licencias este archivo a usted bajo la licencia Apache, versión 2.0 (la "licencia"); Usted no puede usar este archivo excepto en cumplimiento de la licencia. Usted puede obtener una copia de la licencia en
-
-           http://www.apache.org/licenses/LICENSE-2.0 a menos que requerido por la ley aplicable o por escrito, software distribuido bajo la licencia se distribuye en un "Tal cual" base, sin garantías o condiciones de ninguna clase, expresa o implícita.  Ver la licencia para el lenguaje específico que regulan los permisos y limitaciones
-    
-
-## bajo la licencia.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon fuego OS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.4.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/es/3.4.0/guide/platforms/firefoxos/config.md b/docs/es/3.4.0/guide/platforms/firefoxos/config.md
index 2e8eff2..c66372d 100644
--- a/docs/es/3.4.0/guide/platforms/firefoxos/config.md
+++ b/docs/es/3.4.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuración de FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.4.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/3.4.0/guide/platforms/wp8/plugin.md b/docs/es/3.4.0/guide/platforms/wp8/plugin.md
index d8a424f..94f0c51 100644
--- a/docs/es/3.4.0/guide/platforms/wp8/plugin.md
+++ b/docs/es/3.4.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.4.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/es/3.4.0/guide/support/index.md b/docs/es/3.4.0/guide/support/index.md
index 9ebe239..332f06a 100644
--- a/docs/es/3.4.0/guide/support/index.md
+++ b/docs/es/3.4.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. Consulte el archivo aviso distribuido con este trabajo para información adicional sobre la propiedad de derechos de autor. El ASF licencias este archivo a usted bajo la licencia Apache, versión 2.0 (la "licencia"); Usted no puede usar este archivo excepto en cumplimiento de la licencia. Usted puede obtener una copia de la licencia en
-
-           http://www.apache.org/licenses/LICENSE-2.0 a menos que requerido por la ley aplicable o por escrito, software distribuido bajo la licencia se distribuye en un "Tal cual" base, sin garantías o condiciones de ninguna clase, expresa o implícita.  Ver la licencia para el lenguaje específico que regulan los permisos y limitaciones bajo licencia.
-    
+           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.
 ---
 
 # Soporte de plataformas

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.5.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/es/3.5.0/cordova/plugins/pluginapis.md b/docs/es/3.5.0/cordova/plugins/pluginapis.md
index ecca858..3eb0130 100644
--- a/docs/es/3.5.0/cordova/plugins/pluginapis.md
+++ b/docs/es/3.5.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. Consulte el archivo aviso distribuido con este trabajo para información adicional sobre la propiedad de derechos de autor. El ASF licencias este archivo a usted bajo la licencia Apache, versión 2.0 (la "licencia"); Usted no puede usar este archivo excepto en cumplimiento de la licencia. Usted puede obtener una copia de la licencia en
-
-           http://www.apache.org/licenses/LICENSE-2.0 a menos que requerido por la ley aplicable o por escrito, software distribuido bajo la licencia se distribuye en un "Tal cual" base, sin garantías o condiciones de ninguna clase, expresa o implícita.  Ver la licencia para el lenguaje específico que regulan los permisos y limitaciones
-    
-
-## bajo la licencia.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin APIs
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.5.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/es/3.5.0/guide/platforms/amazonfireos/index.md b/docs/es/3.5.0/guide/platforms/amazonfireos/index.md
index c07f34c..7850496 100644
--- a/docs/es/3.5.0/guide/platforms/amazonfireos/index.md
+++ b/docs/es/3.5.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. Consulte el archivo aviso distribuido con este trabajo para información adicional sobre la propiedad de derechos de autor. El ASF licencias este archivo a usted bajo la licencia Apache, versión 2.0 (la "licencia"); Usted no puede usar este archivo excepto en cumplimiento de la licencia. Usted puede obtener una copia de la licencia en
-
-           http://www.apache.org/licenses/LICENSE-2.0 a menos que requerido por la ley aplicable o por escrito, software distribuido bajo la licencia se distribuye en un "Tal cual" base, sin garantías o condiciones de ninguna clase, expresa o implícita.  Ver la licencia para el lenguaje específico que regulan los permisos y limitaciones
-    
-
-## bajo la licencia.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon fuego OS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.5.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/es/3.5.0/guide/platforms/firefoxos/config.md b/docs/es/3.5.0/guide/platforms/firefoxos/config.md
index 2e8eff2..c66372d 100644
--- a/docs/es/3.5.0/guide/platforms/firefoxos/config.md
+++ b/docs/es/3.5.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuración de FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.5.0/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/es/3.5.0/guide/platforms/wp8/parallels.md b/docs/es/3.5.0/guide/platforms/wp8/parallels.md
index a08b0f6..9a3710e 100644
--- a/docs/es/3.5.0/guide/platforms/wp8/parallels.md
+++ b/docs/es/3.5.0/guide/platforms/wp8/parallels.md
@@ -1,15 +1,20 @@
---licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Configuración de Parallels Desktop

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.5.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/3.5.0/guide/platforms/wp8/plugin.md b/docs/es/3.5.0/guide/platforms/wp8/plugin.md
index d8a424f..94f0c51 100644
--- a/docs/es/3.5.0/guide/platforms/wp8/plugin.md
+++ b/docs/es/3.5.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.5.0/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/es/3.5.0/guide/platforms/wp8/vmware.md b/docs/es/3.5.0/guide/platforms/wp8/vmware.md
index 6af183b..7db881a 100644
--- a/docs/es/3.5.0/guide/platforms/wp8/vmware.md
+++ b/docs/es/3.5.0/guide/platforms/wp8/vmware.md
@@ -1,9 +1,21 @@
---licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. Consulte el archivo aviso distribuido con este trabajo para información adicional sobre la propiedad de derechos de autor. El ASF licencias este archivo a usted bajo la licencia Apache, versión 2.0 (la "licencia"); Usted no puede usar este archivo excepto en cumplimiento de la licencia. Usted puede obtener una copia de la licencia en
-
-           http://www.apache.org/licenses/LICENSE-2.0 a menos que requerido por la ley aplicable o por escrito, software distribuido bajo la licencia se distribuye en un "Tal cual" base, sin garantías o condiciones de ninguna clase, expresa o implícita.  Ver la licencia para el lenguaje específico que regulan los permisos y limitaciones
-    
-
-## bajo la licencia.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuración de VMWare Fusion
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/3.5.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/es/3.5.0/guide/support/index.md b/docs/es/3.5.0/guide/support/index.md
index 88bd457..23ddb47 100644
--- a/docs/es/3.5.0/guide/support/index.md
+++ b/docs/es/3.5.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-licencia: licencia a la Apache Software Foundation (ASF) bajo acuerdos de licencia de uno o más colaborador. Consulte el archivo aviso distribuido con este trabajo para información adicional sobre la propiedad de derechos de autor. El ASF licencias este archivo a usted bajo la licencia Apache, versión 2.0 (la "licencia"); Usted no puede usar este archivo excepto en cumplimiento de la licencia. Usted puede obtener una copia de la licencia en
-
-           http://www.apache.org/licenses/LICENSE-2.0 a menos que requerido por la ley aplicable o por escrito, software distribuido bajo la licencia se distribuye en un "Tal cual" base, sin garantías o condiciones de ninguna clase, expresa o implícita.  Ver la licencia para el lenguaje específico que regulan los permisos y limitaciones bajo licencia.
-    
+           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.
 ---
 
 # Soporte de plataformas

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/config_ref/images.md b/docs/es/edge/config_ref/images.md
index e794c5c..ba30d5e 100644
--- a/docs/es/edge/config_ref/images.md
+++ b/docs/es/edge/config_ref/images.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Iconos y pantallas de Splash
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/config_ref/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/config_ref/index.md b/docs/es/edge/config_ref/index.md
index 2fa73a0..9fdc53e 100644
--- a/docs/es/edge/config_ref/index.md
+++ b/docs/es/edge/config_ref/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # El archivo config.xml
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[12/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/hybrid/webviews/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/hybrid/webviews/index.md b/docs/fr/edge/guide/hybrid/webviews/index.md
index b723fbb..b1c280c 100644
--- a/docs/fr/edge/guide/hybrid/webviews/index.md
+++ b/docs/fr/edge/guide/hybrid/webviews/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Intégrer des WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/next/index.md b/docs/fr/edge/guide/next/index.md
index 1799979..12517da 100644
--- a/docs/fr/edge/guide/next/index.md
+++ b/docs/fr/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Prochaines étapes
 
 Pour les développeurs qui ont une compréhension de comment utiliser le CLI de Cordova et faire utiliser des plugins, il y a quelques petites choses, vous voudrez peut-être recherche à côté de reconstruire mieux, applications de Cordova plus performant. Le document suivant fournit des conseils sur divers sujets relatifs aux meilleures pratiques, tests, mises à niveau et autres rubriques, mais n'est pas censé être prescriptif. Considérez ceci votre point de départ pour votre croissance en tant que développeur Cordova. Aussi, si vous voyez quelque chose qui peut être amélioré, Merci de [contribuer][1]!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/overview/index.md b/docs/fr/edge/guide/overview/index.md
index bd6cd45..87b227e 100644
--- a/docs/fr/edge/guide/overview/index.md
+++ b/docs/fr/edge/guide/overview/index.md
@@ -1,18 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Présentation
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/amazonfireos/config.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/amazonfireos/config.md b/docs/fr/edge/guide/platforms/amazonfireos/config.md
index 48d4f50..8349107 100644
--- a/docs/fr/edge/guide/platforms/amazonfireos/config.md
+++ b/docs/fr/edge/guide/platforms/amazonfireos/config.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon Fire OS Configuration
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/amazonfireos/index.md b/docs/fr/edge/guide/platforms/amazonfireos/index.md
index 256eb0a..35a2c7b 100644
--- a/docs/fr/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/fr/edge/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limites
-    
-
-## aux termes de la licence.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon Fire OS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/amazonfireos/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/amazonfireos/plugin.md b/docs/fr/edge/guide/platforms/amazonfireos/plugin.md
index d64e38c..07d9192 100644
--- a/docs/fr/edge/guide/platforms/amazonfireos/plugin.md
+++ b/docs/fr/edge/guide/platforms/amazonfireos/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon Fire OS Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/amazonfireos/webview.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/amazonfireos/webview.md b/docs/fr/edge/guide/platforms/amazonfireos/webview.md
index 3816613..0eb7257 100644
--- a/docs/fr/edge/guide/platforms/amazonfireos/webview.md
+++ b/docs/fr/edge/guide/platforms/amazonfireos/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon Fire OS WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/android/config.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/android/config.md b/docs/fr/edge/guide/platforms/android/config.md
index 64d6412..6e03b91 100644
--- a/docs/fr/edge/guide/platforms/android/config.md
+++ b/docs/fr/edge/guide/platforms/android/config.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configuration d'Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/android/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/android/index.md b/docs/fr/edge/guide/platforms/android/index.md
index 723b4fb..43ffc38 100644
--- a/docs/fr/edge/guide/platforms/android/index.md
+++ b/docs/fr/edge/guide/platforms/android/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guide pour la plate-forme Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/android/plugin.md b/docs/fr/edge/guide/platforms/android/plugin.md
index 3ae6992..c919459 100644
--- a/docs/fr/edge/guide/platforms/android/plugin.md
+++ b/docs/fr/edge/guide/platforms/android/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugins Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/android/tools.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/android/tools.md b/docs/fr/edge/guide/platforms/android/tools.md
index 5f737bf..311eff7 100644
--- a/docs/fr/edge/guide/platforms/android/tools.md
+++ b/docs/fr/edge/guide/platforms/android/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android Shell Tool Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/android/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/android/upgrade.md b/docs/fr/edge/guide/platforms/android/upgrade.md
index d591561..e952f0d 100644
--- a/docs/fr/edge/guide/platforms/android/upgrade.md
+++ b/docs/fr/edge/guide/platforms/android/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Mise à jour Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/android/webview.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/android/webview.md b/docs/fr/edge/guide/platforms/android/webview.md
index 5fa6f1a..2b8c519 100644
--- a/docs/fr/edge/guide/platforms/android/webview.md
+++ b/docs/fr/edge/guide/platforms/android/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/blackberry/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/blackberry/upgrade.md b/docs/fr/edge/guide/platforms/blackberry/upgrade.md
index d90a6a0..97a505e 100644
--- a/docs/fr/edge/guide/platforms/blackberry/upgrade.md
+++ b/docs/fr/edge/guide/platforms/blackberry/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Mise à jour de BlackBerry
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/blackberry10/config.md b/docs/fr/edge/guide/platforms/blackberry10/config.md
index ac92d9a..d463dfa 100644
--- a/docs/fr/edge/guide/platforms/blackberry10/config.md
+++ b/docs/fr/edge/guide/platforms/blackberry10/config.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configuration de blackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/blackberry10/index.md b/docs/fr/edge/guide/platforms/blackberry10/index.md
index 02f68fa..159bd46 100644
--- a/docs/fr/edge/guide/platforms/blackberry10/index.md
+++ b/docs/fr/edge/guide/platforms/blackberry10/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guide de la plate-forme blackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/blackberry10/plugin.md b/docs/fr/edge/guide/platforms/blackberry10/plugin.md
index 06bb8bd..e2c21bc 100644
--- a/docs/fr/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/fr/edge/guide/platforms/blackberry10/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/blackberry10/tools.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/blackberry10/tools.md b/docs/fr/edge/guide/platforms/blackberry10/tools.md
index 8481809..d927147 100644
--- a/docs/fr/edge/guide/platforms/blackberry10/tools.md
+++ b/docs/fr/edge/guide/platforms/blackberry10/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 Shell Tool Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/blackberry10/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/blackberry10/upgrade.md b/docs/fr/edge/guide/platforms/blackberry10/upgrade.md
index fb44451..f4d6335 100644
--- a/docs/fr/edge/guide/platforms/blackberry10/upgrade.md
+++ b/docs/fr/edge/guide/platforms/blackberry10/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Mise à jour de BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/firefoxos/config.md b/docs/fr/edge/guide/platforms/firefoxos/config.md
index b668afd..9195e36 100644
--- a/docs/fr/edge/guide/platforms/firefoxos/config.md
+++ b/docs/fr/edge/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuration de FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/firefoxos/index.md b/docs/fr/edge/guide/platforms/firefoxos/index.md
index d6b6222..94f0078 100644
--- a/docs/fr/edge/guide/platforms/firefoxos/index.md
+++ b/docs/fr/edge/guide/platforms/firefoxos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Firefox OS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/index.md b/docs/fr/edge/guide/platforms/index.md
index 0d8f0e5..d8fefe3 100644
--- a/docs/fr/edge/guide/platforms/index.md
+++ b/docs/fr/edge/guide/platforms/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guides de la plate-forme
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/ios/config.md b/docs/fr/edge/guide/platforms/ios/config.md
index 9db6eb1..63c6ea4 100644
--- a/docs/fr/edge/guide/platforms/ios/config.md
+++ b/docs/fr/edge/guide/platforms/ios/config.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Configuration
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/ios/index.md b/docs/fr/edge/guide/platforms/ios/index.md
index 846fa18..2a56f24 100644
--- a/docs/fr/edge/guide/platforms/ios/index.md
+++ b/docs/fr/edge/guide/platforms/ios/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/ios/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/ios/plugin.md b/docs/fr/edge/guide/platforms/ios/plugin.md
index 7a7b983..02d0e9d 100644
--- a/docs/fr/edge/guide/platforms/ios/plugin.md
+++ b/docs/fr/edge/guide/platforms/ios/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/ios/tools.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/ios/tools.md b/docs/fr/edge/guide/platforms/ios/tools.md
index f387460..03a5bdd 100644
--- a/docs/fr/edge/guide/platforms/ios/tools.md
+++ b/docs/fr/edge/guide/platforms/ios/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Shell Tool Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/ios/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/ios/upgrade.md b/docs/fr/edge/guide/platforms/ios/upgrade.md
index b86720f..4691b3a 100644
--- a/docs/fr/edge/guide/platforms/ios/upgrade.md
+++ b/docs/fr/edge/guide/platforms/ios/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Mise à jour d'iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/ios/webview.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/ios/webview.md b/docs/fr/edge/guide/platforms/ios/webview.md
index 679d8ee..b3fcda9 100644
--- a/docs/fr/edge/guide/platforms/ios/webview.md
+++ b/docs/fr/edge/guide/platforms/ios/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/tizen/index.md b/docs/fr/edge/guide/platforms/tizen/index.md
index 94cfc59..57ee6b8 100644
--- a/docs/fr/edge/guide/platforms/tizen/index.md
+++ b/docs/fr/edge/guide/platforms/tizen/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guide de la plate-forme paciarelli
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/ubuntu/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/ubuntu/index.md b/docs/fr/edge/guide/platforms/ubuntu/index.md
index c1dda7e..945ccc5 100644
--- a/docs/fr/edge/guide/platforms/ubuntu/index.md
+++ b/docs/fr/edge/guide/platforms/ubuntu/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guide de la plate-forme Ubuntu
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/win8/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/win8/index.md b/docs/fr/edge/guide/platforms/win8/index.md
index 36ffa19..954c151 100644
--- a/docs/fr/edge/guide/platforms/win8/index.md
+++ b/docs/fr/edge/guide/platforms/win8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guide de la plate-forme Windows
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/win8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/win8/plugin.md b/docs/fr/edge/guide/platforms/win8/plugin.md
index 3c4521c..ce12774 100644
--- a/docs/fr/edge/guide/platforms/win8/plugin.md
+++ b/docs/fr/edge/guide/platforms/win8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugins Windows
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/win8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/win8/upgrade.md b/docs/fr/edge/guide/platforms/win8/upgrade.md
index 4cd27f6..424b8cf 100644
--- a/docs/fr/edge/guide/platforms/win8/upgrade.md
+++ b/docs/fr/edge/guide/platforms/win8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # La mise à niveau de Windows 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/wp8/index.md b/docs/fr/edge/guide/platforms/wp8/index.md
index ddba6e1..1c554f2 100644
--- a/docs/fr/edge/guide/platforms/wp8/index.md
+++ b/docs/fr/edge/guide/platforms/wp8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guide de plateforme Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/wp8/parallels.md b/docs/fr/edge/guide/platforms/wp8/parallels.md
index 728f119..9d24f40 100644
--- a/docs/fr/edge/guide/platforms/wp8/parallels.md
+++ b/docs/fr/edge/guide/platforms/wp8/parallels.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configuration de Parallels Desktop
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/wp8/plugin.md b/docs/fr/edge/guide/platforms/wp8/plugin.md
index 581a02f..1177bf0 100644
--- a/docs/fr/edge/guide/platforms/wp8/plugin.md
+++ b/docs/fr/edge/guide/platforms/wp8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/wp8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/wp8/upgrade.md b/docs/fr/edge/guide/platforms/wp8/upgrade.md
index e4d250e..eac5213 100644
--- a/docs/fr/edge/guide/platforms/wp8/upgrade.md
+++ b/docs/fr/edge/guide/platforms/wp8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. See the NOTICE file distributed with this work for additional information regarding copyright ownership. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # La mise à niveau de Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/wp8/vmware.md b/docs/fr/edge/guide/platforms/wp8/vmware.md
index 1f6ebfd..61f59de 100644
--- a/docs/fr/edge/guide/platforms/wp8/vmware.md
+++ b/docs/fr/edge/guide/platforms/wp8/vmware.md
@@ -1,11 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limites
-    
-
-## aux termes de la licence.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuration de VMWare Fusion
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/platforms/wp8/webview.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/platforms/wp8/webview.md b/docs/fr/edge/guide/platforms/wp8/webview.md
index 4b9e02d..6e55c21 100644
--- a/docs/fr/edge/guide/platforms/wp8/webview.md
+++ b/docs/fr/edge/guide/platforms/wp8/webview.md
@@ -1,18 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Windows Phone 8,0 WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/support/index.md b/docs/fr/edge/guide/support/index.md
index 7afe899..01226cd 100644
--- a/docs/fr/edge/guide/support/index.md
+++ b/docs/fr/edge/guide/support/index.md
@@ -1,11 +1,21 @@
-* * *
+---
+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
 
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
+           http://www.apache.org/licenses/LICENSE-2.0
 
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limitations aux termes de la licence.
-    
-
-* * *
+         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.
+---
 
 # Plateforme de Support
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/index.md b/docs/fr/edge/index.md
index 9ffd2da..00d46bf 100644
--- a/docs/fr/edge/index.md
+++ b/docs/fr/edge/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 <div id="home">
   <h1>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/plugin_ref/plugman.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/plugin_ref/plugman.md b/docs/fr/edge/plugin_ref/plugman.md
index 26c471c..35e8484 100644
--- a/docs/fr/edge/plugin_ref/plugman.md
+++ b/docs/fr/edge/plugin_ref/plugman.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aide de Plugman pour gérer les Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/plugin_ref/spec.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/plugin_ref/spec.md b/docs/fr/edge/plugin_ref/spec.md
index 4c73b80..99ce042 100644
--- a/docs/fr/edge/plugin_ref/spec.md
+++ b/docs/fr/edge/plugin_ref/spec.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Spécification des plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.1.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/it/3.1.0/guide/platforms/firefoxos/config.md b/docs/it/3.1.0/guide/platforms/firefoxos/config.md
index 5e70d7e..d5e0b9a 100644
--- a/docs/it/3.1.0/guide/platforms/firefoxos/config.md
+++ b/docs/it/3.1.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configurazione FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.4.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/it/3.4.0/cordova/plugins/pluginapis.md b/docs/it/3.4.0/cordova/plugins/pluginapis.md
index 752fd2d..180d649 100644
--- a/docs/it/3.4.0/cordova/plugins/pluginapis.md
+++ b/docs/it/3.4.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni
-    
-
-## con la licenza.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.4.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/it/3.4.0/guide/platforms/amazonfireos/index.md b/docs/it/3.4.0/guide/platforms/amazonfireos/index.md
index 7d6aaff..1cd8c8e 100644
--- a/docs/it/3.4.0/guide/platforms/amazonfireos/index.md
+++ b/docs/it/3.4.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni
-    
-
-## con la licenza.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon fuoco piattaforma OS guida
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[16/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/wp8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/wp8/upgrade.md b/docs/de/edge/guide/platforms/wp8/upgrade.md
index 6c7ca18..e46a52b 100644
--- a/docs/de/edge/guide/platforms/wp8/upgrade.md
+++ b/docs/de/edge/guide/platforms/wp8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aktualisieren von Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/wp8/vmware.md b/docs/de/edge/guide/platforms/wp8/vmware.md
index 04dfd9b..a604bd0 100644
--- a/docs/de/edge/guide/platforms/wp8/vmware.md
+++ b/docs/de/edge/guide/platforms/wp8/vmware.md
@@ -1,11 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen
-    
-
-## unter der Lizenz.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Konfiguration von VMWare Fusion
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/wp8/webview.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/wp8/webview.md b/docs/de/edge/guide/platforms/wp8/webview.md
index ec4645c..0ff82a4 100644
--- a/docs/de/edge/guide/platforms/wp8/webview.md
+++ b/docs/de/edge/guide/platforms/wp8/webview.md
@@ -1,18 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Windows Phone 8,0 Webansichten für
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/support/index.md b/docs/de/edge/guide/support/index.md
index 8aef95f..9a85b2c 100644
--- a/docs/de/edge/guide/support/index.md
+++ b/docs/de/edge/guide/support/index.md
@@ -1,11 +1,21 @@
-* * *
+---
+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
 
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
+           http://www.apache.org/licenses/LICENSE-2.0
 
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen unter der Lizenz.
-    
-
-* * *
+         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.
+---
 
 # Plattformunterstützung
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/index.md b/docs/de/edge/index.md
index ee67277..6099dd4 100644
--- a/docs/de/edge/index.md
+++ b/docs/de/edge/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 <div id="home">
   <h1>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/plugin_ref/plugman.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/plugin_ref/plugman.md b/docs/de/edge/plugin_ref/plugman.md
index bf77237..c428522 100644
--- a/docs/de/edge/plugin_ref/plugman.md
+++ b/docs/de/edge/plugin_ref/plugman.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugins verwalten mithilfe Plugman
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/plugin_ref/spec.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/plugin_ref/spec.md b/docs/de/edge/plugin_ref/spec.md
index 2f1f807..74c30b7 100644
--- a/docs/de/edge/plugin_ref/spec.md
+++ b/docs/de/edge/plugin_ref/spec.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugin-Spezifikation
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.2.0/guide/project-settings/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.2.0/guide/project-settings/ios/index.md b/docs/en/2.2.0/guide/project-settings/ios/index.md
index 77a6303..9a2bb3a 100644
--- a/docs/en/2.2.0/guide/project-settings/ios/index.md
+++ b/docs/en/2.2.0/guide/project-settings/ios/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for iOS
 ========================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.3.0/guide/project-settings/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.3.0/guide/project-settings/ios/index.md b/docs/en/2.3.0/guide/project-settings/ios/index.md
index 5e0f390..16a065c 100644
--- a/docs/en/2.3.0/guide/project-settings/ios/index.md
+++ b/docs/en/2.3.0/guide/project-settings/ios/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for iOS
 ========================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.4.0/guide/project-settings/android/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.4.0/guide/project-settings/android/index.md b/docs/en/2.4.0/guide/project-settings/android/index.md
index 0c2a2c7..b1f611b 100644
--- a/docs/en/2.4.0/guide/project-settings/android/index.md
+++ b/docs/en/2.4.0/guide/project-settings/android/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Android
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.4.0/guide/project-settings/bada/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.4.0/guide/project-settings/bada/index.md b/docs/en/2.4.0/guide/project-settings/bada/index.md
index f5507d9..9799aae 100644
--- a/docs/en/2.4.0/guide/project-settings/bada/index.md
+++ b/docs/en/2.4.0/guide/project-settings/bada/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Bada 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.4.0/guide/project-settings/blackberry/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.4.0/guide/project-settings/blackberry/index.md b/docs/en/2.4.0/guide/project-settings/blackberry/index.md
index 8563ebe..789c2a9 100644
--- a/docs/en/2.4.0/guide/project-settings/blackberry/index.md
+++ b/docs/en/2.4.0/guide/project-settings/blackberry/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for BlackBerry 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.4.0/guide/project-settings/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.4.0/guide/project-settings/firefoxos/index.md b/docs/en/2.4.0/guide/project-settings/firefoxos/index.md
index 89f53b8..e1958dd 100644
--- a/docs/en/2.4.0/guide/project-settings/firefoxos/index.md
+++ b/docs/en/2.4.0/guide/project-settings/firefoxos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for FirefoxOS 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.4.0/guide/project-settings/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.4.0/guide/project-settings/ios/index.md b/docs/en/2.4.0/guide/project-settings/ios/index.md
index ba1a0db..9729734 100644
--- a/docs/en/2.4.0/guide/project-settings/ios/index.md
+++ b/docs/en/2.4.0/guide/project-settings/ios/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for iOS
 ========================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.4.0/guide/project-settings/webos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.4.0/guide/project-settings/webos/index.md b/docs/en/2.4.0/guide/project-settings/webos/index.md
index 13101ff..31f6224 100644
--- a/docs/en/2.4.0/guide/project-settings/webos/index.md
+++ b/docs/en/2.4.0/guide/project-settings/webos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for webOS 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.4.0/guide/project-settings/windows8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.4.0/guide/project-settings/windows8/index.md b/docs/en/2.4.0/guide/project-settings/windows8/index.md
index 6d7a783..e418cb5 100644
--- a/docs/en/2.4.0/guide/project-settings/windows8/index.md
+++ b/docs/en/2.4.0/guide/project-settings/windows8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows 8 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.4.0/guide/project-settings/wp7/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.4.0/guide/project-settings/wp7/index.md b/docs/en/2.4.0/guide/project-settings/wp7/index.md
index 9b6e4d9..268cdde 100644
--- a/docs/en/2.4.0/guide/project-settings/wp7/index.md
+++ b/docs/en/2.4.0/guide/project-settings/wp7/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 7 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.4.0/guide/project-settings/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.4.0/guide/project-settings/wp8/index.md b/docs/en/2.4.0/guide/project-settings/wp8/index.md
index dcf4b50..6aaeda6 100644
--- a/docs/en/2.4.0/guide/project-settings/wp8/index.md
+++ b/docs/en/2.4.0/guide/project-settings/wp8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 8
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.5.0/guide/project-settings/android/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.5.0/guide/project-settings/android/index.md b/docs/en/2.5.0/guide/project-settings/android/index.md
index 20b0ea1..f9d601e 100644
--- a/docs/en/2.5.0/guide/project-settings/android/index.md
+++ b/docs/en/2.5.0/guide/project-settings/android/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Android
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.5.0/guide/project-settings/bada/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.5.0/guide/project-settings/bada/index.md b/docs/en/2.5.0/guide/project-settings/bada/index.md
index f5507d9..9799aae 100644
--- a/docs/en/2.5.0/guide/project-settings/bada/index.md
+++ b/docs/en/2.5.0/guide/project-settings/bada/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Bada 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.5.0/guide/project-settings/blackberry/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.5.0/guide/project-settings/blackberry/index.md b/docs/en/2.5.0/guide/project-settings/blackberry/index.md
index c08e3fe..e7db6c4 100644
--- a/docs/en/2.5.0/guide/project-settings/blackberry/index.md
+++ b/docs/en/2.5.0/guide/project-settings/blackberry/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for BlackBerry 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.5.0/guide/project-settings/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.5.0/guide/project-settings/firefoxos/index.md b/docs/en/2.5.0/guide/project-settings/firefoxos/index.md
index 89f53b8..e1958dd 100644
--- a/docs/en/2.5.0/guide/project-settings/firefoxos/index.md
+++ b/docs/en/2.5.0/guide/project-settings/firefoxos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for FirefoxOS 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.5.0/guide/project-settings/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.5.0/guide/project-settings/ios/index.md b/docs/en/2.5.0/guide/project-settings/ios/index.md
index 8c8e5c2..f27f5d5 100644
--- a/docs/en/2.5.0/guide/project-settings/ios/index.md
+++ b/docs/en/2.5.0/guide/project-settings/ios/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for iOS
 ========================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.5.0/guide/project-settings/webos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.5.0/guide/project-settings/webos/index.md b/docs/en/2.5.0/guide/project-settings/webos/index.md
index bd47e17..87f61dd 100644
--- a/docs/en/2.5.0/guide/project-settings/webos/index.md
+++ b/docs/en/2.5.0/guide/project-settings/webos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for webOS 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.5.0/guide/project-settings/windows8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.5.0/guide/project-settings/windows8/index.md b/docs/en/2.5.0/guide/project-settings/windows8/index.md
index e38dbbb..f983ed7 100644
--- a/docs/en/2.5.0/guide/project-settings/windows8/index.md
+++ b/docs/en/2.5.0/guide/project-settings/windows8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows 8 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.5.0/guide/project-settings/wp7/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.5.0/guide/project-settings/wp7/index.md b/docs/en/2.5.0/guide/project-settings/wp7/index.md
index 9c4a410..b93940c 100644
--- a/docs/en/2.5.0/guide/project-settings/wp7/index.md
+++ b/docs/en/2.5.0/guide/project-settings/wp7/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 7 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.5.0/guide/project-settings/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.5.0/guide/project-settings/wp8/index.md b/docs/en/2.5.0/guide/project-settings/wp8/index.md
index 7d9ca64..3cf4019 100644
--- a/docs/en/2.5.0/guide/project-settings/wp8/index.md
+++ b/docs/en/2.5.0/guide/project-settings/wp8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 8
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.6.0/guide/project-settings/android/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.6.0/guide/project-settings/android/index.md b/docs/en/2.6.0/guide/project-settings/android/index.md
index 20b0ea1..f9d601e 100644
--- a/docs/en/2.6.0/guide/project-settings/android/index.md
+++ b/docs/en/2.6.0/guide/project-settings/android/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Android
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.6.0/guide/project-settings/bada/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.6.0/guide/project-settings/bada/index.md b/docs/en/2.6.0/guide/project-settings/bada/index.md
index f5507d9..9799aae 100644
--- a/docs/en/2.6.0/guide/project-settings/bada/index.md
+++ b/docs/en/2.6.0/guide/project-settings/bada/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Bada 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.6.0/guide/project-settings/blackberry/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.6.0/guide/project-settings/blackberry/index.md b/docs/en/2.6.0/guide/project-settings/blackberry/index.md
index c08e3fe..e7db6c4 100644
--- a/docs/en/2.6.0/guide/project-settings/blackberry/index.md
+++ b/docs/en/2.6.0/guide/project-settings/blackberry/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for BlackBerry 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.6.0/guide/project-settings/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.6.0/guide/project-settings/firefoxos/index.md b/docs/en/2.6.0/guide/project-settings/firefoxos/index.md
index 89f53b8..e1958dd 100644
--- a/docs/en/2.6.0/guide/project-settings/firefoxos/index.md
+++ b/docs/en/2.6.0/guide/project-settings/firefoxos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for FirefoxOS 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.6.0/guide/project-settings/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.6.0/guide/project-settings/ios/index.md b/docs/en/2.6.0/guide/project-settings/ios/index.md
index a401f10..5caa2b9 100644
--- a/docs/en/2.6.0/guide/project-settings/ios/index.md
+++ b/docs/en/2.6.0/guide/project-settings/ios/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for iOS
 ========================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.6.0/guide/project-settings/webos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.6.0/guide/project-settings/webos/index.md b/docs/en/2.6.0/guide/project-settings/webos/index.md
index bd47e17..87f61dd 100644
--- a/docs/en/2.6.0/guide/project-settings/webos/index.md
+++ b/docs/en/2.6.0/guide/project-settings/webos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for webOS 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.6.0/guide/project-settings/windows8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.6.0/guide/project-settings/windows8/index.md b/docs/en/2.6.0/guide/project-settings/windows8/index.md
index e38dbbb..f983ed7 100644
--- a/docs/en/2.6.0/guide/project-settings/windows8/index.md
+++ b/docs/en/2.6.0/guide/project-settings/windows8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows 8 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.6.0/guide/project-settings/wp7/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.6.0/guide/project-settings/wp7/index.md b/docs/en/2.6.0/guide/project-settings/wp7/index.md
index 9c4a410..b93940c 100644
--- a/docs/en/2.6.0/guide/project-settings/wp7/index.md
+++ b/docs/en/2.6.0/guide/project-settings/wp7/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 7 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.6.0/guide/project-settings/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.6.0/guide/project-settings/wp8/index.md b/docs/en/2.6.0/guide/project-settings/wp8/index.md
index 7d9ca64..3cf4019 100644
--- a/docs/en/2.6.0/guide/project-settings/wp8/index.md
+++ b/docs/en/2.6.0/guide/project-settings/wp8/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Windows Phone 8
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.7.0/guide/project-settings/android/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.7.0/guide/project-settings/android/index.md b/docs/en/2.7.0/guide/project-settings/android/index.md
index 20b0ea1..f9d601e 100644
--- a/docs/en/2.7.0/guide/project-settings/android/index.md
+++ b/docs/en/2.7.0/guide/project-settings/android/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Android
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.7.0/guide/project-settings/bada/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.7.0/guide/project-settings/bada/index.md b/docs/en/2.7.0/guide/project-settings/bada/index.md
index f5507d9..9799aae 100644
--- a/docs/en/2.7.0/guide/project-settings/bada/index.md
+++ b/docs/en/2.7.0/guide/project-settings/bada/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for Bada 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.7.0/guide/project-settings/blackberry/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.7.0/guide/project-settings/blackberry/index.md b/docs/en/2.7.0/guide/project-settings/blackberry/index.md
index c08e3fe..e7db6c4 100644
--- a/docs/en/2.7.0/guide/project-settings/blackberry/index.md
+++ b/docs/en/2.7.0/guide/project-settings/blackberry/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for BlackBerry 
 ===================================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/en/2.7.0/guide/project-settings/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/en/2.7.0/guide/project-settings/firefoxos/index.md b/docs/en/2.7.0/guide/project-settings/firefoxos/index.md
index 89f53b8..e1958dd 100644
--- a/docs/en/2.7.0/guide/project-settings/firefoxos/index.md
+++ b/docs/en/2.7.0/guide/project-settings/firefoxos/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for FirefoxOS 
 ===================================


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[17/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.searchbutton.md b/docs/de/edge/cordova/events/events.searchbutton.md
index 7dafd0c..1ce0472 100644
--- a/docs/de/edge/cordova/events/events.searchbutton.md
+++ b/docs/de/edge/cordova/events/events.searchbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # searchbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.startcallbutton.md b/docs/de/edge/cordova/events/events.startcallbutton.md
index def3b12..8b53b66 100644
--- a/docs/de/edge/cordova/events/events.startcallbutton.md
+++ b/docs/de/edge/cordova/events/events.startcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # startcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.volumedownbutton.md b/docs/de/edge/cordova/events/events.volumedownbutton.md
index 2e619ed..fa233b0 100644
--- a/docs/de/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/de/edge/cordova/events/events.volumedownbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumedownbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/events/events.volumeupbutton.md b/docs/de/edge/cordova/events/events.volumeupbutton.md
index 12c679f..a8df74f 100644
--- a/docs/de/edge/cordova/events/events.volumeupbutton.md
+++ b/docs/de/edge/cordova/events/events.volumeupbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/plugins/pluginapis.md b/docs/de/edge/cordova/plugins/pluginapis.md
index 9effc6e..cadadb6 100644
--- a/docs/de/edge/cordova/plugins/pluginapis.md
+++ b/docs/de/edge/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen
-    
-
-## unter der Lizenz.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin APIs
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/cordova/storage/storage.md b/docs/de/edge/cordova/storage/storage.md
index 552b3ef..0fe750f 100644
--- a/docs/de/edge/cordova/storage/storage.md
+++ b/docs/de/edge/cordova/storage/storage.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Speicher
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/appdev/privacy/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/appdev/privacy/index.md b/docs/de/edge/guide/appdev/privacy/index.md
index 85cc107..2f07a26 100644
--- a/docs/de/edge/guide/appdev/privacy/index.md
+++ b/docs/de/edge/guide/appdev/privacy/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Datenschutz-Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/appdev/security/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/appdev/security/index.md b/docs/de/edge/guide/appdev/security/index.md
index fb7bd6a..0001d18 100644
--- a/docs/de/edge/guide/appdev/security/index.md
+++ b/docs/de/edge/guide/appdev/security/index.md
@@ -1,11 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen
-    
-
-## unter der Lizenz.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Sicherheitshandbuch
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/appdev/whitelist/index.md b/docs/de/edge/guide/appdev/whitelist/index.md
index 9b3d333..fea90a0 100644
--- a/docs/de/edge/guide/appdev/whitelist/index.md
+++ b/docs/de/edge/guide/appdev/whitelist/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Whitelist-Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/cli/index.md b/docs/de/edge/guide/cli/index.md
index c96695b..660738a 100644
--- a/docs/de/edge/guide/cli/index.md
+++ b/docs/de/edge/guide/cli/index.md
@@ -1,18 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Die Befehlszeilenschnittstelle
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/hybrid/plugins/index.md b/docs/de/edge/guide/hybrid/plugins/index.md
index b4677cb..ad6ef0b 100644
--- a/docs/de/edge/guide/hybrid/plugins/index.md
+++ b/docs/de/edge/guide/hybrid/plugins/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugin-Entwicklung-Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/hybrid/webviews/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/hybrid/webviews/index.md b/docs/de/edge/guide/hybrid/webviews/index.md
index 7deff0b..21358e5 100644
--- a/docs/de/edge/guide/hybrid/webviews/index.md
+++ b/docs/de/edge/guide/hybrid/webviews/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Einbetten von Webansichten für
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/next/index.md b/docs/de/edge/guide/next/index.md
index 0414fd1..c5430c7 100644
--- a/docs/de/edge/guide/next/index.md
+++ b/docs/de/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Die nächsten Schritte
 
 Für Entwickler, die ein davon wie Verständnis man die Cordova CLI verwenden und über Plugins verwenden, es gibt ein paar Dinge, die Sie sollten in Erwägung ziehen, neben Build besser, mehr Performant Cordova Anwendungen untersucht. Das folgende Dokument bietet Beratung zu verschiedenen Themen rund um Empfehlungen, Tests, Upgrades und anderen Themen, aber soll nicht präskriptiv sein. Betrachten Sie Ihren Startpunkt für Ihr Wachstum als Entwickler Cordova. Auch, wenn Sie etwas, die verbessert werden können sehen, bitte [beitragen][1]!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/overview/index.md b/docs/de/edge/guide/overview/index.md
index 658e632..d87205d 100644
--- a/docs/de/edge/guide/overview/index.md
+++ b/docs/de/edge/guide/overview/index.md
@@ -1,18 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Übersicht
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/amazonfireos/config.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/amazonfireos/config.md b/docs/de/edge/guide/platforms/amazonfireos/config.md
index 93a501a..d248c1f 100644
--- a/docs/de/edge/guide/platforms/amazonfireos/config.md
+++ b/docs/de/edge/guide/platforms/amazonfireos/config.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon Fire OS Konfiguration
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/amazonfireos/index.md b/docs/de/edge/guide/platforms/amazonfireos/index.md
index afbb01a..2bf4b48 100644
--- a/docs/de/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/de/edge/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. Finden Sie verteilte mit dieser Arbeit für weitere Informationen bezüglich Urheberrecht und Datenschutz-Datei. Die ASF-Lizenzen-diese Datei, um Sie unter der Apache License, Version 2.0 (die "Lizenz"); Sie können diese Datei nur in Übereinstimmung mit der Lizenz. Sie können eine Kopie der Lizenz zu erhalten.
-
-           http://www.Apache.org/licenses/LICENSE-2.0 sofern gesetzlich erforderlich oder schriftlich vereinbart, ist die Software unter der Lizenz verteilt auf einer "AS IS" BASIS, ohne Gewährleistungen oder Bedingungen irgendwelcher Art, weder ausdrücklich noch stillschweigend.  Finden Sie die Lizenz für die jeweilige Sprache, EZB, Berechtigungen und Beschränkungen
-    
-
-## unter der Lizenz.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Handbuch für die OS-Plattform von Amazon-Feuer
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/amazonfireos/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/amazonfireos/plugin.md b/docs/de/edge/guide/platforms/amazonfireos/plugin.md
index 8dba81a..d033954 100644
--- a/docs/de/edge/guide/platforms/amazonfireos/plugin.md
+++ b/docs/de/edge/guide/platforms/amazonfireos/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon Fire OS Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/amazonfireos/webview.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/amazonfireos/webview.md b/docs/de/edge/guide/platforms/amazonfireos/webview.md
index 2631c65..bc91712 100644
--- a/docs/de/edge/guide/platforms/amazonfireos/webview.md
+++ b/docs/de/edge/guide/platforms/amazonfireos/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon Fire OS Webansichten für
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/android/config.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/android/config.md b/docs/de/edge/guide/platforms/android/config.md
index 923c253..c07954b 100644
--- a/docs/de/edge/guide/platforms/android/config.md
+++ b/docs/de/edge/guide/platforms/android/config.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android Konfiguration
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/android/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/android/index.md b/docs/de/edge/guide/platforms/android/index.md
index 069a506..e131dcd 100644
--- a/docs/de/edge/guide/platforms/android/index.md
+++ b/docs/de/edge/guide/platforms/android/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android-Plattform-Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/android/plugin.md b/docs/de/edge/guide/platforms/android/plugin.md
index 973c95f..0de67b4 100644
--- a/docs/de/edge/guide/platforms/android/plugin.md
+++ b/docs/de/edge/guide/platforms/android/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/android/tools.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/android/tools.md b/docs/de/edge/guide/platforms/android/tools.md
index 31a6aae..c620767 100644
--- a/docs/de/edge/guide/platforms/android/tools.md
+++ b/docs/de/edge/guide/platforms/android/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android Shell Tool Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/android/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/android/upgrade.md b/docs/de/edge/guide/platforms/android/upgrade.md
index 9372b90..1c6a223 100644
--- a/docs/de/edge/guide/platforms/android/upgrade.md
+++ b/docs/de/edge/guide/platforms/android/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aktualisierung von Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/android/webview.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/android/webview.md b/docs/de/edge/guide/platforms/android/webview.md
index 7638b92..6e9f596 100644
--- a/docs/de/edge/guide/platforms/android/webview.md
+++ b/docs/de/edge/guide/platforms/android/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android Webansichten für
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/blackberry/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/blackberry/upgrade.md b/docs/de/edge/guide/platforms/blackberry/upgrade.md
index b0e7b12..25037ae 100644
--- a/docs/de/edge/guide/platforms/blackberry/upgrade.md
+++ b/docs/de/edge/guide/platforms/blackberry/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aktualisieren der BlackBerry
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/blackberry10/config.md b/docs/de/edge/guide/platforms/blackberry10/config.md
index e963a26..e64418a 100644
--- a/docs/de/edge/guide/platforms/blackberry10/config.md
+++ b/docs/de/edge/guide/platforms/blackberry10/config.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 Konfiguration
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/blackberry10/index.md b/docs/de/edge/guide/platforms/blackberry10/index.md
index ff2a7b9..8420ed4 100644
--- a/docs/de/edge/guide/platforms/blackberry10/index.md
+++ b/docs/de/edge/guide/platforms/blackberry10/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Handbuch für die Plattform von BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/blackberry10/plugin.md b/docs/de/edge/guide/platforms/blackberry10/plugin.md
index 2dba5d2..df5e65a 100644
--- a/docs/de/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/de/edge/guide/platforms/blackberry10/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/blackberry10/tools.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/blackberry10/tools.md b/docs/de/edge/guide/platforms/blackberry10/tools.md
index bbb06a7..3ed8c0f 100644
--- a/docs/de/edge/guide/platforms/blackberry10/tools.md
+++ b/docs/de/edge/guide/platforms/blackberry10/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 Shell Tool Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/blackberry10/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/blackberry10/upgrade.md b/docs/de/edge/guide/platforms/blackberry10/upgrade.md
index c5b9b7f..9a78b21 100644
--- a/docs/de/edge/guide/platforms/blackberry10/upgrade.md
+++ b/docs/de/edge/guide/platforms/blackberry10/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aktualisieren der BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/firefoxos/config.md b/docs/de/edge/guide/platforms/firefoxos/config.md
index f16d115..cbda490 100644
--- a/docs/de/edge/guide/platforms/firefoxos/config.md
+++ b/docs/de/edge/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS Konfiguration
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/firefoxos/index.md b/docs/de/edge/guide/platforms/firefoxos/index.md
index 3c8cdef..3062513 100644
--- a/docs/de/edge/guide/platforms/firefoxos/index.md
+++ b/docs/de/edge/guide/platforms/firefoxos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Firefox-OS-Plattform-Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/index.md b/docs/de/edge/guide/platforms/index.md
index a635e9a..22247de 100644
--- a/docs/de/edge/guide/platforms/index.md
+++ b/docs/de/edge/guide/platforms/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plattform-Guides
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/ios/config.md b/docs/de/edge/guide/platforms/ios/config.md
index ab364d8..e422121 100644
--- a/docs/de/edge/guide/platforms/ios/config.md
+++ b/docs/de/edge/guide/platforms/ios/config.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Konfiguration
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/ios/index.md b/docs/de/edge/guide/platforms/ios/index.md
index 97e20f5..278a3f9 100644
--- a/docs/de/edge/guide/platforms/ios/index.md
+++ b/docs/de/edge/guide/platforms/ios/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/ios/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/ios/plugin.md b/docs/de/edge/guide/platforms/ios/plugin.md
index 89e7aa8..5a2e2fc 100644
--- a/docs/de/edge/guide/platforms/ios/plugin.md
+++ b/docs/de/edge/guide/platforms/ios/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/ios/tools.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/ios/tools.md b/docs/de/edge/guide/platforms/ios/tools.md
index 79fe538..f237a5d 100644
--- a/docs/de/edge/guide/platforms/ios/tools.md
+++ b/docs/de/edge/guide/platforms/ios/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Shell Tool Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/ios/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/ios/upgrade.md b/docs/de/edge/guide/platforms/ios/upgrade.md
index c56d238..e51c72a 100644
--- a/docs/de/edge/guide/platforms/ios/upgrade.md
+++ b/docs/de/edge/guide/platforms/ios/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # IOS Upgrade
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/ios/webview.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/ios/webview.md b/docs/de/edge/guide/platforms/ios/webview.md
index cd991a1..b1eccbf 100644
--- a/docs/de/edge/guide/platforms/ios/webview.md
+++ b/docs/de/edge/guide/platforms/ios/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Webansichten für
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/tizen/index.md b/docs/de/edge/guide/platforms/tizen/index.md
index 20c1629..081a30f 100644
--- a/docs/de/edge/guide/platforms/tizen/index.md
+++ b/docs/de/edge/guide/platforms/tizen/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Tizen Plattform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/ubuntu/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/ubuntu/index.md b/docs/de/edge/guide/platforms/ubuntu/index.md
index fd2e03e..048b1b2 100644
--- a/docs/de/edge/guide/platforms/ubuntu/index.md
+++ b/docs/de/edge/guide/platforms/ubuntu/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Handbuch Ubuntu Plattform
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/win8/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/win8/index.md b/docs/de/edge/guide/platforms/win8/index.md
index c1e2f12..55f0b0b 100644
--- a/docs/de/edge/guide/platforms/win8/index.md
+++ b/docs/de/edge/guide/platforms/win8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Anleitung zur Windows Platform
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/win8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/win8/plugin.md b/docs/de/edge/guide/platforms/win8/plugin.md
index f0b5a8d..db0413d 100644
--- a/docs/de/edge/guide/platforms/win8/plugin.md
+++ b/docs/de/edge/guide/platforms/win8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/win8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/win8/upgrade.md b/docs/de/edge/guide/platforms/win8/upgrade.md
index 775b7e1..e906ac5 100644
--- a/docs/de/edge/guide/platforms/win8/upgrade.md
+++ b/docs/de/edge/guide/platforms/win8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aktualisieren von Windows 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/wp8/index.md b/docs/de/edge/guide/platforms/wp8/index.md
index 37cb55c..4e53f90 100644
--- a/docs/de/edge/guide/platforms/wp8/index.md
+++ b/docs/de/edge/guide/platforms/wp8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Handbuch für die Plattform von Windows Phone-8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/wp8/parallels.md b/docs/de/edge/guide/platforms/wp8/parallels.md
index 0297652..4cda646 100644
--- a/docs/de/edge/guide/platforms/wp8/parallels.md
+++ b/docs/de/edge/guide/platforms/wp8/parallels.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Konfigurieren von Parallels Desktop
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/de/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/de/edge/guide/platforms/wp8/plugin.md b/docs/de/edge/guide/platforms/wp8/plugin.md
index 2fd5fb7..b6d4962 100644
--- a/docs/de/edge/guide/platforms/wp8/plugin.md
+++ b/docs/de/edge/guide/platforms/wp8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-Lizenz: eine oder mehrere Mitwirkende/r Lizenzverträge an die Apache Software Foundation (ASF) lizenziert. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 Plugins
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[11/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.4.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/it/3.4.0/guide/platforms/firefoxos/config.md b/docs/it/3.4.0/guide/platforms/firefoxos/config.md
index 5e70d7e..d5e0b9a 100644
--- a/docs/it/3.4.0/guide/platforms/firefoxos/config.md
+++ b/docs/it/3.4.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configurazione FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.4.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/3.4.0/guide/platforms/wp8/plugin.md b/docs/it/3.4.0/guide/platforms/wp8/plugin.md
index c9e3641..7712f63 100644
--- a/docs/it/3.4.0/guide/platforms/wp8/plugin.md
+++ b/docs/it/3.4.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
--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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.4.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/it/3.4.0/guide/support/index.md b/docs/it/3.4.0/guide/support/index.md
index 8117ed0..a543a28 100644
--- a/docs/it/3.4.0/guide/support/index.md
+++ b/docs/it/3.4.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni della licenza.
-    
+           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.
 ---
 
 # Supporto di piattaforma

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.5.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/it/3.5.0/cordova/plugins/pluginapis.md b/docs/it/3.5.0/cordova/plugins/pluginapis.md
index 752fd2d..180d649 100644
--- a/docs/it/3.5.0/cordova/plugins/pluginapis.md
+++ b/docs/it/3.5.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni
-    
-
-## con la licenza.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.5.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/it/3.5.0/guide/platforms/amazonfireos/index.md b/docs/it/3.5.0/guide/platforms/amazonfireos/index.md
index 7d6aaff..1cd8c8e 100644
--- a/docs/it/3.5.0/guide/platforms/amazonfireos/index.md
+++ b/docs/it/3.5.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni
-    
-
-## con la licenza.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon fuoco piattaforma OS guida
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.5.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/it/3.5.0/guide/platforms/firefoxos/config.md b/docs/it/3.5.0/guide/platforms/firefoxos/config.md
index 5e70d7e..d5e0b9a 100644
--- a/docs/it/3.5.0/guide/platforms/firefoxos/config.md
+++ b/docs/it/3.5.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configurazione FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.5.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/3.5.0/guide/platforms/wp8/plugin.md b/docs/it/3.5.0/guide/platforms/wp8/plugin.md
index c9e3641..7712f63 100644
--- a/docs/it/3.5.0/guide/platforms/wp8/plugin.md
+++ b/docs/it/3.5.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
--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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/3.5.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/it/3.5.0/guide/support/index.md b/docs/it/3.5.0/guide/support/index.md
index 8117ed0..a543a28 100644
--- a/docs/it/3.5.0/guide/support/index.md
+++ b/docs/it/3.5.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni della licenza.
-    
+           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.
 ---
 
 # Supporto di piattaforma

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/config_ref/images.md b/docs/it/edge/config_ref/images.md
index 1cf9100..da1d0d9 100644
--- a/docs/it/edge/config_ref/images.md
+++ b/docs/it/edge/config_ref/images.md
@@ -1,17 +1,21 @@
-* * *
-
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Icone e Splash screen
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/config_ref/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/config_ref/index.md b/docs/it/edge/config_ref/index.md
index 9cbc555..b0d3469 100644
--- a/docs/it/edge/config_ref/index.md
+++ b/docs/it/edge/config_ref/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Il File config. Xml
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.backbutton.md b/docs/it/edge/cordova/events/events.backbutton.md
index 35796f4..dc35708 100644
--- a/docs/it/edge/cordova/events/events.backbutton.md
+++ b/docs/it/edge/cordova/events/events.backbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # backbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.deviceready.md b/docs/it/edge/cordova/events/events.deviceready.md
index 01fe1e1..54bcbcc 100644
--- a/docs/it/edge/cordova/events/events.deviceready.md
+++ b/docs/it/edge/cordova/events/events.deviceready.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # deviceready
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.endcallbutton.md b/docs/it/edge/cordova/events/events.endcallbutton.md
index 04a2d06..c627fd3 100644
--- a/docs/it/edge/cordova/events/events.endcallbutton.md
+++ b/docs/it/edge/cordova/events/events.endcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # endcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.md b/docs/it/edge/cordova/events/events.md
index 06f1c42..288f4d0 100644
--- a/docs/it/edge/cordova/events/events.md
+++ b/docs/it/edge/cordova/events/events.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Eventi
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.menubutton.md b/docs/it/edge/cordova/events/events.menubutton.md
index 0dfe98a..ef15e7d 100644
--- a/docs/it/edge/cordova/events/events.menubutton.md
+++ b/docs/it/edge/cordova/events/events.menubutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # menubutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.pause.md b/docs/it/edge/cordova/events/events.pause.md
index 783c20f..f408f82 100644
--- a/docs/it/edge/cordova/events/events.pause.md
+++ b/docs/it/edge/cordova/events/events.pause.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # pausa
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.resume.md b/docs/it/edge/cordova/events/events.resume.md
index 22329e0..c2a6ff8 100644
--- a/docs/it/edge/cordova/events/events.resume.md
+++ b/docs/it/edge/cordova/events/events.resume.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # curriculum
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.searchbutton.md b/docs/it/edge/cordova/events/events.searchbutton.md
index c83d359..5e40a8d 100644
--- a/docs/it/edge/cordova/events/events.searchbutton.md
+++ b/docs/it/edge/cordova/events/events.searchbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # searchbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.startcallbutton.md b/docs/it/edge/cordova/events/events.startcallbutton.md
index c0ee2e1..7e30a0e 100644
--- a/docs/it/edge/cordova/events/events.startcallbutton.md
+++ b/docs/it/edge/cordova/events/events.startcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # startcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.volumedownbutton.md b/docs/it/edge/cordova/events/events.volumedownbutton.md
index 380757e..7a185c4 100644
--- a/docs/it/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/it/edge/cordova/events/events.volumedownbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumedownbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/events/events.volumeupbutton.md b/docs/it/edge/cordova/events/events.volumeupbutton.md
index f807945..088f8a6 100644
--- a/docs/it/edge/cordova/events/events.volumeupbutton.md
+++ b/docs/it/edge/cordova/events/events.volumeupbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/plugins/pluginapis.md b/docs/it/edge/cordova/plugins/pluginapis.md
index 3ca8531..62bf032 100644
--- a/docs/it/edge/cordova/plugins/pluginapis.md
+++ b/docs/it/edge/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
-* * *
-
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni
-    
-
-## con la licenza.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/cordova/storage/storage.md b/docs/it/edge/cordova/storage/storage.md
index 34efb7c..81de198 100644
--- a/docs/it/edge/cordova/storage/storage.md
+++ b/docs/it/edge/cordova/storage/storage.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Archiviazione
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/appdev/privacy/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/appdev/privacy/index.md b/docs/it/edge/guide/appdev/privacy/index.md
index 2a58825..46ed683 100644
--- a/docs/it/edge/guide/appdev/privacy/index.md
+++ b/docs/it/edge/guide/appdev/privacy/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guida sulla privacy
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/appdev/security/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/appdev/security/index.md b/docs/it/edge/guide/appdev/security/index.md
index c815776..3662bdd 100644
--- a/docs/it/edge/guide/appdev/security/index.md
+++ b/docs/it/edge/guide/appdev/security/index.md
@@ -1,11 +1,21 @@
-* * *
-
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni
-    
-
-## con la licenza.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Guida alla sicurezza
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/appdev/whitelist/index.md b/docs/it/edge/guide/appdev/whitelist/index.md
index 33c207f..86ee754 100644
--- a/docs/it/edge/guide/appdev/whitelist/index.md
+++ b/docs/it/edge/guide/appdev/whitelist/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guida di whitelist
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/cli/index.md b/docs/it/edge/guide/cli/index.md
index 1fea555..2126564 100644
--- a/docs/it/edge/guide/cli/index.md
+++ b/docs/it/edge/guide/cli/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # L'interfaccia della riga di comando
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/hybrid/plugins/index.md b/docs/it/edge/guide/hybrid/plugins/index.md
index fecda93..79ac9f6 100644
--- a/docs/it/edge/guide/hybrid/plugins/index.md
+++ b/docs/it/edge/guide/hybrid/plugins/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guida allo sviluppo di plugin
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/hybrid/webviews/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/hybrid/webviews/index.md b/docs/it/edge/guide/hybrid/webviews/index.md
index 2e4007b..7ec023c 100644
--- a/docs/it/edge/guide/hybrid/webviews/index.md
+++ b/docs/it/edge/guide/hybrid/webviews/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Incorporamento visualizzazioni Web
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/next/index.md b/docs/it/edge/guide/next/index.md
index fdc959f..d795a96 100644
--- a/docs/it/edge/guide/next/index.md
+++ b/docs/it/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Prossimi passi
 
 Per gli sviluppatori che hanno una comprensione di come usare la CLI di Cordova e fare uso di plugin, ci sono alcune cose che si possono prendere in considerazione ricercando accanto a costruire meglio, più performante Cordova applicazioni. Il seguente documento offre consulenza su vari argomenti inerenti alle migliori pratiche, test, aggiornamenti e altri argomenti, ma non vuol essere prescrittiva. Considerare questo tuo punto di lancio per la tua crescita come uno sviluppatore di Cordova. Inoltre, se vedete qualcosa che può essere migliorato, si prega di [contribuire][1]!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/overview/index.md b/docs/it/edge/guide/overview/index.md
index 420475f..a490929 100644
--- a/docs/it/edge/guide/overview/index.md
+++ b/docs/it/edge/guide/overview/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Panoramica
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/amazonfireos/config.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/amazonfireos/config.md b/docs/it/edge/guide/platforms/amazonfireos/config.md
index f0b5da4..a428110 100644
--- a/docs/it/edge/guide/platforms/amazonfireos/config.md
+++ b/docs/it/edge/guide/platforms/amazonfireos/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configurazione di fuoco OS Amazon
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/amazonfireos/index.md b/docs/it/edge/guide/platforms/amazonfireos/index.md
index cf718a3..1efcd06 100644
--- a/docs/it/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/it/edge/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
-* * *
-
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni
-    
-
-## con la licenza.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon fuoco piattaforma OS guida
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/amazonfireos/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/amazonfireos/plugin.md b/docs/it/edge/guide/platforms/amazonfireos/plugin.md
index a1b8e30..6252f88 100644
--- a/docs/it/edge/guide/platforms/amazonfireos/plugin.md
+++ b/docs/it/edge/guide/platforms/amazonfireos/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon fuoco OS Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/amazonfireos/webview.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/amazonfireos/webview.md b/docs/it/edge/guide/platforms/amazonfireos/webview.md
index 3d36c27..233704c 100644
--- a/docs/it/edge/guide/platforms/amazonfireos/webview.md
+++ b/docs/it/edge/guide/platforms/amazonfireos/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon fuoco OS visualizzazioni Web
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/android/config.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/android/config.md b/docs/it/edge/guide/platforms/android/config.md
index f908651..f913eef 100644
--- a/docs/it/edge/guide/platforms/android/config.md
+++ b/docs/it/edge/guide/platforms/android/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configurazione Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/android/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/android/index.md b/docs/it/edge/guide/platforms/android/index.md
index 2532498..8a74d66 100644
--- a/docs/it/edge/guide/platforms/android/index.md
+++ b/docs/it/edge/guide/platforms/android/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guida piattaforma Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/android/plugin.md b/docs/it/edge/guide/platforms/android/plugin.md
index 10b22cf..189da2a 100644
--- a/docs/it/edge/guide/platforms/android/plugin.md
+++ b/docs/it/edge/guide/platforms/android/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugin Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/android/tools.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/android/tools.md b/docs/it/edge/guide/platforms/android/tools.md
index a37999a..e855571 100644
--- a/docs/it/edge/guide/platforms/android/tools.md
+++ b/docs/it/edge/guide/platforms/android/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Shell Android strumento guida
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/android/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/android/upgrade.md b/docs/it/edge/guide/platforms/android/upgrade.md
index 3f00ad9..794ab91 100644
--- a/docs/it/edge/guide/platforms/android/upgrade.md
+++ b/docs/it/edge/guide/platforms/android/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # L'aggiornamento di Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/android/webview.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/android/webview.md b/docs/it/edge/guide/platforms/android/webview.md
index 186fb19..699f07f 100644
--- a/docs/it/edge/guide/platforms/android/webview.md
+++ b/docs/it/edge/guide/platforms/android/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Visualizzazioni Web Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/blackberry/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/blackberry/upgrade.md b/docs/it/edge/guide/platforms/blackberry/upgrade.md
index 0bba43a..3eb743a 100644
--- a/docs/it/edge/guide/platforms/blackberry/upgrade.md
+++ b/docs/it/edge/guide/platforms/blackberry/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # L'aggiornamento di BlackBerry
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/blackberry10/config.md b/docs/it/edge/guide/platforms/blackberry10/config.md
index 203efdf..1ac6324 100644
--- a/docs/it/edge/guide/platforms/blackberry10/config.md
+++ b/docs/it/edge/guide/platforms/blackberry10/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configurazione di blackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/blackberry10/index.md b/docs/it/edge/guide/platforms/blackberry10/index.md
index a5e0166..ca8cdf8 100644
--- a/docs/it/edge/guide/platforms/blackberry10/index.md
+++ b/docs/it/edge/guide/platforms/blackberry10/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guida piattaforma blackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/blackberry10/plugin.md b/docs/it/edge/guide/platforms/blackberry10/plugin.md
index bff3658..d71080b 100644
--- a/docs/it/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/it/edge/guide/platforms/blackberry10/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 plugin
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/blackberry10/tools.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/blackberry10/tools.md b/docs/it/edge/guide/platforms/blackberry10/tools.md
index ed6a87c..e331e9a 100644
--- a/docs/it/edge/guide/platforms/blackberry10/tools.md
+++ b/docs/it/edge/guide/platforms/blackberry10/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 Shell strumento guida
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/blackberry10/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/blackberry10/upgrade.md b/docs/it/edge/guide/platforms/blackberry10/upgrade.md
index 3c42600..b6a2d55 100644
--- a/docs/it/edge/guide/platforms/blackberry10/upgrade.md
+++ b/docs/it/edge/guide/platforms/blackberry10/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # L'aggiornamento di BlackBerry 10
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[03/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.4.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.4.0/guide/platforms/firefoxos/config.md b/docs/zh/3.4.0/guide/platforms/firefoxos/config.md
index dcf3322..c174682 100644
--- a/docs/zh/3.4.0/guide/platforms/firefoxos/config.md
+++ b/docs/zh/3.4.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 配置
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.4.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.4.0/guide/platforms/wp8/plugin.md b/docs/zh/3.4.0/guide/platforms/wp8/plugin.md
index 2a406c1..a42a155 100644
--- a/docs/zh/3.4.0/guide/platforms/wp8/plugin.md
+++ b/docs/zh/3.4.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
-— — 許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone 外掛程式

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.4.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.4.0/guide/support/index.md b/docs/zh/3.4.0/guide/support/index.md
index 7fc1017..08dbcba 100644
--- a/docs/zh/3.4.0/guide/support/index.md
+++ b/docs/zh/3.4.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱支配許可權和許可證下的限制的特定語言的許可證。
-    
+           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.
 ---
 
 # 平臺支援

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.5.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.5.0/cordova/plugins/pluginapis.md b/docs/zh/3.5.0/cordova/plugins/pluginapis.md
index 0aec374..05b3f00 100644
--- a/docs/zh/3.5.0/cordova/plugins/pluginapis.md
+++ b/docs/zh/3.5.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱許可證規定的許可權和限制的特定語言
-    
-
-## 根據許可證。
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 外掛程式的 Api
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.5.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.5.0/guide/platforms/amazonfireos/index.md b/docs/zh/3.5.0/guide/platforms/amazonfireos/index.md
index b946dd5..6813ce2 100644
--- a/docs/zh/3.5.0/guide/platforms/amazonfireos/index.md
+++ b/docs/zh/3.5.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱許可證規定的許可權和限制的特定語言
-    
-
-## 根據許可證。
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 亞馬遜火 OS 平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.5.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.5.0/guide/platforms/firefoxos/config.md b/docs/zh/3.5.0/guide/platforms/firefoxos/config.md
index dcf3322..c174682 100644
--- a/docs/zh/3.5.0/guide/platforms/firefoxos/config.md
+++ b/docs/zh/3.5.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 配置
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.5.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.5.0/guide/platforms/wp8/plugin.md b/docs/zh/3.5.0/guide/platforms/wp8/plugin.md
index 2a406c1..a42a155 100644
--- a/docs/zh/3.5.0/guide/platforms/wp8/plugin.md
+++ b/docs/zh/3.5.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
-— — 許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone 外掛程式

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.5.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.5.0/guide/support/index.md b/docs/zh/3.5.0/guide/support/index.md
index 7fc1017..08dbcba 100644
--- a/docs/zh/3.5.0/guide/support/index.md
+++ b/docs/zh/3.5.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱支配許可權和許可證下的限制的特定語言的許可證。
-    
+           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.
 ---
 
 # 平臺支援

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/config_ref/images.md b/docs/zh/edge/config_ref/images.md
index 66e0071..5190e7e 100644
--- a/docs/zh/edge/config_ref/images.md
+++ b/docs/zh/edge/config_ref/images.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 圖示和啟動畫面
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/config_ref/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/config_ref/index.md b/docs/zh/edge/config_ref/index.md
index 58c2952..10b8d89 100644
--- a/docs/zh/edge/config_ref/index.md
+++ b/docs/zh/edge/config_ref/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Config.xml 檔
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.backbutton.md b/docs/zh/edge/cordova/events/events.backbutton.md
index 28636e9..f20f87d 100644
--- a/docs/zh/edge/cordova/events/events.backbutton.md
+++ b/docs/zh/edge/cordova/events/events.backbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # backbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.deviceready.md b/docs/zh/edge/cordova/events/events.deviceready.md
index bfdc3e7..42fd1a2 100644
--- a/docs/zh/edge/cordova/events/events.deviceready.md
+++ b/docs/zh/edge/cordova/events/events.deviceready.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # deviceready
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.endcallbutton.md b/docs/zh/edge/cordova/events/events.endcallbutton.md
index 8532c2d..33de698 100644
--- a/docs/zh/edge/cordova/events/events.endcallbutton.md
+++ b/docs/zh/edge/cordova/events/events.endcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # endcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.md b/docs/zh/edge/cordova/events/events.md
index ce415c9..4d9b675 100644
--- a/docs/zh/edge/cordova/events/events.md
+++ b/docs/zh/edge/cordova/events/events.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 事件
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.menubutton.md b/docs/zh/edge/cordova/events/events.menubutton.md
index 6aafca6..c1cf05e 100644
--- a/docs/zh/edge/cordova/events/events.menubutton.md
+++ b/docs/zh/edge/cordova/events/events.menubutton.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # menubutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.pause.md b/docs/zh/edge/cordova/events/events.pause.md
index d03124d..9e54b99 100644
--- a/docs/zh/edge/cordova/events/events.pause.md
+++ b/docs/zh/edge/cordova/events/events.pause.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 暫停
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.resume.md b/docs/zh/edge/cordova/events/events.resume.md
index 61b2e92..6568434 100644
--- a/docs/zh/edge/cordova/events/events.resume.md
+++ b/docs/zh/edge/cordova/events/events.resume.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 簡歷
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.searchbutton.md b/docs/zh/edge/cordova/events/events.searchbutton.md
index 8305255..ad44188 100644
--- a/docs/zh/edge/cordova/events/events.searchbutton.md
+++ b/docs/zh/edge/cordova/events/events.searchbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # searchbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.startcallbutton.md b/docs/zh/edge/cordova/events/events.startcallbutton.md
index 2cf1ca7..9c63fc9 100644
--- a/docs/zh/edge/cordova/events/events.startcallbutton.md
+++ b/docs/zh/edge/cordova/events/events.startcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # startcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.volumedownbutton.md b/docs/zh/edge/cordova/events/events.volumedownbutton.md
index 9e48fe4..5aebcc8 100644
--- a/docs/zh/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/zh/edge/cordova/events/events.volumedownbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumedownbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/events/events.volumeupbutton.md b/docs/zh/edge/cordova/events/events.volumeupbutton.md
index dd97012..a84c6e4 100644
--- a/docs/zh/edge/cordova/events/events.volumeupbutton.md
+++ b/docs/zh/edge/cordova/events/events.volumeupbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/plugins/pluginapis.md b/docs/zh/edge/cordova/plugins/pluginapis.md
index 7631b38..e7f3081 100644
--- a/docs/zh/edge/cordova/plugins/pluginapis.md
+++ b/docs/zh/edge/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
-* * *
-
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱許可證規定的許可權和限制的特定語言
-    
-
-## 根據許可證。
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 外掛程式的 Api
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/cordova/storage/storage.md b/docs/zh/edge/cordova/storage/storage.md
index e3043f4..b1e32c8 100644
--- a/docs/zh/edge/cordova/storage/storage.md
+++ b/docs/zh/edge/cordova/storage/storage.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 存儲
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/appdev/privacy/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/appdev/privacy/index.md b/docs/zh/edge/guide/appdev/privacy/index.md
index 8c67f35..603e6d6 100644
--- a/docs/zh/edge/guide/appdev/privacy/index.md
+++ b/docs/zh/edge/guide/appdev/privacy/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 隱私指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/appdev/security/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/appdev/security/index.md b/docs/zh/edge/guide/appdev/security/index.md
index 96bcb7c..0dee521 100644
--- a/docs/zh/edge/guide/appdev/security/index.md
+++ b/docs/zh/edge/guide/appdev/security/index.md
@@ -1,11 +1,21 @@
-* * *
-
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱許可證規定的許可權和限制的特定語言
-    
-
-## 根據許可證。
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 安全指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/appdev/whitelist/index.md b/docs/zh/edge/guide/appdev/whitelist/index.md
index 6fa52ed..de24a61 100644
--- a/docs/zh/edge/guide/appdev/whitelist/index.md
+++ b/docs/zh/edge/guide/appdev/whitelist/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 白名單指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/cli/index.md b/docs/zh/edge/guide/cli/index.md
index 13eaea7..437bcf2 100644
--- a/docs/zh/edge/guide/cli/index.md
+++ b/docs/zh/edge/guide/cli/index.md
@@ -1,18 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # 命令列介面
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/hybrid/plugins/index.md b/docs/zh/edge/guide/hybrid/plugins/index.md
index 80951cf..42cedfe 100644
--- a/docs/zh/edge/guide/hybrid/plugins/index.md
+++ b/docs/zh/edge/guide/hybrid/plugins/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 外掛程式開發指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/hybrid/webviews/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/hybrid/webviews/index.md b/docs/zh/edge/guide/hybrid/webviews/index.md
index 0165181..b5c998f 100644
--- a/docs/zh/edge/guide/hybrid/webviews/index.md
+++ b/docs/zh/edge/guide/hybrid/webviews/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 嵌入 WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/next/index.md b/docs/zh/edge/guide/next/index.md
index cb6666c..7662131 100644
--- a/docs/zh/edge/guide/next/index.md
+++ b/docs/zh/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # 下一步
 
 對於開發人員瞭解如何使用科爾多瓦 CLI 並使使用的外掛程式,有幾件事你可能想要考慮旁邊生成更好、 更多的性能科爾多瓦應用研究。 下面的文檔提供有關的最佳做法、 測試、 升級和其他主題的各種主題的建議,但不是強制性規定。 這考慮您為您作為科爾多瓦的開發人員的增長的啟動點。 同時,如果你看到可以改善的東西,請[作出貢獻][1]!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/overview/index.md b/docs/zh/edge/guide/overview/index.md
index 2130d4d..ae9b156 100644
--- a/docs/zh/edge/guide/overview/index.md
+++ b/docs/zh/edge/guide/overview/index.md
@@ -1,18 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # 概述
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/amazonfireos/config.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/amazonfireos/config.md b/docs/zh/edge/guide/platforms/amazonfireos/config.md
index f4ce0a1..2992432 100644
--- a/docs/zh/edge/guide/platforms/amazonfireos/config.md
+++ b/docs/zh/edge/guide/platforms/amazonfireos/config.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 亞馬遜火 OS 配置
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/amazonfireos/index.md b/docs/zh/edge/guide/platforms/amazonfireos/index.md
index 7005a34..6a4e870 100644
--- a/docs/zh/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/zh/edge/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
-* * *
-
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱許可證規定的許可權和限制的特定語言
-    
-
-## 根據許可證。
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 亞馬遜火 OS 平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/amazonfireos/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/amazonfireos/plugin.md b/docs/zh/edge/guide/platforms/amazonfireos/plugin.md
index 3de8a2f..b463ea9 100644
--- a/docs/zh/edge/guide/platforms/amazonfireos/plugin.md
+++ b/docs/zh/edge/guide/platforms/amazonfireos/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 亞馬遜火 OS 外掛程式
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/amazonfireos/webview.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/amazonfireos/webview.md b/docs/zh/edge/guide/platforms/amazonfireos/webview.md
index 01fc2ae..0821383 100644
--- a/docs/zh/edge/guide/platforms/amazonfireos/webview.md
+++ b/docs/zh/edge/guide/platforms/amazonfireos/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 亞馬遜火 OS WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/android/config.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/android/config.md b/docs/zh/edge/guide/platforms/android/config.md
index 48723dd..80072b2 100644
--- a/docs/zh/edge/guide/platforms/android/config.md
+++ b/docs/zh/edge/guide/platforms/android/config.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android 系統組態
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/android/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/android/index.md b/docs/zh/edge/guide/platforms/android/index.md
index d418013..233d9d9 100644
--- a/docs/zh/edge/guide/platforms/android/index.md
+++ b/docs/zh/edge/guide/platforms/android/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android 平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 71e7b44..df4e9c6 100644
--- a/docs/zh/edge/guide/platforms/android/plugin.md
+++ b/docs/zh/edge/guide/platforms/android/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android 外掛程式
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/android/tools.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/android/tools.md b/docs/zh/edge/guide/platforms/android/tools.md
index d8b4e21..c208d55 100644
--- a/docs/zh/edge/guide/platforms/android/tools.md
+++ b/docs/zh/edge/guide/platforms/android/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android 殼工具指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/android/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/android/upgrade.md b/docs/zh/edge/guide/platforms/android/upgrade.md
index a9ee184..6c956cd 100644
--- a/docs/zh/edge/guide/platforms/android/upgrade.md
+++ b/docs/zh/edge/guide/platforms/android/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 升級 Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/android/webview.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/android/webview.md b/docs/zh/edge/guide/platforms/android/webview.md
index 03abf6a..f7d2e09 100644
--- a/docs/zh/edge/guide/platforms/android/webview.md
+++ b/docs/zh/edge/guide/platforms/android/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/blackberry/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/blackberry/upgrade.md b/docs/zh/edge/guide/platforms/blackberry/upgrade.md
index 071992f..f0afaab 100644
--- a/docs/zh/edge/guide/platforms/blackberry/upgrade.md
+++ b/docs/zh/edge/guide/platforms/blackberry/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 升級黑莓手機
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/blackberry10/config.md b/docs/zh/edge/guide/platforms/blackberry10/config.md
index 62bfbf8..86fe31d 100644
--- a/docs/zh/edge/guide/platforms/blackberry10/config.md
+++ b/docs/zh/edge/guide/platforms/blackberry10/config.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 黑莓 10 配置
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/blackberry10/index.md b/docs/zh/edge/guide/platforms/blackberry10/index.md
index 139a6eb..f41a367 100644
--- a/docs/zh/edge/guide/platforms/blackberry10/index.md
+++ b/docs/zh/edge/guide/platforms/blackberry10/index.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 10 黑莓平臺指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/blackberry10/plugin.md b/docs/zh/edge/guide/platforms/blackberry10/plugin.md
index ad61233..bfcc090 100644
--- a/docs/zh/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/zh/edge/guide/platforms/blackberry10/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 黑莓 10 外掛程式
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/blackberry10/tools.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/blackberry10/tools.md b/docs/zh/edge/guide/platforms/blackberry10/tools.md
index f261d8e..f50b123 100644
--- a/docs/zh/edge/guide/platforms/blackberry10/tools.md
+++ b/docs/zh/edge/guide/platforms/blackberry10/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 黑莓 10 手機殼工具指南
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/edge/guide/platforms/blackberry10/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/zh/edge/guide/platforms/blackberry10/upgrade.md b/docs/zh/edge/guide/platforms/blackberry10/upgrade.md
index 4934b6a..f5eaf27 100644
--- a/docs/zh/edge/guide/platforms/blackberry10/upgrade.md
+++ b/docs/zh/edge/guide/platforms/blackberry10/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-許可證: 根據一個或多個參與者授權合約許可到 Apache 軟體基金會 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 升級黑莓 10
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[14/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.backbutton.md b/docs/es/edge/cordova/events/events.backbutton.md
index 8923bb0..1a3970e 100644
--- a/docs/es/edge/cordova/events/events.backbutton.md
+++ b/docs/es/edge/cordova/events/events.backbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # backbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.deviceready.md b/docs/es/edge/cordova/events/events.deviceready.md
index 0b41375..e83326f 100644
--- a/docs/es/edge/cordova/events/events.deviceready.md
+++ b/docs/es/edge/cordova/events/events.deviceready.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # deviceready
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.endcallbutton.md b/docs/es/edge/cordova/events/events.endcallbutton.md
index 5f515b3..bdb826f 100644
--- a/docs/es/edge/cordova/events/events.endcallbutton.md
+++ b/docs/es/edge/cordova/events/events.endcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # endcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.md b/docs/es/edge/cordova/events/events.md
index c65fd59..8f8943e 100644
--- a/docs/es/edge/cordova/events/events.md
+++ b/docs/es/edge/cordova/events/events.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Eventos
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.menubutton.md b/docs/es/edge/cordova/events/events.menubutton.md
index 447c996..83566d8 100644
--- a/docs/es/edge/cordova/events/events.menubutton.md
+++ b/docs/es/edge/cordova/events/events.menubutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # menubutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.pause.md b/docs/es/edge/cordova/events/events.pause.md
index 856c1cd..3b6916b 100644
--- a/docs/es/edge/cordova/events/events.pause.md
+++ b/docs/es/edge/cordova/events/events.pause.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # pause
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.resume.md b/docs/es/edge/cordova/events/events.resume.md
index 83de63e..7110f0a 100644
--- a/docs/es/edge/cordova/events/events.resume.md
+++ b/docs/es/edge/cordova/events/events.resume.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # resume
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.searchbutton.md b/docs/es/edge/cordova/events/events.searchbutton.md
index a086e65..c891f34 100644
--- a/docs/es/edge/cordova/events/events.searchbutton.md
+++ b/docs/es/edge/cordova/events/events.searchbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # searchbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.startcallbutton.md b/docs/es/edge/cordova/events/events.startcallbutton.md
index 80e9393..afcd7e1 100644
--- a/docs/es/edge/cordova/events/events.startcallbutton.md
+++ b/docs/es/edge/cordova/events/events.startcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # startcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.volumedownbutton.md b/docs/es/edge/cordova/events/events.volumedownbutton.md
index 0b2749c..8681221 100644
--- a/docs/es/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/es/edge/cordova/events/events.volumedownbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumedownbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/events/events.volumeupbutton.md b/docs/es/edge/cordova/events/events.volumeupbutton.md
index 2cf3191..f8340ab 100644
--- a/docs/es/edge/cordova/events/events.volumeupbutton.md
+++ b/docs/es/edge/cordova/events/events.volumeupbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/plugins/pluginapis.md b/docs/es/edge/cordova/plugins/pluginapis.md
index 54a8422..4b2105e 100644
--- a/docs/es/edge/cordova/plugins/pluginapis.md
+++ b/docs/es/edge/cordova/plugins/pluginapis.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugin APIs
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/cordova/storage/storage.md b/docs/es/edge/cordova/storage/storage.md
index 5ee5530..0e110ae 100644
--- a/docs/es/edge/cordova/storage/storage.md
+++ b/docs/es/edge/cordova/storage/storage.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Almacenamiento de información
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/appdev/privacy/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/appdev/privacy/index.md b/docs/es/edge/guide/appdev/privacy/index.md
index f121383..c22de94 100644
--- a/docs/es/edge/guide/appdev/privacy/index.md
+++ b/docs/es/edge/guide/appdev/privacy/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de privacidad
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/appdev/security/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/appdev/security/index.md b/docs/es/edge/guide/appdev/security/index.md
index 456ef92..408f59a 100644
--- a/docs/es/edge/guide/appdev/security/index.md
+++ b/docs/es/edge/guide/appdev/security/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de seguridad
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/appdev/whitelist/index.md b/docs/es/edge/guide/appdev/whitelist/index.md
index 61a1ad2..1c35c12 100644
--- a/docs/es/edge/guide/appdev/whitelist/index.md
+++ b/docs/es/edge/guide/appdev/whitelist/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de lista blanca
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/cli/index.md b/docs/es/edge/guide/cli/index.md
index 2bc8459..2f2ef88 100644
--- a/docs/es/edge/guide/cli/index.md
+++ b/docs/es/edge/guide/cli/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # La interfaz de linea de comandos
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/hybrid/plugins/index.md b/docs/es/edge/guide/hybrid/plugins/index.md
index 386fb52..9910aa3 100644
--- a/docs/es/edge/guide/hybrid/plugins/index.md
+++ b/docs/es/edge/guide/hybrid/plugins/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de desarrollo de plugin
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/hybrid/webviews/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/hybrid/webviews/index.md b/docs/es/edge/guide/hybrid/webviews/index.md
index 4a7c710..646563a 100644
--- a/docs/es/edge/guide/hybrid/webviews/index.md
+++ b/docs/es/edge/guide/hybrid/webviews/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Incrustar WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/next/index.md b/docs/es/edge/guide/next/index.md
index 47a79d8..d4dc041 100644
--- a/docs/es/edge/guide/next/index.md
+++ b/docs/es/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Próximos pasos
 
 Para los desarrolladores que tienen una comprensión de cómo utilizar el CLI Cordova y hacer uso de plugins, hay algunas cosas que usted puede desear considerar investigar junto a construir mejor, más performantes Cordova aplicaciones. El siguiente documento ofrece consejos sobre diversos temas relativos a las mejores prácticas, pruebas, actualizaciones y otros temas, pero no está destinado a ser prescriptivo. Considera esto como su punta de lanza para su crecimiento como desarrollador de Córdoba. Además, si ves algo que se puede mejorar, por favor [contribuir][1]!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/overview/index.md b/docs/es/edge/guide/overview/index.md
index 3bab366..cdc3c99 100644
--- a/docs/es/edge/guide/overview/index.md
+++ b/docs/es/edge/guide/overview/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Resumen
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/amazonfireos/config.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/amazonfireos/config.md b/docs/es/edge/guide/platforms/amazonfireos/config.md
index 95ed6a3..ebd50e6 100644
--- a/docs/es/edge/guide/platforms/amazonfireos/config.md
+++ b/docs/es/edge/guide/platforms/amazonfireos/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon fuego OS configuración
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/amazonfireos/index.md b/docs/es/edge/guide/platforms/amazonfireos/index.md
index 55fca57..b011b03 100644
--- a/docs/es/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/es/edge/guide/platforms/amazonfireos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon fuego OS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/amazonfireos/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/amazonfireos/plugin.md b/docs/es/edge/guide/platforms/amazonfireos/plugin.md
index 46ef00d..e97c367 100644
--- a/docs/es/edge/guide/platforms/amazonfireos/plugin.md
+++ b/docs/es/edge/guide/platforms/amazonfireos/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon fuego OS Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/amazonfireos/webview.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/amazonfireos/webview.md b/docs/es/edge/guide/platforms/amazonfireos/webview.md
index bd0f5a2..83286b1 100644
--- a/docs/es/edge/guide/platforms/amazonfireos/webview.md
+++ b/docs/es/edge/guide/platforms/amazonfireos/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon fuego OS WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/android/config.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/android/config.md b/docs/es/edge/guide/platforms/android/config.md
index 349ce9e..a73cb01 100644
--- a/docs/es/edge/guide/platforms/android/config.md
+++ b/docs/es/edge/guide/platforms/android/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configuración de Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/android/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/android/index.md b/docs/es/edge/guide/platforms/android/index.md
index 6d2760f..eb64d09 100644
--- a/docs/es/edge/guide/platforms/android/index.md
+++ b/docs/es/edge/guide/platforms/android/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de la plataforma Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/android/plugin.md b/docs/es/edge/guide/platforms/android/plugin.md
index 6f84f91..e6e919b 100644
--- a/docs/es/edge/guide/platforms/android/plugin.md
+++ b/docs/es/edge/guide/platforms/android/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/android/tools.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/android/tools.md b/docs/es/edge/guide/platforms/android/tools.md
index 0b1143f..1b39ade 100644
--- a/docs/es/edge/guide/platforms/android/tools.md
+++ b/docs/es/edge/guide/platforms/android/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de herramientas de Shell Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/android/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/android/upgrade.md b/docs/es/edge/guide/platforms/android/upgrade.md
index ed1d046..c44a485 100644
--- a/docs/es/edge/guide/platforms/android/upgrade.md
+++ b/docs/es/edge/guide/platforms/android/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Actualizar Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/android/webview.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/android/webview.md b/docs/es/edge/guide/platforms/android/webview.md
index 2d8c05e..e93ea71 100644
--- a/docs/es/edge/guide/platforms/android/webview.md
+++ b/docs/es/edge/guide/platforms/android/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/blackberry/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/blackberry/upgrade.md b/docs/es/edge/guide/platforms/blackberry/upgrade.md
index d6b478e..fb104e6 100644
--- a/docs/es/edge/guide/platforms/blackberry/upgrade.md
+++ b/docs/es/edge/guide/platforms/blackberry/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Actualizar BlackBerry
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/blackberry10/config.md b/docs/es/edge/guide/platforms/blackberry10/config.md
index 06d2316..45c71e5 100644
--- a/docs/es/edge/guide/platforms/blackberry10/config.md
+++ b/docs/es/edge/guide/platforms/blackberry10/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configuración de BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/blackberry10/index.md b/docs/es/edge/guide/platforms/blackberry10/index.md
index 53a5bb3..d42fdc4 100644
--- a/docs/es/edge/guide/platforms/blackberry10/index.md
+++ b/docs/es/edge/guide/platforms/blackberry10/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de la plataforma BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/blackberry10/plugin.md b/docs/es/edge/guide/platforms/blackberry10/plugin.md
index ad46a29..7813ee7 100644
--- a/docs/es/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/es/edge/guide/platforms/blackberry10/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/blackberry10/tools.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/blackberry10/tools.md b/docs/es/edge/guide/platforms/blackberry10/tools.md
index 0fdba30..5e72811 100644
--- a/docs/es/edge/guide/platforms/blackberry10/tools.md
+++ b/docs/es/edge/guide/platforms/blackberry10/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 Guía de herramientas de Shell
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/blackberry10/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/blackberry10/upgrade.md b/docs/es/edge/guide/platforms/blackberry10/upgrade.md
index e7cbe6a..fdaa805 100644
--- a/docs/es/edge/guide/platforms/blackberry10/upgrade.md
+++ b/docs/es/edge/guide/platforms/blackberry10/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Actualizar BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/firefoxos/config.md b/docs/es/edge/guide/platforms/firefoxos/config.md
index 2e8eff2..c66372d 100644
--- a/docs/es/edge/guide/platforms/firefoxos/config.md
+++ b/docs/es/edge/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuración de FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/firefoxos/index.md b/docs/es/edge/guide/platforms/firefoxos/index.md
index d827a4a..a089e96 100644
--- a/docs/es/edge/guide/platforms/firefoxos/index.md
+++ b/docs/es/edge/guide/platforms/firefoxos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Firefox OS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/index.md b/docs/es/edge/guide/platforms/index.md
index 67755bd..c7c501f 100644
--- a/docs/es/edge/guide/platforms/index.md
+++ b/docs/es/edge/guide/platforms/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guías de plataformas
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/ios/config.md b/docs/es/edge/guide/platforms/ios/config.md
index 8e04bb6..67a9868 100644
--- a/docs/es/edge/guide/platforms/ios/config.md
+++ b/docs/es/edge/guide/platforms/ios/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS configuración
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/ios/index.md b/docs/es/edge/guide/platforms/ios/index.md
index 0f1600c..35160db 100644
--- a/docs/es/edge/guide/platforms/ios/index.md
+++ b/docs/es/edge/guide/platforms/ios/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/ios/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/ios/plugin.md b/docs/es/edge/guide/platforms/ios/plugin.md
index dc0eb3b..932cccf 100644
--- a/docs/es/edge/guide/platforms/ios/plugin.md
+++ b/docs/es/edge/guide/platforms/ios/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/ios/tools.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/ios/tools.md b/docs/es/edge/guide/platforms/ios/tools.md
index ecc4dcd..4349896 100644
--- a/docs/es/edge/guide/platforms/ios/tools.md
+++ b/docs/es/edge/guide/platforms/ios/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Guía de herramientas de Shell
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/ios/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/ios/upgrade.md b/docs/es/edge/guide/platforms/ios/upgrade.md
index 3d478ad..3c47ac3 100644
--- a/docs/es/edge/guide/platforms/ios/upgrade.md
+++ b/docs/es/edge/guide/platforms/ios/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Actualizar iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/ios/webview.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/ios/webview.md b/docs/es/edge/guide/platforms/ios/webview.md
index f14eebe..29129e9 100644
--- a/docs/es/edge/guide/platforms/ios/webview.md
+++ b/docs/es/edge/guide/platforms/ios/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/tizen/index.md b/docs/es/edge/guide/platforms/tizen/index.md
index cb22ed3..95df01d 100644
--- a/docs/es/edge/guide/platforms/tizen/index.md
+++ b/docs/es/edge/guide/platforms/tizen/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de la plataforma Tizen
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/ubuntu/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/ubuntu/index.md b/docs/es/edge/guide/platforms/ubuntu/index.md
index b1740da..5b4de28 100644
--- a/docs/es/edge/guide/platforms/ubuntu/index.md
+++ b/docs/es/edge/guide/platforms/ubuntu/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de la plataforma de Ubuntu
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[09/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.searchbutton.md b/docs/ja/edge/cordova/events/events.searchbutton.md
index edb44a1..2e0ff63 100644
--- a/docs/ja/edge/cordova/events/events.searchbutton.md
+++ b/docs/ja/edge/cordova/events/events.searchbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # searchbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.startcallbutton.md b/docs/ja/edge/cordova/events/events.startcallbutton.md
index e3c7ff0..4d13a5f 100644
--- a/docs/ja/edge/cordova/events/events.startcallbutton.md
+++ b/docs/ja/edge/cordova/events/events.startcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # startcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.volumedownbutton.md b/docs/ja/edge/cordova/events/events.volumedownbutton.md
index e0ca698..abcc892 100644
--- a/docs/ja/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/ja/edge/cordova/events/events.volumedownbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumedownbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.volumeupbutton.md b/docs/ja/edge/cordova/events/events.volumeupbutton.md
index abd9297..4396bc5 100644
--- a/docs/ja/edge/cordova/events/events.volumeupbutton.md
+++ b/docs/ja/edge/cordova/events/events.volumeupbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 6acc7ff..2b91249 100644
--- a/docs/ja/edge/cordova/plugins/pluginapis.md
+++ b/docs/ja/edge/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ライセンスの下で配布されるソフトウェアで配布されて適用される法律によって必要なまたは書面で合意した、しない限り、"AS IS"なしの保証または条件、いかなる種類の明示的または黙示的、基礎。  アクセス許可と制限を支配する特定の言語用のライセンスを参照してください。
-    
-
-## ライセンス。
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # プラグイン Api
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/storage/storage.md b/docs/ja/edge/cordova/storage/storage.md
index 9f6b9f4..52b4ea9 100644
--- a/docs/ja/edge/cordova/storage/storage.md
+++ b/docs/ja/edge/cordova/storage/storage.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # ストレージ
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/appdev/privacy/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/appdev/privacy/index.md b/docs/ja/edge/guide/appdev/privacy/index.md
index f6e3908..fb7d723 100644
--- a/docs/ja/edge/guide/appdev/privacy/index.md
+++ b/docs/ja/edge/guide/appdev/privacy/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # プライバシー ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/appdev/security/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/appdev/security/index.md b/docs/ja/edge/guide/appdev/security/index.md
index c2d6252..b1169de 100644
--- a/docs/ja/edge/guide/appdev/security/index.md
+++ b/docs/ja/edge/guide/appdev/security/index.md
@@ -1,11 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ソフトウェア ライセンスの下で配布で配布されて適用される法律によって必要なまたは書面で合意した、しない限り、「そのまま」なし保証またはいかなる種類の保証、明示または黙示を問わず、基礎。  アクセス許可と制限を支配する特定の言語用のライセンスを参照してください。
-    
-
-## ライセンス。
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # セキュリティ ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 438728a..17f51a3 100644
--- a/docs/ja/edge/guide/appdev/whitelist/index.md
+++ b/docs/ja/edge/guide/appdev/whitelist/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # ホワイト リスト ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/cli/index.md b/docs/ja/edge/guide/cli/index.md
index a28a678..34fdde3 100644
--- a/docs/ja/edge/guide/cli/index.md
+++ b/docs/ja/edge/guide/cli/index.md
@@ -1,18 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # コマンド ライン インターフェイス
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 75403d5..5f90716 100644
--- a/docs/ja/edge/guide/hybrid/plugins/index.md
+++ b/docs/ja/edge/guide/hybrid/plugins/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # プラグイン開発ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 47d68cd..ecc77f5 100644
--- a/docs/ja/edge/guide/hybrid/webviews/index.md
+++ b/docs/ja/edge/guide/hybrid/webviews/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 埋め込み web 表示
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/next/index.md b/docs/ja/edge/guide/next/index.md
index d06499a..f6a5f5d 100644
--- a/docs/ja/edge/guide/next/index.md
+++ b/docs/ja/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # 次のステップ
 
 コルドバ CLI を使用する方法を理解している開発者のためのプラグインを使用して、ビルドより良いよりパフォーマンスの高い Cordova アプリの横にある調査を考慮したいと思うことがありますいくつかのものがあります。 次のドキュメントはベスト ・ プラクティス、テスト、アップグレード、およびその他のトピックに関連するさまざまなトピックについてのアドバイスを提供していますが、規範的なものではありません。 このコルドバ開発者としてあなたの成長のためのあなたの起動ポイントを検討します。 また、改善することができます何かを見る場合は[貢献][1]してください。!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/overview/index.md b/docs/ja/edge/guide/overview/index.md
index a7e496d..8c025af 100644
--- a/docs/ja/edge/guide/overview/index.md
+++ b/docs/ja/edge/guide/overview/index.md
@@ -1,18 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # 概要
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/amazonfireos/config.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/amazonfireos/config.md b/docs/ja/edge/guide/platforms/amazonfireos/config.md
index 552d015..8dfe783 100644
--- a/docs/ja/edge/guide/platforms/amazonfireos/config.md
+++ b/docs/ja/edge/guide/platforms/amazonfireos/config.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # アマゾン火 OS 構成
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/amazonfireos/index.md b/docs/ja/edge/guide/platforms/amazonfireos/index.md
index 3181130..8b1993d 100644
--- a/docs/ja/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/ja/edge/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ライセンスの下で配布されるソフトウェアで配布されて適用される法律によって必要なまたは書面で合意した、しない限り、"AS IS"なしの保証または条件、いかなる種類の明示的または黙示的、基礎。  アクセス許可と制限を支配する特定の言語用のライセンスを参照してください。
-    
-
-## ライセンス。
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # アマゾン火 OS プラットフォーム ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/amazonfireos/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/amazonfireos/plugin.md b/docs/ja/edge/guide/platforms/amazonfireos/plugin.md
index fc87fad..fe31de3 100644
--- a/docs/ja/edge/guide/platforms/amazonfireos/plugin.md
+++ b/docs/ja/edge/guide/platforms/amazonfireos/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # アマゾン火 OS プラグイン
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/amazonfireos/webview.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/amazonfireos/webview.md b/docs/ja/edge/guide/platforms/amazonfireos/webview.md
index e6ca830..392373c 100644
--- a/docs/ja/edge/guide/platforms/amazonfireos/webview.md
+++ b/docs/ja/edge/guide/platforms/amazonfireos/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # アマゾン火 OS web 表示
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/android/config.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/android/config.md b/docs/ja/edge/guide/platforms/android/config.md
index 47a2673..b11394a 100644
--- a/docs/ja/edge/guide/platforms/android/config.md
+++ b/docs/ja/edge/guide/platforms/android/config.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android の構成
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/android/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/android/index.md b/docs/ja/edge/guide/platforms/android/index.md
index 25e6ae7..0b0aada 100644
--- a/docs/ja/edge/guide/platforms/android/index.md
+++ b/docs/ja/edge/guide/platforms/android/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android プラットフォーム ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 78e76a4..fb8f7b4 100644
--- a/docs/ja/edge/guide/platforms/android/plugin.md
+++ b/docs/ja/edge/guide/platforms/android/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android のプラグイン
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/android/tools.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/android/tools.md b/docs/ja/edge/guide/platforms/android/tools.md
index ff60d8d..ed9c668 100644
--- a/docs/ja/edge/guide/platforms/android/tools.md
+++ b/docs/ja/edge/guide/platforms/android/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # アンドロイド シェル ツール ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/android/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/android/upgrade.md b/docs/ja/edge/guide/platforms/android/upgrade.md
index 8c784ed..640044f 100644
--- a/docs/ja/edge/guide/platforms/android/upgrade.md
+++ b/docs/ja/edge/guide/platforms/android/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android のアップグレード
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/android/webview.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/android/webview.md b/docs/ja/edge/guide/platforms/android/webview.md
index 5b7cb5d..437e94a 100644
--- a/docs/ja/edge/guide/platforms/android/webview.md
+++ b/docs/ja/edge/guide/platforms/android/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android の web 表示
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/blackberry/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/blackberry/upgrade.md b/docs/ja/edge/guide/platforms/blackberry/upgrade.md
index 5b3d25e..ad414de 100644
--- a/docs/ja/edge/guide/platforms/blackberry/upgrade.md
+++ b/docs/ja/edge/guide/platforms/blackberry/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # ブラックベリーのアップグレード
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/blackberry10/config.md b/docs/ja/edge/guide/platforms/blackberry10/config.md
index a08116d..9f3b93d 100644
--- a/docs/ja/edge/guide/platforms/blackberry10/config.md
+++ b/docs/ja/edge/guide/platforms/blackberry10/config.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # ブラックベリー 10 構成
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/blackberry10/index.md b/docs/ja/edge/guide/platforms/blackberry10/index.md
index 5e9b0c6..f72e087 100644
--- a/docs/ja/edge/guide/platforms/blackberry10/index.md
+++ b/docs/ja/edge/guide/platforms/blackberry10/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # BlackBerry 10 プラットフォーム ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/blackberry10/plugin.md b/docs/ja/edge/guide/platforms/blackberry10/plugin.md
index 64a05df..50966c7 100644
--- a/docs/ja/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/ja/edge/guide/platforms/blackberry10/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # ブラックベリー 10 プラグイン
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/blackberry10/tools.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/blackberry10/tools.md b/docs/ja/edge/guide/platforms/blackberry10/tools.md
index 5b0f268..d045119 100644
--- a/docs/ja/edge/guide/platforms/blackberry10/tools.md
+++ b/docs/ja/edge/guide/platforms/blackberry10/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # ブラックベリー 10 シェル ツール ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/blackberry10/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/blackberry10/upgrade.md b/docs/ja/edge/guide/platforms/blackberry10/upgrade.md
index 4efb3bb..f0d03d9 100644
--- a/docs/ja/edge/guide/platforms/blackberry10/upgrade.md
+++ b/docs/ja/edge/guide/platforms/blackberry10/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # ブラックベリー 10 のアップグレード
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/firefoxos/config.md b/docs/ja/edge/guide/platforms/firefoxos/config.md
index 91cedd2..03174d6 100644
--- a/docs/ja/edge/guide/platforms/firefoxos/config.md
+++ b/docs/ja/edge/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 構成
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/firefoxos/index.md b/docs/ja/edge/guide/platforms/firefoxos/index.md
index 954db97..aa56d1c 100644
--- a/docs/ja/edge/guide/platforms/firefoxos/index.md
+++ b/docs/ja/edge/guide/platforms/firefoxos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Firefox の OS プラットフォームのガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 37b27fc..2a86185 100644
--- a/docs/ja/edge/guide/platforms/index.md
+++ b/docs/ja/edge/guide/platforms/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # プラットフォームのガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/ios/config.md b/docs/ja/edge/guide/platforms/ios/config.md
index ce2a25c..3acf99e 100644
--- a/docs/ja/edge/guide/platforms/ios/config.md
+++ b/docs/ja/edge/guide/platforms/ios/config.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS 構成
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/ios/index.md b/docs/ja/edge/guide/platforms/ios/index.md
index 48e772b..dda7422 100644
--- a/docs/ja/edge/guide/platforms/ios/index.md
+++ b/docs/ja/edge/guide/platforms/ios/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS プラットフォーム ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 4ba5ddd..4070c2d 100644
--- a/docs/ja/edge/guide/platforms/ios/plugin.md
+++ b/docs/ja/edge/guide/platforms/ios/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS のプラグイン
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/ios/tools.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/ios/tools.md b/docs/ja/edge/guide/platforms/ios/tools.md
index a13707b..c374ea8 100644
--- a/docs/ja/edge/guide/platforms/ios/tools.md
+++ b/docs/ja/edge/guide/platforms/ios/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS シェル ツール ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/ios/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/ios/upgrade.md b/docs/ja/edge/guide/platforms/ios/upgrade.md
index ed21aab..0824ceb 100644
--- a/docs/ja/edge/guide/platforms/ios/upgrade.md
+++ b/docs/ja/edge/guide/platforms/ios/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # IOS のアップグレード
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/ios/webview.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/ios/webview.md b/docs/ja/edge/guide/platforms/ios/webview.md
index 4fa93ac..98f1fd3 100644
--- a/docs/ja/edge/guide/platforms/ios/webview.md
+++ b/docs/ja/edge/guide/platforms/ios/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS の web 表示
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/tizen/index.md b/docs/ja/edge/guide/platforms/tizen/index.md
index 2a897cb..d40f47e 100644
--- a/docs/ja/edge/guide/platforms/tizen/index.md
+++ b/docs/ja/edge/guide/platforms/tizen/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Tizen プラットフォーム ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/ubuntu/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/ubuntu/index.md b/docs/ja/edge/guide/platforms/ubuntu/index.md
index 2f84866..78c5f98 100644
--- a/docs/ja/edge/guide/platforms/ubuntu/index.md
+++ b/docs/ja/edge/guide/platforms/ubuntu/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Ubuntu プラットフォーム ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/win8/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/win8/index.md b/docs/ja/edge/guide/platforms/win8/index.md
index 8d5f808..1c37fba 100644
--- a/docs/ja/edge/guide/platforms/win8/index.md
+++ b/docs/ja/edge/guide/platforms/win8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows プラットフォームのガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 761eddf..0da5c87 100644
--- a/docs/ja/edge/guide/platforms/win8/plugin.md
+++ b/docs/ja/edge/guide/platforms/win8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows のプラグイン
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/win8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/win8/upgrade.md b/docs/ja/edge/guide/platforms/win8/upgrade.md
index c58305a..ed181f0 100644
--- a/docs/ja/edge/guide/platforms/win8/upgrade.md
+++ b/docs/ja/edge/guide/platforms/win8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows 8 アップグレード
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 e5b9f28..183b97c 100644
--- a/docs/ja/edge/guide/platforms/wp8/index.md
+++ b/docs/ja/edge/guide/platforms/wp8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 プラットフォーム ガイド
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[08/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/wp8/parallels.md b/docs/ja/edge/guide/platforms/wp8/parallels.md
index 51d0e82..6c21e62 100644
--- a/docs/ja/edge/guide/platforms/wp8/parallels.md
+++ b/docs/ja/edge/guide/platforms/wp8/parallels.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 平行線デスクトップを構成します。
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/wp8/plugin.md b/docs/ja/edge/guide/platforms/wp8/plugin.md
index af4804a..bf7f9c6 100644
--- a/docs/ja/edge/guide/platforms/wp8/plugin.md
+++ b/docs/ja/edge/guide/platforms/wp8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 プラグイン
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/wp8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/wp8/upgrade.md b/docs/ja/edge/guide/platforms/wp8/upgrade.md
index 0ef8e08..5aba572 100644
--- a/docs/ja/edge/guide/platforms/wp8/upgrade.md
+++ b/docs/ja/edge/guide/platforms/wp8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 See the NOTICE file distributed with this work for additional information regarding copyright ownership. ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 をアップグレードします。
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/platforms/wp8/vmware.md b/docs/ja/edge/guide/platforms/wp8/vmware.md
index d0c45aa..6d96b4a 100644
--- a/docs/ja/edge/guide/platforms/wp8/vmware.md
+++ b/docs/ja/edge/guide/platforms/wp8/vmware.md
@@ -1,11 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ソフトウェア ライセンスの下で配布で配布されて適用される法律によって必要なまたは書面で合意した、しない限り、「そのまま」なし保証またはいかなる種類の保証、明示または黙示を問わず、基礎。  アクセス許可と制限を支配する特定の言語用のライセンスを参照してください。
-    
-
-## ライセンス。
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # VMWare Fusion の構成
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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
index ef7a988..c6ddf4b 100644
--- a/docs/ja/edge/guide/platforms/wp8/webview.md
+++ b/docs/ja/edge/guide/platforms/wp8/webview.md
@@ -1,18 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Windows Phone 8.0 web 表示
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/guide/support/index.md b/docs/ja/edge/guide/support/index.md
index 3120f1e..b17eb31 100644
--- a/docs/ja/edge/guide/support/index.md
+++ b/docs/ja/edge/guide/support/index.md
@@ -1,11 +1,21 @@
-* * *
+---
+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
 
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
+           http://www.apache.org/licenses/LICENSE-2.0
 
-           http://www.apache.org/licenses/LICENSE-2.0 ライセンスの下で配布されるソフトウェアで配布されて適用される法律によって必要なまたは書面で合意した、しない限り、"AS IS"なしの保証または条件、いかなる種類の明示的または黙示的、基礎。  ライセンス ライセンスにおける権限と制限を支配する特定の言語を参照してください。
-    
-
-* * *
+         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.
+---
 
 # プラットフォームのサポート
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/index.md b/docs/ja/edge/index.md
index ed5ec7c..22ac18f 100644
--- a/docs/ja/edge/index.md
+++ b/docs/ja/edge/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 <div id="home">
   <h1>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/plugin_ref/plugman.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/plugin_ref/plugman.md b/docs/ja/edge/plugin_ref/plugman.md
index 2c62eee..904fc4c 100644
--- a/docs/ja/edge/plugin_ref/plugman.md
+++ b/docs/ja/edge/plugin_ref/plugman.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugman を使用してプラグインを管理するには
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/plugin_ref/spec.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/plugin_ref/spec.md b/docs/ja/edge/plugin_ref/spec.md
index 5473f9b..2b97bfe 100644
--- a/docs/ja/edge/plugin_ref/spec.md
+++ b/docs/ja/edge/plugin_ref/spec.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # プラグイン仕様
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.1.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.1.0/guide/platforms/firefoxos/config.md b/docs/ko/3.1.0/guide/platforms/firefoxos/config.md
index 41a193e..ac025e8 100644
--- a/docs/ko/3.1.0/guide/platforms/firefoxos/config.md
+++ b/docs/ko/3.1.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 구성
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.4.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.4.0/cordova/plugins/pluginapis.md b/docs/ko/3.4.0/cordova/plugins/pluginapis.md
index 24d1f8b..fba8bbd 100644
--- a/docs/ko/3.4.0/cordova/plugins/pluginapis.md
+++ b/docs/ko/3.4.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. NOTICE 파일 저작권 소유권에 관한 자세한 내용은이 작업 배포를 참조 하십시오. ASF 라이센스 아파치 라이센스 버전 2.0 ("라이센스");이 파일 당신이 라이선스 준수를 제외 하 고이 파일을 사용할 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  라이센스 권한 및 제한 적용 되는 특정 언어에 대 한 참조
-    
-
-## 라이센스.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 플러그인 Api
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.4.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.4.0/guide/platforms/amazonfireos/index.md b/docs/ko/3.4.0/guide/platforms/amazonfireos/index.md
index ac74489..ee1823f 100644
--- a/docs/ko/3.4.0/guide/platforms/amazonfireos/index.md
+++ b/docs/ko/3.4.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. NOTICE 파일 저작권 소유권에 관한 자세한 내용은이 작업 배포를 참조 하십시오. ASF 라이센스 아파치 라이센스 버전 2.0 ("라이센스");이 파일 당신이 라이선스 준수를 제외 하 고이 파일을 사용할 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  라이센스 권한 및 제한 적용 되는 특정 언어에 대 한 참조
-    
-
-## 라이센스.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 아마존 화재 OS 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.4.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.4.0/guide/platforms/firefoxos/config.md b/docs/ko/3.4.0/guide/platforms/firefoxos/config.md
index 41a193e..ac025e8 100644
--- a/docs/ko/3.4.0/guide/platforms/firefoxos/config.md
+++ b/docs/ko/3.4.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 구성
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.4.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.4.0/guide/platforms/wp8/plugin.md b/docs/ko/3.4.0/guide/platforms/wp8/plugin.md
index 6f59548..329c6de 100644
--- a/docs/ko/3.4.0/guide/platforms/wp8/plugin.md
+++ b/docs/ko/3.4.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
--라이센스: 아파치 소프트웨어 재단 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone 플러그인

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.4.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.4.0/guide/support/index.md b/docs/ko/3.4.0/guide/support/index.md
index cda5a82..06e7b42 100644
--- a/docs/ko/3.4.0/guide/support/index.md
+++ b/docs/ko/3.4.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. NOTICE 파일 저작권 소유권에 관한 자세한 내용은이 작업 배포를 참조 하십시오. ASF 라이센스 아파치 라이센스 버전 2.0 ("라이센스");이 파일 당신이 라이선스 준수를 제외 하 고이 파일을 사용할 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  사용 권한 및 라이센스 제한 적용 되는 특정 언어에 대 한 라이센스를 참조 하십시오.
-    
+           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.
 ---
 
 # 플랫폼 지원

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.5.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.5.0/cordova/plugins/pluginapis.md b/docs/ko/3.5.0/cordova/plugins/pluginapis.md
index 24d1f8b..fba8bbd 100644
--- a/docs/ko/3.5.0/cordova/plugins/pluginapis.md
+++ b/docs/ko/3.5.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. NOTICE 파일 저작권 소유권에 관한 자세한 내용은이 작업 배포를 참조 하십시오. ASF 라이센스 아파치 라이센스 버전 2.0 ("라이센스");이 파일 당신이 라이선스 준수를 제외 하 고이 파일을 사용할 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  라이센스 권한 및 제한 적용 되는 특정 언어에 대 한 참조
-    
-
-## 라이센스.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 플러그인 Api
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.5.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.5.0/guide/platforms/amazonfireos/index.md b/docs/ko/3.5.0/guide/platforms/amazonfireos/index.md
index ac74489..ee1823f 100644
--- a/docs/ko/3.5.0/guide/platforms/amazonfireos/index.md
+++ b/docs/ko/3.5.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. NOTICE 파일 저작권 소유권에 관한 자세한 내용은이 작업 배포를 참조 하십시오. ASF 라이센스 아파치 라이센스 버전 2.0 ("라이센스");이 파일 당신이 라이선스 준수를 제외 하 고이 파일을 사용할 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  라이센스 권한 및 제한 적용 되는 특정 언어에 대 한 참조
-    
-
-## 라이센스.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 아마존 화재 OS 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.5.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.5.0/guide/platforms/firefoxos/config.md b/docs/ko/3.5.0/guide/platforms/firefoxos/config.md
index 41a193e..ac025e8 100644
--- a/docs/ko/3.5.0/guide/platforms/firefoxos/config.md
+++ b/docs/ko/3.5.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 구성
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.5.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.5.0/guide/platforms/wp8/plugin.md b/docs/ko/3.5.0/guide/platforms/wp8/plugin.md
index 6f59548..329c6de 100644
--- a/docs/ko/3.5.0/guide/platforms/wp8/plugin.md
+++ b/docs/ko/3.5.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
--라이센스: 아파치 소프트웨어 재단 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone 플러그인

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/3.5.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/3.5.0/guide/support/index.md b/docs/ko/3.5.0/guide/support/index.md
index cda5a82..06e7b42 100644
--- a/docs/ko/3.5.0/guide/support/index.md
+++ b/docs/ko/3.5.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. NOTICE 파일 저작권 소유권에 관한 자세한 내용은이 작업 배포를 참조 하십시오. ASF 라이센스 아파치 라이센스 버전 2.0 ("라이센스");이 파일 당신이 라이선스 준수를 제외 하 고이 파일을 사용할 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  사용 권한 및 라이센스 제한 적용 되는 특정 언어에 대 한 라이센스를 참조 하십시오.
-    
+           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.
 ---
 
 # 플랫폼 지원

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/config_ref/images.md b/docs/ko/edge/config_ref/images.md
index 405a223..32b0094 100644
--- a/docs/ko/edge/config_ref/images.md
+++ b/docs/ko/edge/config_ref/images.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 아이콘 및 시작 화면
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/config_ref/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/config_ref/index.md b/docs/ko/edge/config_ref/index.md
index e4b4440..3c38a11 100644
--- a/docs/ko/edge/config_ref/index.md
+++ b/docs/ko/edge/config_ref/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Config.xml 파일
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.backbutton.md b/docs/ko/edge/cordova/events/events.backbutton.md
index 450c5ac..c0736b9 100644
--- a/docs/ko/edge/cordova/events/events.backbutton.md
+++ b/docs/ko/edge/cordova/events/events.backbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # backbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.deviceready.md b/docs/ko/edge/cordova/events/events.deviceready.md
index d1adec8..cabd53f 100644
--- a/docs/ko/edge/cordova/events/events.deviceready.md
+++ b/docs/ko/edge/cordova/events/events.deviceready.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # deviceready
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.endcallbutton.md b/docs/ko/edge/cordova/events/events.endcallbutton.md
index 44f7bd6..e8c3f97 100644
--- a/docs/ko/edge/cordova/events/events.endcallbutton.md
+++ b/docs/ko/edge/cordova/events/events.endcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # endcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.md b/docs/ko/edge/cordova/events/events.md
index 8182392..daf6e95 100644
--- a/docs/ko/edge/cordova/events/events.md
+++ b/docs/ko/edge/cordova/events/events.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 이벤트
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.menubutton.md b/docs/ko/edge/cordova/events/events.menubutton.md
index 2591ac6..e7ff5dc 100644
--- a/docs/ko/edge/cordova/events/events.menubutton.md
+++ b/docs/ko/edge/cordova/events/events.menubutton.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # menubutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.pause.md b/docs/ko/edge/cordova/events/events.pause.md
index 61b052a..da7fbeb 100644
--- a/docs/ko/edge/cordova/events/events.pause.md
+++ b/docs/ko/edge/cordova/events/events.pause.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 일시 중지
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.resume.md b/docs/ko/edge/cordova/events/events.resume.md
index 4b523ad..68c9de6 100644
--- a/docs/ko/edge/cordova/events/events.resume.md
+++ b/docs/ko/edge/cordova/events/events.resume.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 이력서
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.searchbutton.md b/docs/ko/edge/cordova/events/events.searchbutton.md
index 52a1f55..6cce6de 100644
--- a/docs/ko/edge/cordova/events/events.searchbutton.md
+++ b/docs/ko/edge/cordova/events/events.searchbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # searchbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.startcallbutton.md b/docs/ko/edge/cordova/events/events.startcallbutton.md
index 0f2cca1..80db794 100644
--- a/docs/ko/edge/cordova/events/events.startcallbutton.md
+++ b/docs/ko/edge/cordova/events/events.startcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # startcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.volumedownbutton.md b/docs/ko/edge/cordova/events/events.volumedownbutton.md
index 315f26f..e4e8e4c 100644
--- a/docs/ko/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/ko/edge/cordova/events/events.volumedownbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumedownbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/events/events.volumeupbutton.md b/docs/ko/edge/cordova/events/events.volumeupbutton.md
index 34e5edf..23ccde3 100644
--- a/docs/ko/edge/cordova/events/events.volumeupbutton.md
+++ b/docs/ko/edge/cordova/events/events.volumeupbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 c952659..2519071 100644
--- a/docs/ko/edge/cordova/plugins/pluginapis.md
+++ b/docs/ko/edge/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  라이센스 권한 및 제한 적용 되는 특정 언어에 대 한 참조
-    
-
-## 라이센스.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 플러그인 Api
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/cordova/storage/storage.md b/docs/ko/edge/cordova/storage/storage.md
index 6388ddb..98b0ba3 100644
--- a/docs/ko/edge/cordova/storage/storage.md
+++ b/docs/ko/edge/cordova/storage/storage.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 스토리지
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/appdev/privacy/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/appdev/privacy/index.md b/docs/ko/edge/guide/appdev/privacy/index.md
index e82f05d..f4c40c9 100644
--- a/docs/ko/edge/guide/appdev/privacy/index.md
+++ b/docs/ko/edge/guide/appdev/privacy/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 개인 정보 보호 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/appdev/security/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/appdev/security/index.md b/docs/ko/edge/guide/appdev/security/index.md
index ad9201d..2d5b65d 100644
--- a/docs/ko/edge/guide/appdev/security/index.md
+++ b/docs/ko/edge/guide/appdev/security/index.md
@@ -1,11 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  라이센스 권한 및 제한 적용 되는 특정 언어에 대 한 참조
-    
-
-## 라이센스.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 보안 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 67c3389..3c3ce74 100644
--- a/docs/ko/edge/guide/appdev/whitelist/index.md
+++ b/docs/ko/edge/guide/appdev/whitelist/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 화이트 리스트 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/cli/index.md b/docs/ko/edge/guide/cli/index.md
index 7cd7fc5..2f3d493 100644
--- a/docs/ko/edge/guide/cli/index.md
+++ b/docs/ko/edge/guide/cli/index.md
@@ -1,18 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # 명령줄 인터페이스
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 ae70ebc..9c2557b 100644
--- a/docs/ko/edge/guide/hybrid/plugins/index.md
+++ b/docs/ko/edge/guide/hybrid/plugins/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 플러그인 개발 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 41313aa..12c3c6d 100644
--- a/docs/ko/edge/guide/hybrid/webviews/index.md
+++ b/docs/ko/edge/guide/hybrid/webviews/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # WebViews 포함
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/next/index.md b/docs/ko/edge/guide/next/index.md
index dd35f58..f0ac679 100644
--- a/docs/ko/edge/guide/next/index.md
+++ b/docs/ko/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # 다음 단계
 
 코르 도우 바 CLI를 사용 하는 방법에 대 한 이해는 개발자를 위한 플러그인의 사용, 거기에 몇 가지 빌드 더 나은, 더 performant 코르도바 응용 프로그램 옆에 있는 연구를 고려 하고자 할 수 있습니다. 다음 문서 우수 사례, 테스트, 업그레이드 및 다른 주제에 관련 된 다양 한 주제에 대 한 조언을 제공 하지만 규정 하는 것은 아닙니다. 코르 도우 바 개발자로 성장에 대 한 당신의 출발점 고려. 또한, 만약 당신이 향상 시킬 수 있는 무언가 보고, 하시기 바랍니다 [기여][1]!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/overview/index.md b/docs/ko/edge/guide/overview/index.md
index c938c61..80fdde2 100644
--- a/docs/ko/edge/guide/overview/index.md
+++ b/docs/ko/edge/guide/overview/index.md
@@ -1,18 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # 개요
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/amazonfireos/config.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/amazonfireos/config.md b/docs/ko/edge/guide/platforms/amazonfireos/config.md
index c8d53d7..7be6ad5 100644
--- a/docs/ko/edge/guide/platforms/amazonfireos/config.md
+++ b/docs/ko/edge/guide/platforms/amazonfireos/config.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 아마존 화재 운영 체제 구성
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/amazonfireos/index.md b/docs/ko/edge/guide/platforms/amazonfireos/index.md
index 9fa610e..14676b7 100644
--- a/docs/ko/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/ko/edge/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  라이센스 권한 및 제한 적용 되는 특정 언어에 대 한 참조
-    
-
-## 라이센스.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 아마존 화재 OS 플랫폼 가이드
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[04/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/android/webview.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/android/webview.md b/docs/ru/edge/guide/platforms/android/webview.md
index 3e23a1e..1b6f412 100644
--- a/docs/ru/edge/guide/platforms/android/webview.md
+++ b/docs/ru/edge/guide/platforms/android/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # WebViews в Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/blackberry/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/blackberry/upgrade.md b/docs/ru/edge/guide/platforms/blackberry/upgrade.md
index 2ccfbf5..53e6407 100644
--- a/docs/ru/edge/guide/platforms/blackberry/upgrade.md
+++ b/docs/ru/edge/guide/platforms/blackberry/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Обновление BlackBerry
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/blackberry10/config.md b/docs/ru/edge/guide/platforms/blackberry10/config.md
index 23d4b53..2555dce 100644
--- a/docs/ru/edge/guide/platforms/blackberry10/config.md
+++ b/docs/ru/edge/guide/platforms/blackberry10/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Конфигурации BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/blackberry10/index.md b/docs/ru/edge/guide/platforms/blackberry10/index.md
index f6b9188..70fe0ce 100644
--- a/docs/ru/edge/guide/platforms/blackberry10/index.md
+++ b/docs/ru/edge/guide/platforms/blackberry10/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство для платформы BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/blackberry10/plugin.md b/docs/ru/edge/guide/platforms/blackberry10/plugin.md
index 90e6b41..25b876f 100644
--- a/docs/ru/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/ru/edge/guide/platforms/blackberry10/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Плагины для BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/blackberry10/tools.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/blackberry10/tools.md b/docs/ru/edge/guide/platforms/blackberry10/tools.md
index d627f40..3e2d399 100644
--- a/docs/ru/edge/guide/platforms/blackberry10/tools.md
+++ b/docs/ru/edge/guide/platforms/blackberry10/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство по инструментам командной строки BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/blackberry10/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/blackberry10/upgrade.md b/docs/ru/edge/guide/platforms/blackberry10/upgrade.md
index b6837f8..76ffdfc 100644
--- a/docs/ru/edge/guide/platforms/blackberry10/upgrade.md
+++ b/docs/ru/edge/guide/platforms/blackberry10/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Обновление для BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/firefoxos/config.md b/docs/ru/edge/guide/platforms/firefoxos/config.md
index 3b86e5f..5c69d50 100644
--- a/docs/ru/edge/guide/platforms/firefoxos/config.md
+++ b/docs/ru/edge/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS конфигурация
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/firefoxos/index.md b/docs/ru/edge/guide/platforms/firefoxos/index.md
index f0c66dd..cd42463 100644
--- a/docs/ru/edge/guide/platforms/firefoxos/index.md
+++ b/docs/ru/edge/guide/platforms/firefoxos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство для платформы Firefox OS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 c618c9b..6ecbecf 100644
--- a/docs/ru/edge/guide/platforms/index.md
+++ b/docs/ru/edge/guide/platforms/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство по поддерживаемым платформам
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/ios/config.md b/docs/ru/edge/guide/platforms/ios/config.md
index 8957658..f9e07bd 100644
--- a/docs/ru/edge/guide/platforms/ios/config.md
+++ b/docs/ru/edge/guide/platforms/ios/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Конфигурация iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/ios/index.md b/docs/ru/edge/guide/platforms/ios/index.md
index d9f9a6f..e74ab77 100644
--- a/docs/ru/edge/guide/platforms/ios/index.md
+++ b/docs/ru/edge/guide/platforms/ios/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство для платформы iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/ios/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/ios/plugin.md b/docs/ru/edge/guide/platforms/ios/plugin.md
index d297784..09100c0 100644
--- a/docs/ru/edge/guide/platforms/ios/plugin.md
+++ b/docs/ru/edge/guide/platforms/ios/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Плагины для iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/ios/tools.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/ios/tools.md b/docs/ru/edge/guide/platforms/ios/tools.md
index 4ea53c8..f5b2e23 100644
--- a/docs/ru/edge/guide/platforms/ios/tools.md
+++ b/docs/ru/edge/guide/platforms/ios/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS оболочки инструмент руководство
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/ios/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/ios/upgrade.md b/docs/ru/edge/guide/platforms/ios/upgrade.md
index 3517b0a..06bffc9 100644
--- a/docs/ru/edge/guide/platforms/ios/upgrade.md
+++ b/docs/ru/edge/guide/platforms/ios/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Обновление для iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/ios/webview.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/ios/webview.md b/docs/ru/edge/guide/platforms/ios/webview.md
index b50fe29..256c127 100644
--- a/docs/ru/edge/guide/platforms/ios/webview.md
+++ b/docs/ru/edge/guide/platforms/ios/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # WebViews в iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/tizen/index.md b/docs/ru/edge/guide/platforms/tizen/index.md
index 9632862..c60b451 100644
--- a/docs/ru/edge/guide/platforms/tizen/index.md
+++ b/docs/ru/edge/guide/platforms/tizen/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство для платформы Tizen
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/ubuntu/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/ubuntu/index.md b/docs/ru/edge/guide/platforms/ubuntu/index.md
index 5813d5a..dd4b48d 100644
--- a/docs/ru/edge/guide/platforms/ubuntu/index.md
+++ b/docs/ru/edge/guide/platforms/ubuntu/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство для платформы Ubuntu
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/win8/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/win8/index.md b/docs/ru/edge/guide/platforms/win8/index.md
index 9379bf3..1abadd5 100644
--- a/docs/ru/edge/guide/platforms/win8/index.md
+++ b/docs/ru/edge/guide/platforms/win8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство по платформе Windows
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/win8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/win8/plugin.md b/docs/ru/edge/guide/platforms/win8/plugin.md
index b61c814..b036baf 100644
--- a/docs/ru/edge/guide/platforms/win8/plugin.md
+++ b/docs/ru/edge/guide/platforms/win8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows плагины
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/win8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/win8/upgrade.md b/docs/ru/edge/guide/platforms/win8/upgrade.md
index 3b98ef6..491e3f6 100644
--- a/docs/ru/edge/guide/platforms/win8/upgrade.md
+++ b/docs/ru/edge/guide/platforms/win8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Обновление для Windows 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/wp8/index.md b/docs/ru/edge/guide/platforms/wp8/index.md
index ac8ea8e..f22c6cf 100644
--- a/docs/ru/edge/guide/platforms/wp8/index.md
+++ b/docs/ru/edge/guide/platforms/wp8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Руководство для платформы Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/wp8/parallels.md b/docs/ru/edge/guide/platforms/wp8/parallels.md
index 636c7c0..8708cd2 100644
--- a/docs/ru/edge/guide/platforms/wp8/parallels.md
+++ b/docs/ru/edge/guide/platforms/wp8/parallels.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Настройка Parallels Desktop
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/wp8/plugin.md b/docs/ru/edge/guide/platforms/wp8/plugin.md
index 8f51167..860440b 100644
--- a/docs/ru/edge/guide/platforms/wp8/plugin.md
+++ b/docs/ru/edge/guide/platforms/wp8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 плагины
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/wp8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/wp8/upgrade.md b/docs/ru/edge/guide/platforms/wp8/upgrade.md
index 5321e1b..d9ea061 100644
--- a/docs/ru/edge/guide/platforms/wp8/upgrade.md
+++ b/docs/ru/edge/guide/platforms/wp8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Обновление Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/wp8/vmware.md b/docs/ru/edge/guide/platforms/wp8/vmware.md
index b318c03..3cc3ad6 100644
--- a/docs/ru/edge/guide/platforms/wp8/vmware.md
+++ b/docs/ru/edge/guide/platforms/wp8/vmware.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Настройка VMWare Fusion
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/platforms/wp8/webview.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/platforms/wp8/webview.md b/docs/ru/edge/guide/platforms/wp8/webview.md
index 361bdc1..88a4c5c 100644
--- a/docs/ru/edge/guide/platforms/wp8/webview.md
+++ b/docs/ru/edge/guide/platforms/wp8/webview.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Windows Phone 8.0 WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/guide/support/index.md b/docs/ru/edge/guide/support/index.md
index ac3f1c9..438bdb6 100644
--- a/docs/ru/edge/guide/support/index.md
+++ b/docs/ru/edge/guide/support/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Поддерживаемые Платформы
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/index.md b/docs/ru/edge/index.md
index 38f2104..f246dbd 100644
--- a/docs/ru/edge/index.md
+++ b/docs/ru/edge/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 <div id="home">
   <h1>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/plugin_ref/plugman.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/plugin_ref/plugman.md b/docs/ru/edge/plugin_ref/plugman.md
index 6c3899b..9044b4a 100644
--- a/docs/ru/edge/plugin_ref/plugman.md
+++ b/docs/ru/edge/plugin_ref/plugman.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Использование Plugman для управления расширениями
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ru/edge/plugin_ref/spec.md
----------------------------------------------------------------------
diff --git a/docs/ru/edge/plugin_ref/spec.md b/docs/ru/edge/plugin_ref/spec.md
index d6ea5e5..cbcccb2 100644
--- a/docs/ru/edge/plugin_ref/spec.md
+++ b/docs/ru/edge/plugin_ref/spec.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Спецификация расширений
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/3.4.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.4.0/cordova/plugins/pluginapis.md b/docs/sl/3.4.0/cordova/plugins/pluginapis.md
index 2846157..5267b33 100644
--- a/docs/sl/3.4.0/cordova/plugins/pluginapis.md
+++ b/docs/sl/3.4.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-Licenca: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. Glej obvestilo datoteko razdeli s to delo za dodatne informacije glede avtorskih pravic lastništva. V APK licence to datoteko, da si pod licenco Apache, različica 2.0 ("licence"); ne smete uporabljati to datoteko, razen v skladu z licenco. Lahko dobijo izvod licence v
-
-           http://www.Apache.org/licenses/License-2.0 razen če zahteva zakon ali dogovorjene v pisni obliki, programske opreme, ki se razdelijo pod licenco razdeljeni na na "Kot je" podlaga, brez jamstva ali pogoje za kakršnekoli vrste, niti izrecne ali zakonske.  Glej licenca za poseben jezik, ki urejajo dovoljenja in omejitve
-    
-
-## pod licenco.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/3.4.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.4.0/guide/platforms/amazonfireos/index.md b/docs/sl/3.4.0/guide/platforms/amazonfireos/index.md
index 91b541b..33bf6b5 100644
--- a/docs/sl/3.4.0/guide/platforms/amazonfireos/index.md
+++ b/docs/sl/3.4.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-Licenca: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. Glej obvestilo datoteko razdeli s to delo za dodatne informacije glede avtorskih pravic lastništva. V APK licence to datoteko, da si pod licenco Apache, različica 2.0 ("licence"); ne smete uporabljati to datoteko, razen v skladu z licenco. Lahko dobijo izvod licence v
-
-           http://www.Apache.org/licenses/License-2.0 razen če zahteva zakon ali dogovorjene v pisni obliki, programske opreme, ki se razdelijo pod licenco razdeljeni na na "Kot je" podlaga, brez jamstva ali pogoje za kakršnekoli vrste, niti izrecne ali zakonske.  Glej licenca za poseben jezik, ki urejajo dovoljenja in omejitve
-    
-
-## pod licenco.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon ogenj OS platformo vodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/3.4.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.4.0/guide/platforms/wp8/plugin.md b/docs/sl/3.4.0/guide/platforms/wp8/plugin.md
index 7520f25..ca4926d 100644
--- a/docs/sl/3.4.0/guide/platforms/wp8/plugin.md
+++ b/docs/sl/3.4.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---licenco: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/3.4.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.4.0/guide/support/index.md b/docs/sl/3.4.0/guide/support/index.md
index 655af21..6fc191a 100644
--- a/docs/sl/3.4.0/guide/support/index.md
+++ b/docs/sl/3.4.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-Licenca: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. Glej obvestilo datoteko razdeli s to delo za dodatne informacije glede avtorskih pravic lastništva. V APK licence to datoteko, da si pod licenco Apache, različica 2.0 ("licence"); ne smete uporabljati to datoteko, razen v skladu z licenco. Lahko dobijo izvod licence v
-
-           http://www.Apache.org/licenses/License-2.0 razen če zahteva zakon ali dogovorjene v pisni obliki, programske opreme, ki se razdelijo pod licenco razdeljeni na na "Kot je" podlaga, brez jamstva ali pogoje za kakršnekoli vrste, niti izrecne ali zakonske.  Glej licenca za poseben jezik, ki urejajo dovoljenja in omejitve pod licenco.
-    
+           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.
 ---
 
 # Platforma podporo

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/3.5.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.5.0/cordova/plugins/pluginapis.md b/docs/sl/3.5.0/cordova/plugins/pluginapis.md
index 2846157..5267b33 100644
--- a/docs/sl/3.5.0/cordova/plugins/pluginapis.md
+++ b/docs/sl/3.5.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-Licenca: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. Glej obvestilo datoteko razdeli s to delo za dodatne informacije glede avtorskih pravic lastništva. V APK licence to datoteko, da si pod licenco Apache, različica 2.0 ("licence"); ne smete uporabljati to datoteko, razen v skladu z licenco. Lahko dobijo izvod licence v
-
-           http://www.Apache.org/licenses/License-2.0 razen če zahteva zakon ali dogovorjene v pisni obliki, programske opreme, ki se razdelijo pod licenco razdeljeni na na "Kot je" podlaga, brez jamstva ali pogoje za kakršnekoli vrste, niti izrecne ali zakonske.  Glej licenca za poseben jezik, ki urejajo dovoljenja in omejitve
-    
-
-## pod licenco.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/3.5.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.5.0/guide/platforms/amazonfireos/index.md b/docs/sl/3.5.0/guide/platforms/amazonfireos/index.md
index 91b541b..33bf6b5 100644
--- a/docs/sl/3.5.0/guide/platforms/amazonfireos/index.md
+++ b/docs/sl/3.5.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-Licenca: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. Glej obvestilo datoteko razdeli s to delo za dodatne informacije glede avtorskih pravic lastništva. V APK licence to datoteko, da si pod licenco Apache, različica 2.0 ("licence"); ne smete uporabljati to datoteko, razen v skladu z licenco. Lahko dobijo izvod licence v
-
-           http://www.Apache.org/licenses/License-2.0 razen če zahteva zakon ali dogovorjene v pisni obliki, programske opreme, ki se razdelijo pod licenco razdeljeni na na "Kot je" podlaga, brez jamstva ali pogoje za kakršnekoli vrste, niti izrecne ali zakonske.  Glej licenca za poseben jezik, ki urejajo dovoljenja in omejitve
-    
-
-## pod licenco.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon ogenj OS platformo vodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/3.5.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.5.0/guide/platforms/wp8/plugin.md b/docs/sl/3.5.0/guide/platforms/wp8/plugin.md
index 7520f25..ca4926d 100644
--- a/docs/sl/3.5.0/guide/platforms/wp8/plugin.md
+++ b/docs/sl/3.5.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---licenco: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/3.5.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/sl/3.5.0/guide/support/index.md b/docs/sl/3.5.0/guide/support/index.md
index 655af21..6fc191a 100644
--- a/docs/sl/3.5.0/guide/support/index.md
+++ b/docs/sl/3.5.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-Licenca: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. Glej obvestilo datoteko razdeli s to delo za dodatne informacije glede avtorskih pravic lastništva. V APK licence to datoteko, da si pod licenco Apache, različica 2.0 ("licence"); ne smete uporabljati to datoteko, razen v skladu z licenco. Lahko dobijo izvod licence v
-
-           http://www.Apache.org/licenses/License-2.0 razen če zahteva zakon ali dogovorjene v pisni obliki, programske opreme, ki se razdelijo pod licenco razdeljeni na na "Kot je" podlaga, brez jamstva ali pogoje za kakršnekoli vrste, niti izrecne ali zakonske.  Glej licenca za poseben jezik, ki urejajo dovoljenja in omejitve pod licenco.
-    
+           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.
 ---
 
 # Platforma podporo

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/sl/edge/cordova/plugins/pluginapis.md b/docs/sl/edge/cordova/plugins/pluginapis.md
index 2846157..5267b33 100644
--- a/docs/sl/edge/cordova/plugins/pluginapis.md
+++ b/docs/sl/edge/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-Licenca: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. Glej obvestilo datoteko razdeli s to delo za dodatne informacije glede avtorskih pravic lastništva. V APK licence to datoteko, da si pod licenco Apache, različica 2.0 ("licence"); ne smete uporabljati to datoteko, razen v skladu z licenco. Lahko dobijo izvod licence v
-
-           http://www.Apache.org/licenses/License-2.0 razen če zahteva zakon ali dogovorjene v pisni obliki, programske opreme, ki se razdelijo pod licenco razdeljeni na na "Kot je" podlaga, brez jamstva ali pogoje za kakršnekoli vrste, niti izrecne ali zakonske.  Glej licenca za poseben jezik, ki urejajo dovoljenja in omejitve
-    
-
-## pod licenco.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/sl/edge/guide/platforms/amazonfireos/index.md b/docs/sl/edge/guide/platforms/amazonfireos/index.md
index 91b541b..33bf6b5 100644
--- a/docs/sl/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/sl/edge/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-Licenca: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. Glej obvestilo datoteko razdeli s to delo za dodatne informacije glede avtorskih pravic lastništva. V APK licence to datoteko, da si pod licenco Apache, različica 2.0 ("licence"); ne smete uporabljati to datoteko, razen v skladu z licenco. Lahko dobijo izvod licence v
-
-           http://www.Apache.org/licenses/License-2.0 razen če zahteva zakon ali dogovorjene v pisni obliki, programske opreme, ki se razdelijo pod licenco razdeljeni na na "Kot je" podlaga, brez jamstva ali pogoje za kakršnekoli vrste, niti izrecne ali zakonske.  Glej licenca za poseben jezik, ki urejajo dovoljenja in omejitve
-    
-
-## pod licenco.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon ogenj OS platformo vodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/sl/edge/guide/platforms/wp8/plugin.md b/docs/sl/edge/guide/platforms/wp8/plugin.md
index 7520f25..ca4926d 100644
--- a/docs/sl/edge/guide/platforms/wp8/plugin.md
+++ b/docs/sl/edge/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---licenco: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/sl/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/sl/edge/guide/support/index.md b/docs/sl/edge/guide/support/index.md
index 655af21..6fc191a 100644
--- a/docs/sl/edge/guide/support/index.md
+++ b/docs/sl/edge/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-Licenca: licenco za Apache Software Foundation (ASF) pod eno ali več prispeva licenčnih pogodb. Glej obvestilo datoteko razdeli s to delo za dodatne informacije glede avtorskih pravic lastništva. V APK licence to datoteko, da si pod licenco Apache, različica 2.0 ("licence"); ne smete uporabljati to datoteko, razen v skladu z licenco. Lahko dobijo izvod licence v
-
-           http://www.Apache.org/licenses/License-2.0 razen če zahteva zakon ali dogovorjene v pisni obliki, programske opreme, ki se razdelijo pod licenco razdeljeni na na "Kot je" podlaga, brez jamstva ali pogoje za kakršnekoli vrste, niti izrecne ali zakonske.  Glej licenca za poseben jezik, ki urejajo dovoljenja in omejitve pod licenco.
-    
+           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.
 ---
 
 # Platforma podporo

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.1.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.1.0/guide/platforms/firefoxos/config.md b/docs/zh/3.1.0/guide/platforms/firefoxos/config.md
index dcf3322..c174682 100644
--- a/docs/zh/3.1.0/guide/platforms/firefoxos/config.md
+++ b/docs/zh/3.1.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 配置
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.4.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.4.0/cordova/plugins/pluginapis.md b/docs/zh/3.4.0/cordova/plugins/pluginapis.md
index 0aec374..05b3f00 100644
--- a/docs/zh/3.4.0/cordova/plugins/pluginapis.md
+++ b/docs/zh/3.4.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱許可證規定的許可權和限制的特定語言
-    
-
-## 根據許可證。
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 外掛程式的 Api
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/zh/3.4.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/zh/3.4.0/guide/platforms/amazonfireos/index.md b/docs/zh/3.4.0/guide/platforms/amazonfireos/index.md
index b946dd5..6813ce2 100644
--- a/docs/zh/3.4.0/guide/platforms/amazonfireos/index.md
+++ b/docs/zh/3.4.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-許可證: 下一個或多個參與者授權合約許可向阿帕奇軟體基金會 (ASF)。 請參閱分散式與此工作為版權的擁有權有關的其他資訊的通知檔。 ASF 許可證,此檔到你根據 Apache 許可證,2.0 版 ("許可證") ;您不可能使用此檔除了符合許可證。 您可能會獲得在許可證的副本
-
-           HTTP://www.apache.org/licenses/LICENSE-2.0 除非適用的法律要求或書面同意,否則按照該許可證分發的軟體分發上"按原樣"的基礎,而不擔保或條件的任何種類的明示或暗示。  請參閱許可證規定的許可權和限制的特定語言
-    
-
-## 根據許可證。
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # 亞馬遜火 OS 平臺指南
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[06/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 3c80e0a..3225a05 100644
--- a/docs/pl/edge/cordova/events/events.startcallbutton.md
+++ b/docs/pl/edge/cordova/events/events.startcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # startcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 935f524..88d6b99 100644
--- a/docs/pl/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/pl/edge/cordova/events/events.volumedownbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumedownbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/events/events.volumeupbutton.md b/docs/pl/edge/cordova/events/events.volumeupbutton.md
index b6e3b05..c7c4b00 100644
--- a/docs/pl/edge/cordova/events/events.volumeupbutton.md
+++ b/docs/pl/edge/cordova/events/events.volumeupbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/plugins/pluginapis.md b/docs/pl/edge/cordova/plugins/pluginapis.md
index 7289b59..252d63f 100644
--- a/docs/pl/edge/cordova/plugins/pluginapis.md
+++ b/docs/pl/edge/cordova/plugins/pluginapis.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/cordova/storage/storage.md b/docs/pl/edge/cordova/storage/storage.md
index 6f4a29a..b23ffcc 100644
--- a/docs/pl/edge/cordova/storage/storage.md
+++ b/docs/pl/edge/cordova/storage/storage.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Magazyn
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/appdev/privacy/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/appdev/privacy/index.md b/docs/pl/edge/guide/appdev/privacy/index.md
index efda172..5ae5abb 100644
--- a/docs/pl/edge/guide/appdev/privacy/index.md
+++ b/docs/pl/edge/guide/appdev/privacy/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Prywatności Przewodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/appdev/security/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/appdev/security/index.md b/docs/pl/edge/guide/appdev/security/index.md
index 142e3d0..18fa7cb 100644
--- a/docs/pl/edge/guide/appdev/security/index.md
+++ b/docs/pl/edge/guide/appdev/security/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Przewodnik bezpieczeństwa
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/appdev/whitelist/index.md b/docs/pl/edge/guide/appdev/whitelist/index.md
index 89aa036..df5c6c9 100644
--- a/docs/pl/edge/guide/appdev/whitelist/index.md
+++ b/docs/pl/edge/guide/appdev/whitelist/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Przewodnik białej listy
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/cli/index.md b/docs/pl/edge/guide/cli/index.md
index 039613f..c910d18 100644
--- a/docs/pl/edge/guide/cli/index.md
+++ b/docs/pl/edge/guide/cli/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Interfejs wiersza poleceń
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/hybrid/plugins/index.md b/docs/pl/edge/guide/hybrid/plugins/index.md
index f50595d..dd6ce64 100644
--- a/docs/pl/edge/guide/hybrid/plugins/index.md
+++ b/docs/pl/edge/guide/hybrid/plugins/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugin rozwoju Przewodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/hybrid/webviews/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/hybrid/webviews/index.md b/docs/pl/edge/guide/hybrid/webviews/index.md
index c6c0011..9ca775a 100644
--- a/docs/pl/edge/guide/hybrid/webviews/index.md
+++ b/docs/pl/edge/guide/hybrid/webviews/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Osadzanie WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/next/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/next/index.md b/docs/pl/edge/guide/next/index.md
index bd743ee..1f4f7e2 100644
--- a/docs/pl/edge/guide/next/index.md
+++ b/docs/pl/edge/guide/next/index.md
@@ -1,3 +1,22 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
 # Kolejne kroki
 
 Dla programistów, którzy mają zrozumienie tego, jak za pomocą Cordova CLI i korzystać z wtyczek, istnieje kilka rzeczy, może warto rozważyć badania obok budować lepsze, bardziej wydajnych aplikacji Cordova. Następujący dokument oferuje porady na różne tematy dotyczące najlepszych praktyk, badania, aktualizacje i inne tematy, ale nie jest to bezwzględnie. Należy rozważyć uruchomienie punktu na twój rozwój jako deweloper Cordova. Również jeśli widzisz coś, co można poprawić, proszę [przyczynić się][1]!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/overview/index.md b/docs/pl/edge/guide/overview/index.md
index 6eabe58..51247f2 100644
--- a/docs/pl/edge/guide/overview/index.md
+++ b/docs/pl/edge/guide/overview/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Przegląd
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/amazonfireos/config.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/amazonfireos/config.md b/docs/pl/edge/guide/platforms/amazonfireos/config.md
index da7ff12..5a12ac0 100644
--- a/docs/pl/edge/guide/platforms/amazonfireos/config.md
+++ b/docs/pl/edge/guide/platforms/amazonfireos/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon ogień OS konfiguracja
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/amazonfireos/index.md b/docs/pl/edge/guide/platforms/amazonfireos/index.md
index bfb8daa..9ed53ee 100644
--- a/docs/pl/edge/guide/platforms/amazonfireos/index.md
+++ b/docs/pl/edge/guide/platforms/amazonfireos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon ogień platformy OS Przewodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/amazonfireos/plugin.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/amazonfireos/plugin.md b/docs/pl/edge/guide/platforms/amazonfireos/plugin.md
index 26fdef0..cba4c33 100644
--- a/docs/pl/edge/guide/platforms/amazonfireos/plugin.md
+++ b/docs/pl/edge/guide/platforms/amazonfireos/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon ogień OS Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/amazonfireos/webview.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/amazonfireos/webview.md b/docs/pl/edge/guide/platforms/amazonfireos/webview.md
index fe10a1b..73a9cb8 100644
--- a/docs/pl/edge/guide/platforms/amazonfireos/webview.md
+++ b/docs/pl/edge/guide/platforms/amazonfireos/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Amazon ogień OS WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/android/config.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/android/config.md b/docs/pl/edge/guide/platforms/android/config.md
index da76e19..7315d2b 100644
--- a/docs/pl/edge/guide/platforms/android/config.md
+++ b/docs/pl/edge/guide/platforms/android/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Konfiguracja dla platformy Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/android/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/android/index.md b/docs/pl/edge/guide/platforms/android/index.md
index d4a8d54..a2d289b 100644
--- a/docs/pl/edge/guide/platforms/android/index.md
+++ b/docs/pl/edge/guide/platforms/android/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Przewodnik platformy Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/android/plugin.md b/docs/pl/edge/guide/platforms/android/plugin.md
index da0568a..d7a5cfb 100644
--- a/docs/pl/edge/guide/platforms/android/plugin.md
+++ b/docs/pl/edge/guide/platforms/android/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Wtyczek Android
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/android/tools.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/android/tools.md b/docs/pl/edge/guide/platforms/android/tools.md
index 6cdb3fe..5be0fc2 100644
--- a/docs/pl/edge/guide/platforms/android/tools.md
+++ b/docs/pl/edge/guide/platforms/android/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android Shell narzędzia Przewodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/android/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/android/upgrade.md b/docs/pl/edge/guide/platforms/android/upgrade.md
index 0e7f154..38536c2 100644
--- a/docs/pl/edge/guide/platforms/android/upgrade.md
+++ b/docs/pl/edge/guide/platforms/android/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aktualizacja
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/android/webview.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/android/webview.md b/docs/pl/edge/guide/platforms/android/webview.md
index 331122c..434263f 100644
--- a/docs/pl/edge/guide/platforms/android/webview.md
+++ b/docs/pl/edge/guide/platforms/android/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Android WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/blackberry/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/blackberry/upgrade.md b/docs/pl/edge/guide/platforms/blackberry/upgrade.md
index b6ca15a..8f2ee51 100644
--- a/docs/pl/edge/guide/platforms/blackberry/upgrade.md
+++ b/docs/pl/edge/guide/platforms/blackberry/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Uaktualnianie BlackBerry
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/blackberry10/config.md b/docs/pl/edge/guide/platforms/blackberry10/config.md
index 865dbe2..694c547 100644
--- a/docs/pl/edge/guide/platforms/blackberry10/config.md
+++ b/docs/pl/edge/guide/platforms/blackberry10/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Konfiguracja blackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/blackberry10/index.md b/docs/pl/edge/guide/platforms/blackberry10/index.md
index fc37869..6ec01df 100644
--- a/docs/pl/edge/guide/platforms/blackberry10/index.md
+++ b/docs/pl/edge/guide/platforms/blackberry10/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Przewodnik platformy blackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/blackberry10/plugin.md b/docs/pl/edge/guide/platforms/blackberry10/plugin.md
index cf607a7..6f43f05 100644
--- a/docs/pl/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/pl/edge/guide/platforms/blackberry10/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Jeżyna 10 wtyczek
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/blackberry10/tools.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/blackberry10/tools.md b/docs/pl/edge/guide/platforms/blackberry10/tools.md
index bd4064b..c79b304 100644
--- a/docs/pl/edge/guide/platforms/blackberry10/tools.md
+++ b/docs/pl/edge/guide/platforms/blackberry10/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Przewodnik narzędziem blackBerry 10 powłoki
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/blackberry10/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/blackberry10/upgrade.md b/docs/pl/edge/guide/platforms/blackberry10/upgrade.md
index ae014fd..9110e42 100644
--- a/docs/pl/edge/guide/platforms/blackberry10/upgrade.md
+++ b/docs/pl/edge/guide/platforms/blackberry10/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Uaktualnianie BlackBerry 10
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/firefoxos/index.md b/docs/pl/edge/guide/platforms/firefoxos/index.md
index b8a5ae8..0942a51 100644
--- a/docs/pl/edge/guide/platforms/firefoxos/index.md
+++ b/docs/pl/edge/guide/platforms/firefoxos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Firefox platformy OS Przewodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/index.md b/docs/pl/edge/guide/platforms/index.md
index 61cd4b9..2379201 100644
--- a/docs/pl/edge/guide/platforms/index.md
+++ b/docs/pl/edge/guide/platforms/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Platforma przewodników
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/ios/config.md b/docs/pl/edge/guide/platforms/ios/config.md
index fbe2eb5..4c82505 100644
--- a/docs/pl/edge/guide/platforms/ios/config.md
+++ b/docs/pl/edge/guide/platforms/ios/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Konfiguracja iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/ios/index.md b/docs/pl/edge/guide/platforms/ios/index.md
index 99796d9..995974e 100644
--- a/docs/pl/edge/guide/platforms/ios/index.md
+++ b/docs/pl/edge/guide/platforms/ios/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Przewodnik platformy iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/ios/plugin.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/ios/plugin.md b/docs/pl/edge/guide/platforms/ios/plugin.md
index 6b58165..a91b4c9 100644
--- a/docs/pl/edge/guide/platforms/ios/plugin.md
+++ b/docs/pl/edge/guide/platforms/ios/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS wtyczek
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/ios/tools.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/ios/tools.md b/docs/pl/edge/guide/platforms/ios/tools.md
index bda15ce..f496613 100644
--- a/docs/pl/edge/guide/platforms/ios/tools.md
+++ b/docs/pl/edge/guide/platforms/ios/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Shell narzędzia Przewodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/ios/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/ios/upgrade.md b/docs/pl/edge/guide/platforms/ios/upgrade.md
index 8834c19..5d3446d 100644
--- a/docs/pl/edge/guide/platforms/ios/upgrade.md
+++ b/docs/pl/edge/guide/platforms/ios/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aktualizacja iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/ios/webview.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/ios/webview.md b/docs/pl/edge/guide/platforms/ios/webview.md
index 9560764..6eb8d3f 100644
--- a/docs/pl/edge/guide/platforms/ios/webview.md
+++ b/docs/pl/edge/guide/platforms/ios/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/tizen/index.md b/docs/pl/edge/guide/platforms/tizen/index.md
index 2f2d924..14dddd1 100644
--- a/docs/pl/edge/guide/platforms/tizen/index.md
+++ b/docs/pl/edge/guide/platforms/tizen/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Platforma Tizen Przewodnik
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/ubuntu/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/ubuntu/index.md b/docs/pl/edge/guide/platforms/ubuntu/index.md
index f52034a..0220146 100644
--- a/docs/pl/edge/guide/platforms/ubuntu/index.md
+++ b/docs/pl/edge/guide/platforms/ubuntu/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Platforma Ubuntu Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/win8/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/win8/index.md b/docs/pl/edge/guide/platforms/win8/index.md
index 11f198e..cde7bf1 100644
--- a/docs/pl/edge/guide/platforms/win8/index.md
+++ b/docs/pl/edge/guide/platforms/win8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Przewodnik platforma Windows
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/win8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/win8/plugin.md b/docs/pl/edge/guide/platforms/win8/plugin.md
index 2fdcd93..a1ffafd 100644
--- a/docs/pl/edge/guide/platforms/win8/plugin.md
+++ b/docs/pl/edge/guide/platforms/win8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Wtyczki Windows
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/win8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/win8/upgrade.md b/docs/pl/edge/guide/platforms/win8/upgrade.md
index 476ac88..2e8d681 100644
--- a/docs/pl/edge/guide/platforms/win8/upgrade.md
+++ b/docs/pl/edge/guide/platforms/win8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aktualizacja systemu Windows 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/wp8/index.md b/docs/pl/edge/guide/platforms/wp8/index.md
index 2cdf87f..056eb9b 100644
--- a/docs/pl/edge/guide/platforms/wp8/index.md
+++ b/docs/pl/edge/guide/platforms/wp8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Przewodnik platformy Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/wp8/parallels.md b/docs/pl/edge/guide/platforms/wp8/parallels.md
index 027a9ff..592d81f 100644
--- a/docs/pl/edge/guide/platforms/wp8/parallels.md
+++ b/docs/pl/edge/guide/platforms/wp8/parallels.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Konfigurowanie programu Parallels Desktop
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/wp8/plugin.md b/docs/pl/edge/guide/platforms/wp8/plugin.md
index eafae44..5b9d47c 100644
--- a/docs/pl/edge/guide/platforms/wp8/plugin.md
+++ b/docs/pl/edge/guide/platforms/wp8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 wtyczki
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/wp8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/wp8/upgrade.md b/docs/pl/edge/guide/platforms/wp8/upgrade.md
index 0b841ea..aa4d08a 100644
--- a/docs/pl/edge/guide/platforms/wp8/upgrade.md
+++ b/docs/pl/edge/guide/platforms/wp8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Aktualizacja Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/wp8/vmware.md b/docs/pl/edge/guide/platforms/wp8/vmware.md
index de5bf26..c4b605e 100644
--- a/docs/pl/edge/guide/platforms/wp8/vmware.md
+++ b/docs/pl/edge/guide/platforms/wp8/vmware.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Konfigurowanie VMWare Fusion
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/pl/edge/guide/platforms/wp8/webview.md
----------------------------------------------------------------------
diff --git a/docs/pl/edge/guide/platforms/wp8/webview.md b/docs/pl/edge/guide/platforms/wp8/webview.md
index 18680a3..84c3982 100644
--- a/docs/pl/edge/guide/platforms/wp8/webview.md
+++ b/docs/pl/edge/guide/platforms/wp8/webview.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Windows Phone 8.0 WebViews
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[07/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/amazonfireos/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/amazonfireos/plugin.md b/docs/ko/edge/guide/platforms/amazonfireos/plugin.md
index a099ccf..9846030 100644
--- a/docs/ko/edge/guide/platforms/amazonfireos/plugin.md
+++ b/docs/ko/edge/guide/platforms/amazonfireos/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 아마존 화재 OS 플러그인
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/amazonfireos/webview.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/amazonfireos/webview.md b/docs/ko/edge/guide/platforms/amazonfireos/webview.md
index 7397f2e..681e360 100644
--- a/docs/ko/edge/guide/platforms/amazonfireos/webview.md
+++ b/docs/ko/edge/guide/platforms/amazonfireos/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 아마존 화재 OS WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/android/config.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/android/config.md b/docs/ko/edge/guide/platforms/android/config.md
index 76e56a5..e78ad5f 100644
--- a/docs/ko/edge/guide/platforms/android/config.md
+++ b/docs/ko/edge/guide/platforms/android/config.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 안 드 로이드 구성
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/android/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/android/index.md b/docs/ko/edge/guide/platforms/android/index.md
index 1cadf41..98dff22 100644
--- a/docs/ko/edge/guide/platforms/android/index.md
+++ b/docs/ko/edge/guide/platforms/android/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 안 드 로이드 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 c87f560..ef306e4 100644
--- a/docs/ko/edge/guide/platforms/android/plugin.md
+++ b/docs/ko/edge/guide/platforms/android/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 안 드 로이드 플러그인
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/android/tools.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/android/tools.md b/docs/ko/edge/guide/platforms/android/tools.md
index 93ca7b6..da1b896 100644
--- a/docs/ko/edge/guide/platforms/android/tools.md
+++ b/docs/ko/edge/guide/platforms/android/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 안 드 로이드 쉘 도구 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/android/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/android/upgrade.md b/docs/ko/edge/guide/platforms/android/upgrade.md
index a437c76..948a194 100644
--- a/docs/ko/edge/guide/platforms/android/upgrade.md
+++ b/docs/ko/edge/guide/platforms/android/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 안 드 로이드 업그레이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/android/webview.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/android/webview.md b/docs/ko/edge/guide/platforms/android/webview.md
index ab4a6df..10d893e 100644
--- a/docs/ko/edge/guide/platforms/android/webview.md
+++ b/docs/ko/edge/guide/platforms/android/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 안 드 로이드 WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/blackberry/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/blackberry/upgrade.md b/docs/ko/edge/guide/platforms/blackberry/upgrade.md
index 52a7dc3..d040fe4 100644
--- a/docs/ko/edge/guide/platforms/blackberry/upgrade.md
+++ b/docs/ko/edge/guide/platforms/blackberry/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 블랙베리 업그레이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/blackberry10/config.md b/docs/ko/edge/guide/platforms/blackberry10/config.md
index 3415645..a826174 100644
--- a/docs/ko/edge/guide/platforms/blackberry10/config.md
+++ b/docs/ko/edge/guide/platforms/blackberry10/config.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 블랙베리 10 구성
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/blackberry10/index.md b/docs/ko/edge/guide/platforms/blackberry10/index.md
index c21c5f3..2b4dad9 100644
--- a/docs/ko/edge/guide/platforms/blackberry10/index.md
+++ b/docs/ko/edge/guide/platforms/blackberry10/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 블랙베리 10 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/blackberry10/plugin.md b/docs/ko/edge/guide/platforms/blackberry10/plugin.md
index 082079c..0cd6d8b 100644
--- a/docs/ko/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/ko/edge/guide/platforms/blackberry10/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 블랙베리 10 플러그인
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/blackberry10/tools.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/blackberry10/tools.md b/docs/ko/edge/guide/platforms/blackberry10/tools.md
index ef48dbf..37a9fbd 100644
--- a/docs/ko/edge/guide/platforms/blackberry10/tools.md
+++ b/docs/ko/edge/guide/platforms/blackberry10/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 블랙베리 10 셸 도구 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/blackberry10/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/blackberry10/upgrade.md b/docs/ko/edge/guide/platforms/blackberry10/upgrade.md
index 3930a90..552ed36 100644
--- a/docs/ko/edge/guide/platforms/blackberry10/upgrade.md
+++ b/docs/ko/edge/guide/platforms/blackberry10/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 블랙베리 10 업그레이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/firefoxos/config.md b/docs/ko/edge/guide/platforms/firefoxos/config.md
index 41a193e..ac025e8 100644
--- a/docs/ko/edge/guide/platforms/firefoxos/config.md
+++ b/docs/ko/edge/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 구성
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/firefoxos/index.md b/docs/ko/edge/guide/platforms/firefoxos/index.md
index 6b2d1bc..1dd3709 100644
--- a/docs/ko/edge/guide/platforms/firefoxos/index.md
+++ b/docs/ko/edge/guide/platforms/firefoxos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 파이어 폭스 OS 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 818b556..b4921a9 100644
--- a/docs/ko/edge/guide/platforms/index.md
+++ b/docs/ko/edge/guide/platforms/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/ios/config.md b/docs/ko/edge/guide/platforms/ios/config.md
index e01a5c5..a150792 100644
--- a/docs/ko/edge/guide/platforms/ios/config.md
+++ b/docs/ko/edge/guide/platforms/ios/config.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS 구성
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/ios/index.md b/docs/ko/edge/guide/platforms/ios/index.md
index 867dba7..be71cd0 100644
--- a/docs/ko/edge/guide/platforms/ios/index.md
+++ b/docs/ko/edge/guide/platforms/ios/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 0088db3..094d70b 100644
--- a/docs/ko/edge/guide/platforms/ios/plugin.md
+++ b/docs/ko/edge/guide/platforms/ios/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS 플러그인
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/ios/tools.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/ios/tools.md b/docs/ko/edge/guide/platforms/ios/tools.md
index 5236083..52ebdd3 100644
--- a/docs/ko/edge/guide/platforms/ios/tools.md
+++ b/docs/ko/edge/guide/platforms/ios/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS 셸 도구 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/ios/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/ios/upgrade.md b/docs/ko/edge/guide/platforms/ios/upgrade.md
index 9c2ab89..2c8a2aa 100644
--- a/docs/ko/edge/guide/platforms/ios/upgrade.md
+++ b/docs/ko/edge/guide/platforms/ios/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # IOS 업그레이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/ios/webview.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/ios/webview.md b/docs/ko/edge/guide/platforms/ios/webview.md
index 8ffa9a6..f9ac17c 100644
--- a/docs/ko/edge/guide/platforms/ios/webview.md
+++ b/docs/ko/edge/guide/platforms/ios/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/tizen/index.md b/docs/ko/edge/guide/platforms/tizen/index.md
index 18495ad..9deffa5 100644
--- a/docs/ko/edge/guide/platforms/tizen/index.md
+++ b/docs/ko/edge/guide/platforms/tizen/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Tizen 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/ubuntu/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/ubuntu/index.md b/docs/ko/edge/guide/platforms/ubuntu/index.md
index a7cfbaa..2a58595 100644
--- a/docs/ko/edge/guide/platforms/ubuntu/index.md
+++ b/docs/ko/edge/guide/platforms/ubuntu/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 우분투 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/win8/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/win8/index.md b/docs/ko/edge/guide/platforms/win8/index.md
index fcf2059..e45e458 100644
--- a/docs/ko/edge/guide/platforms/win8/index.md
+++ b/docs/ko/edge/guide/platforms/win8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows 플랫폼 가이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 61a6540..b8b3779 100644
--- a/docs/ko/edge/guide/platforms/win8/plugin.md
+++ b/docs/ko/edge/guide/platforms/win8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 윈도우 플러그인
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/win8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/win8/upgrade.md b/docs/ko/edge/guide/platforms/win8/upgrade.md
index ba25d33..57b7843 100644
--- a/docs/ko/edge/guide/platforms/win8/upgrade.md
+++ b/docs/ko/edge/guide/platforms/win8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 윈도우 8을 업그레이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 5e7ba6b..3cccdb3 100644
--- a/docs/ko/edge/guide/platforms/wp8/index.md
+++ b/docs/ko/edge/guide/platforms/wp8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 플랫폼 가이드 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/wp8/parallels.md b/docs/ko/edge/guide/platforms/wp8/parallels.md
index f3c6433..3e3401c 100644
--- a/docs/ko/edge/guide/platforms/wp8/parallels.md
+++ b/docs/ko/edge/guide/platforms/wp8/parallels.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 패 러 랠 데스크톱 구성
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/wp8/plugin.md b/docs/ko/edge/guide/platforms/wp8/plugin.md
index 0cfb60c..b757dce 100644
--- a/docs/ko/edge/guide/platforms/wp8/plugin.md
+++ b/docs/ko/edge/guide/platforms/wp8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 플러그인
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/wp8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/wp8/upgrade.md b/docs/ko/edge/guide/platforms/wp8/upgrade.md
index a80e5a4..fbea86e 100644
--- a/docs/ko/edge/guide/platforms/wp8/upgrade.md
+++ b/docs/ko/edge/guide/platforms/wp8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 업그레이드
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/platforms/wp8/vmware.md b/docs/ko/edge/guide/platforms/wp8/vmware.md
index 6dc493c..b23eb6c 100644
--- a/docs/ko/edge/guide/platforms/wp8/vmware.md
+++ b/docs/ko/edge/guide/platforms/wp8/vmware.md
@@ -1,11 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
-
-           http://www.apache.org/licenses/LICENSE-2.0 적용 가능한 법률에 의해 요구 또는 서 면으로 동의 하지 않는 한 소프트웨어 라이선스 하에 배포에 배포 되는 "있는 그대로" 기준, 보증 또는 조건 어떤 종류의 없이, 명시적 또는 묵시적.  라이센스 권한 및 제한 적용 되는 특정 언어에 대 한 참조
-    
-
-## 라이센스.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Vm 웨어 퓨전을 구성
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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
index eabaa49..42773c2 100644
--- a/docs/ko/edge/guide/platforms/wp8/webview.md
+++ b/docs/ko/edge/guide/platforms/wp8/webview.md
@@ -1,18 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Windows Phone 8.0 WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/guide/support/index.md b/docs/ko/edge/guide/support/index.md
index 3c7135d..434338c 100644
--- a/docs/ko/edge/guide/support/index.md
+++ b/docs/ko/edge/guide/support/index.md
@@ -1,11 +1,21 @@
-* * *
+---
+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
 
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. 라이센스의 복사본을 얻을 수 있습니다.
+           http://www.apache.org/licenses/LICENSE-2.0
 
-           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.
+---
 
 # 플랫폼 지원
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/index.md b/docs/ko/edge/index.md
index 56f52f0..847a1d0 100644
--- a/docs/ko/edge/index.md
+++ b/docs/ko/edge/index.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 <div id="home">
   <h1>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/plugin_ref/plugman.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/plugin_ref/plugman.md b/docs/ko/edge/plugin_ref/plugman.md
index f00dde2..ab849da 100644
--- a/docs/ko/edge/plugin_ref/plugman.md
+++ b/docs/ko/edge/plugin_ref/plugman.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugman를 사용 하 여 플러그인을 관리 하
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ko/edge/plugin_ref/spec.md
----------------------------------------------------------------------
diff --git a/docs/ko/edge/plugin_ref/spec.md b/docs/ko/edge/plugin_ref/spec.md
index 8614efe..9fdbe4f 100644
--- a/docs/ko/edge/plugin_ref/spec.md
+++ b/docs/ko/edge/plugin_ref/spec.md
@@ -1,17 +1,21 @@
-* * *
-
-면허: 아파치 소프트웨어 재단 (ASF)에 하나 이상의 참가자 사용권 계약 하에서 허가 된. 저작권에 대한 추가 정보를 보려면 NOTICE 파일을 보십시오. ASF는 이 파일을 아파치 라이센스 2.0 (이하 "라이센스") 하에 배포합니다. 라이센스에 허가되지 않은 용도로는 이 파일을 사용하실 수 없습니다. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 플러그인 명세
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 9afe06e..7d804f8 100644
--- a/docs/pl/edge/config_ref/images.md
+++ b/docs/pl/edge/config_ref/images.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Ikony i ekrany powitalne w aplikacjach
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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..2847dab 100644
--- a/docs/pl/edge/config_ref/index.md
+++ b/docs/pl/edge/config_ref/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plik config.xml
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 4a6bc3a..6735fdb 100644
--- a/docs/pl/edge/cordova/events/events.backbutton.md
+++ b/docs/pl/edge/cordova/events/events.backbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # backbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 53f11bb..40d4ab4 100644
--- a/docs/pl/edge/cordova/events/events.deviceready.md
+++ b/docs/pl/edge/cordova/events/events.deviceready.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # deviceready
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 c76e714..03270e5 100644
--- a/docs/pl/edge/cordova/events/events.endcallbutton.md
+++ b/docs/pl/edge/cordova/events/events.endcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # endcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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..af8f82e 100644
--- a/docs/pl/edge/cordova/events/events.md
+++ b/docs/pl/edge/cordova/events/events.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Wydarzenia
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 92c540c..a8a44e3 100644
--- a/docs/pl/edge/cordova/events/events.menubutton.md
+++ b/docs/pl/edge/cordova/events/events.menubutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # menubutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 68eba45..c35b2c8 100644
--- a/docs/pl/edge/cordova/events/events.pause.md
+++ b/docs/pl/edge/cordova/events/events.pause.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # pauza
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 f8947ee..4157d19 100644
--- a/docs/pl/edge/cordova/events/events.resume.md
+++ b/docs/pl/edge/cordova/events/events.resume.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # CV
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 2fcac5b..6db2bd5 100644
--- a/docs/pl/edge/cordova/events/events.searchbutton.md
+++ b/docs/pl/edge/cordova/events/events.searchbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # searchbutton
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[13/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/win8/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/win8/index.md b/docs/es/edge/guide/platforms/win8/index.md
index b37e573..9b1fbe1 100644
--- a/docs/es/edge/guide/platforms/win8/index.md
+++ b/docs/es/edge/guide/platforms/win8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de la plataforma Windows
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/win8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/win8/plugin.md b/docs/es/edge/guide/platforms/win8/plugin.md
index fdea8e6..9f40840 100644
--- a/docs/es/edge/guide/platforms/win8/plugin.md
+++ b/docs/es/edge/guide/platforms/win8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/win8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/win8/upgrade.md b/docs/es/edge/guide/platforms/win8/upgrade.md
index aa24c06..d5d908b 100644
--- a/docs/es/edge/guide/platforms/win8/upgrade.md
+++ b/docs/es/edge/guide/platforms/win8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Actualización de Windows 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/wp8/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/wp8/index.md b/docs/es/edge/guide/platforms/wp8/index.md
index eea1132..4df6758 100644
--- a/docs/es/edge/guide/platforms/wp8/index.md
+++ b/docs/es/edge/guide/platforms/wp8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guía de la plataforma de Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/wp8/parallels.md b/docs/es/edge/guide/platforms/wp8/parallels.md
index fb7284b..cc28f64 100644
--- a/docs/es/edge/guide/platforms/wp8/parallels.md
+++ b/docs/es/edge/guide/platforms/wp8/parallels.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configuración de Parallels Desktop
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/wp8/plugin.md b/docs/es/edge/guide/platforms/wp8/plugin.md
index 3f42ddc..fe17e65 100644
--- a/docs/es/edge/guide/platforms/wp8/plugin.md
+++ b/docs/es/edge/guide/platforms/wp8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/wp8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/wp8/upgrade.md b/docs/es/edge/guide/platforms/wp8/upgrade.md
index 381319e..c939183 100644
--- a/docs/es/edge/guide/platforms/wp8/upgrade.md
+++ b/docs/es/edge/guide/platforms/wp8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Actualización de Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/wp8/vmware.md b/docs/es/edge/guide/platforms/wp8/vmware.md
index e1bd562..bdd64fa 100644
--- a/docs/es/edge/guide/platforms/wp8/vmware.md
+++ b/docs/es/edge/guide/platforms/wp8/vmware.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configuración de VMWare Fusion
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/platforms/wp8/webview.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/platforms/wp8/webview.md b/docs/es/edge/guide/platforms/wp8/webview.md
index 708780a..7c80385 100644
--- a/docs/es/edge/guide/platforms/wp8/webview.md
+++ b/docs/es/edge/guide/platforms/wp8/webview.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Windows Phone 8,0 WebViews
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/guide/support/index.md b/docs/es/edge/guide/support/index.md
index 58193c9..4216611 100644
--- a/docs/es/edge/guide/support/index.md
+++ b/docs/es/edge/guide/support/index.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Soporte de plataformas
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/index.md b/docs/es/edge/index.md
index a0a468f..e14a65c 100644
--- a/docs/es/edge/index.md
+++ b/docs/es/edge/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 <div id="home">
   <h1>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/plugin_ref/plugman.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/plugin_ref/plugman.md b/docs/es/edge/plugin_ref/plugman.md
index 4a4a9be..4b8c8b1 100644
--- a/docs/es/edge/plugin_ref/plugman.md
+++ b/docs/es/edge/plugin_ref/plugman.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Utilizando Plugman para administrar Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/es/edge/plugin_ref/spec.md
----------------------------------------------------------------------
diff --git a/docs/es/edge/plugin_ref/spec.md b/docs/es/edge/plugin_ref/spec.md
index b4a8fd5..3f2b8ab 100644
--- a/docs/es/edge/plugin_ref/spec.md
+++ b/docs/es/edge/plugin_ref/spec.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Especificación de plugin
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.1.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.1.0/guide/platforms/firefoxos/config.md b/docs/fr/3.1.0/guide/platforms/firefoxos/config.md
index b668afd..b372f2f 100644
--- a/docs/fr/3.1.0/guide/platforms/firefoxos/config.md
+++ b/docs/fr/3.1.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+--- 
 
 # Configuration de FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.4.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.4.0/cordova/plugins/pluginapis.md b/docs/fr/3.4.0/cordova/plugins/pluginapis.md
index 7c0e16c..9888df0 100644
--- a/docs/fr/3.4.0/cordova/plugins/pluginapis.md
+++ b/docs/fr/3.4.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limites
-    
-
-## aux termes de la licence.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.4.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.4.0/guide/platforms/amazonfireos/index.md b/docs/fr/3.4.0/guide/platforms/amazonfireos/index.md
index b2e2f4a..76d1e4d 100644
--- a/docs/fr/3.4.0/guide/platforms/amazonfireos/index.md
+++ b/docs/fr/3.4.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limites
-    
-
-## aux termes de la licence.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon Fire OS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.4.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.4.0/guide/platforms/firefoxos/config.md b/docs/fr/3.4.0/guide/platforms/firefoxos/config.md
index b668afd..9195e36 100644
--- a/docs/fr/3.4.0/guide/platforms/firefoxos/config.md
+++ b/docs/fr/3.4.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuration de FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.4.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.4.0/guide/platforms/wp8/plugin.md b/docs/fr/3.4.0/guide/platforms/wp8/plugin.md
index a14b9aa..6dfc3d9 100644
--- a/docs/fr/3.4.0/guide/platforms/wp8/plugin.md
+++ b/docs/fr/3.4.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.4.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.4.0/guide/support/index.md b/docs/fr/3.4.0/guide/support/index.md
index 44a5c56..9eb7131 100644
--- a/docs/fr/3.4.0/guide/support/index.md
+++ b/docs/fr/3.4.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limitations aux termes de la licence.
-    
+           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.
 ---
 
 # Plateforme de Support

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.5.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.5.0/cordova/plugins/pluginapis.md b/docs/fr/3.5.0/cordova/plugins/pluginapis.md
index 7c0e16c..9888df0 100644
--- a/docs/fr/3.5.0/cordova/plugins/pluginapis.md
+++ b/docs/fr/3.5.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limites
-    
-
-## aux termes de la licence.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.5.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.5.0/guide/platforms/amazonfireos/index.md b/docs/fr/3.5.0/guide/platforms/amazonfireos/index.md
index 53d3821..66e06c1 100644
--- a/docs/fr/3.5.0/guide/platforms/amazonfireos/index.md
+++ b/docs/fr/3.5.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limites
-    
-
-## aux termes de la licence.
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Amazon Fire OS Platform Guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.5.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.5.0/guide/platforms/firefoxos/config.md b/docs/fr/3.5.0/guide/platforms/firefoxos/config.md
index b668afd..9195e36 100644
--- a/docs/fr/3.5.0/guide/platforms/firefoxos/config.md
+++ b/docs/fr/3.5.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuration de FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.5.0/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.5.0/guide/platforms/wp8/parallels.md b/docs/fr/3.5.0/guide/platforms/wp8/parallels.md
index c731c35..d1d9590 100644
--- a/docs/fr/3.5.0/guide/platforms/wp8/parallels.md
+++ b/docs/fr/3.5.0/guide/platforms/wp8/parallels.md
@@ -1,15 +1,20 @@
---licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Configuration de Parallels Desktop

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.5.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.5.0/guide/platforms/wp8/plugin.md b/docs/fr/3.5.0/guide/platforms/wp8/plugin.md
index a14b9aa..6dfc3d9 100644
--- a/docs/fr/3.5.0/guide/platforms/wp8/plugin.md
+++ b/docs/fr/3.5.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
---licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone Plugins

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.5.0/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.5.0/guide/platforms/wp8/vmware.md b/docs/fr/3.5.0/guide/platforms/wp8/vmware.md
index 3523a6a..455b0ed 100644
--- a/docs/fr/3.5.0/guide/platforms/wp8/vmware.md
+++ b/docs/fr/3.5.0/guide/platforms/wp8/vmware.md
@@ -1,9 +1,21 @@
---licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limites
-    
-
-## aux termes de la licence.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configuration de VMWare Fusion
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/3.5.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/3.5.0/guide/support/index.md b/docs/fr/3.5.0/guide/support/index.md
index 3ed48a8..d007d7d 100644
--- a/docs/fr/3.5.0/guide/support/index.md
+++ b/docs/fr/3.5.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limitations aux termes de la licence.
-    
+           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.
 ---
 
 # Plateforme de Support

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/config_ref/images.md b/docs/fr/edge/config_ref/images.md
index 929db35..5ec8806 100644
--- a/docs/fr/edge/config_ref/images.md
+++ b/docs/fr/edge/config_ref/images.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier des Remarques distribué avec ce travail d'information additionnel concernant les droits d'auteur. L'ASF vous licencis ce fichier sous licence Apache, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier qu'en conformité avec la licence. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Icones et Splash Screen
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/config_ref/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/config_ref/index.md b/docs/fr/edge/config_ref/index.md
index 7d67866..c8afa79 100644
--- a/docs/fr/edge/config_ref/index.md
+++ b/docs/fr/edge/config_ref/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Le fichier config.xml
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.backbutton.md b/docs/fr/edge/cordova/events/events.backbutton.md
index b36dd67..a958edb 100644
--- a/docs/fr/edge/cordova/events/events.backbutton.md
+++ b/docs/fr/edge/cordova/events/events.backbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # backbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.deviceready.md b/docs/fr/edge/cordova/events/events.deviceready.md
index cfe390e..b49358c 100644
--- a/docs/fr/edge/cordova/events/events.deviceready.md
+++ b/docs/fr/edge/cordova/events/events.deviceready.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # deviceready
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.endcallbutton.md b/docs/fr/edge/cordova/events/events.endcallbutton.md
index cfff13e..ed904aa 100644
--- a/docs/fr/edge/cordova/events/events.endcallbutton.md
+++ b/docs/fr/edge/cordova/events/events.endcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # endcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.md b/docs/fr/edge/cordova/events/events.md
index b7b7720..4ef79b5 100644
--- a/docs/fr/edge/cordova/events/events.md
+++ b/docs/fr/edge/cordova/events/events.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Évènements
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.menubutton.md b/docs/fr/edge/cordova/events/events.menubutton.md
index 3f13ec9..d1df90a 100644
--- a/docs/fr/edge/cordova/events/events.menubutton.md
+++ b/docs/fr/edge/cordova/events/events.menubutton.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # menubutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.pause.md b/docs/fr/edge/cordova/events/events.pause.md
index 5429695..a04e988 100644
--- a/docs/fr/edge/cordova/events/events.pause.md
+++ b/docs/fr/edge/cordova/events/events.pause.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # pause
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.resume.md b/docs/fr/edge/cordova/events/events.resume.md
index 141e0cc..54e5762 100644
--- a/docs/fr/edge/cordova/events/events.resume.md
+++ b/docs/fr/edge/cordova/events/events.resume.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # resume
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.searchbutton.md b/docs/fr/edge/cordova/events/events.searchbutton.md
index 0091749..7c7f09f 100644
--- a/docs/fr/edge/cordova/events/events.searchbutton.md
+++ b/docs/fr/edge/cordova/events/events.searchbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # searchbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.startcallbutton.md b/docs/fr/edge/cordova/events/events.startcallbutton.md
index aa761fd..d9d49fa 100644
--- a/docs/fr/edge/cordova/events/events.startcallbutton.md
+++ b/docs/fr/edge/cordova/events/events.startcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # startcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.volumedownbutton.md b/docs/fr/edge/cordova/events/events.volumedownbutton.md
index 28e215a..6806915 100644
--- a/docs/fr/edge/cordova/events/events.volumedownbutton.md
+++ b/docs/fr/edge/cordova/events/events.volumedownbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumedownbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/events/events.volumeupbutton.md b/docs/fr/edge/cordova/events/events.volumeupbutton.md
index 9fd6a93..a765dc5 100644
--- a/docs/fr/edge/cordova/events/events.volumeupbutton.md
+++ b/docs/fr/edge/cordova/events/events.volumeupbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/plugins/pluginapis.md b/docs/fr/edge/cordova/plugins/pluginapis.md
index 57a7492..24f8c18 100644
--- a/docs/fr/edge/cordova/plugins/pluginapis.md
+++ b/docs/fr/edge/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limites
-    
-
-## aux termes de la licence.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Plugin API
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/storage/storage.md b/docs/fr/edge/cordova/storage/storage.md
index 11cf924..beb421d 100644
--- a/docs/fr/edge/cordova/storage/storage.md
+++ b/docs/fr/edge/cordova/storage/storage.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Stockage
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/appdev/privacy/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/appdev/privacy/index.md b/docs/fr/edge/guide/appdev/privacy/index.md
index 0e98c32..efa1a0e 100644
--- a/docs/fr/edge/guide/appdev/privacy/index.md
+++ b/docs/fr/edge/guide/appdev/privacy/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guide de la vie privée
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/appdev/security/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/appdev/security/index.md b/docs/fr/edge/guide/appdev/security/index.md
index 43f42dd..fa227a1 100644
--- a/docs/fr/edge/guide/appdev/security/index.md
+++ b/docs/fr/edge/guide/appdev/security/index.md
@@ -1,11 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. Voir le fichier avis distribué avec ce travail d'information additionnelle concernant les droits d'auteur. L'ASF licenses ce fichier vous sous Apache License, Version 2.0 (la "licence") ; vous ne pouvez utiliser ce fichier sauf en conformité avec la licence. Vous pouvez obtenir une copie de la licence à
-
-           http://www.Apache.org/licenses/License-2.0 sauf si requis par la loi applicable ou accord écrit, distribué sous la licence de logiciel est distribué sur un « Tel quel » fondement, sans garanties ou CONDITIONS d'aucune sorte, explicite ou implicite.  Voir la licence pour la langue spécifique régissant les autorisations et les limites
-    
-
-## aux termes de la licence.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Guide de sécurité
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/appdev/whitelist/index.md b/docs/fr/edge/guide/appdev/whitelist/index.md
index 7909096..9acf2cf 100644
--- a/docs/fr/edge/guide/appdev/whitelist/index.md
+++ b/docs/fr/edge/guide/appdev/whitelist/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guide de la liste blanche
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/cli/index.md b/docs/fr/edge/guide/cli/index.md
index 99ec2ce..adee446 100644
--- a/docs/fr/edge/guide/cli/index.md
+++ b/docs/fr/edge/guide/cli/index.md
@@ -1,18 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # L'Interface en ligne de commande
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/fr/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/guide/hybrid/plugins/index.md b/docs/fr/edge/guide/hybrid/plugins/index.md
index 72f0bbf..2b83133 100644
--- a/docs/fr/edge/guide/hybrid/plugins/index.md
+++ b/docs/fr/edge/guide/hybrid/plugins/index.md
@@ -1,17 +1,21 @@
-* * *
-
-licence : une licence à l'Apache Software Foundation (ASF) au titre d'un ou plusieurs contrats de licence pour le cotisant. 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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guide de développement de plugin
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[10/18] docs commit: CB-8219 Add missing license headers from translations (close #250)

Posted by ag...@apache.org.
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/firefoxos/config.md b/docs/it/edge/guide/platforms/firefoxos/config.md
index 5e70d7e..d5e0b9a 100644
--- a/docs/it/edge/guide/platforms/firefoxos/config.md
+++ b/docs/it/edge/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configurazione FirefoxOS
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/firefoxos/index.md b/docs/it/edge/guide/platforms/firefoxos/index.md
index e8849f6..a61653f 100644
--- a/docs/it/edge/guide/platforms/firefoxos/index.md
+++ b/docs/it/edge/guide/platforms/firefoxos/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Firefox guida piattaforma OS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/index.md b/docs/it/edge/guide/platforms/index.md
index 9de7c8f..0691c14 100644
--- a/docs/it/edge/guide/platforms/index.md
+++ b/docs/it/edge/guide/platforms/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Piattaforma guide
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/ios/config.md b/docs/it/edge/guide/platforms/ios/config.md
index 2a75768..303b38c 100644
--- a/docs/it/edge/guide/platforms/ios/config.md
+++ b/docs/it/edge/guide/platforms/ios/config.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configurazione iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/ios/index.md b/docs/it/edge/guide/platforms/ios/index.md
index 6434105..7972c21 100644
--- a/docs/it/edge/guide/platforms/ios/index.md
+++ b/docs/it/edge/guide/platforms/ios/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS guida piattaforma
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/ios/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/ios/plugin.md b/docs/it/edge/guide/platforms/ios/plugin.md
index 4b1d041..3d5a1db 100644
--- a/docs/it/edge/guide/platforms/ios/plugin.md
+++ b/docs/it/edge/guide/platforms/ios/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-         KIND, either express or implied. See the License for the
+         KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS Plugins
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/ios/tools.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/ios/tools.md b/docs/it/edge/guide/platforms/ios/tools.md
index 9660bb6..00b913b 100644
--- a/docs/it/edge/guide/platforms/ios/tools.md
+++ b/docs/it/edge/guide/platforms/ios/tools.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS guida strumento Shell
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/ios/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/ios/upgrade.md b/docs/it/edge/guide/platforms/ios/upgrade.md
index 1f02de2..b2b1a76 100644
--- a/docs/it/edge/guide/platforms/ios/upgrade.md
+++ b/docs/it/edge/guide/platforms/ios/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # L'aggiornamento iOS
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/ios/webview.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/ios/webview.md b/docs/it/edge/guide/platforms/ios/webview.md
index 35308a1..2b62d0f 100644
--- a/docs/it/edge/guide/platforms/ios/webview.md
+++ b/docs/it/edge/guide/platforms/ios/webview.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # iOS visualizzazioni Web
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/tizen/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/tizen/index.md b/docs/it/edge/guide/platforms/tizen/index.md
index 837c51e..1871896 100644
--- a/docs/it/edge/guide/platforms/tizen/index.md
+++ b/docs/it/edge/guide/platforms/tizen/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Tizen piattaforma guida
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/ubuntu/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/ubuntu/index.md b/docs/it/edge/guide/platforms/ubuntu/index.md
index 576a1b8..0e815a9 100644
--- a/docs/it/edge/guide/platforms/ubuntu/index.md
+++ b/docs/it/edge/guide/platforms/ubuntu/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Piattaforma ubuntu guida
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/win8/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/win8/index.md b/docs/it/edge/guide/platforms/win8/index.md
index 2c93cdc..ee5593a 100644
--- a/docs/it/edge/guide/platforms/win8/index.md
+++ b/docs/it/edge/guide/platforms/win8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guida alla piattaforma Windows
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 9ddcac0..ea02e4b 100644
--- a/docs/it/edge/guide/platforms/win8/plugin.md
+++ b/docs/it/edge/guide/platforms/win8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugin di Windows
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/win8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/win8/upgrade.md b/docs/it/edge/guide/platforms/win8/upgrade.md
index b94fe30..0d0eda1 100644
--- a/docs/it/edge/guide/platforms/win8/upgrade.md
+++ b/docs/it/edge/guide/platforms/win8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # L'aggiornamento di Windows 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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 9dd54b7..b6dee8d 100644
--- a/docs/it/edge/guide/platforms/wp8/index.md
+++ b/docs/it/edge/guide/platforms/wp8/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Guida di Windows Phone 8 piattaforma
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/wp8/parallels.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/wp8/parallels.md b/docs/it/edge/guide/platforms/wp8/parallels.md
index e87201b..fa8996c 100644
--- a/docs/it/edge/guide/platforms/wp8/parallels.md
+++ b/docs/it/edge/guide/platforms/wp8/parallels.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Configurazione di Parallels Desktop
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/wp8/plugin.md b/docs/it/edge/guide/platforms/wp8/plugin.md
index 7e14dbd..43f9e28 100644
--- a/docs/it/edge/guide/platforms/wp8/plugin.md
+++ b/docs/it/edge/guide/platforms/wp8/plugin.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Windows Phone 8 plugin
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/wp8/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/wp8/upgrade.md b/docs/it/edge/guide/platforms/wp8/upgrade.md
index 5cf5051..de6d232 100644
--- a/docs/it/edge/guide/platforms/wp8/upgrade.md
+++ b/docs/it/edge/guide/platforms/wp8/upgrade.md
@@ -1,17 +1,21 @@
-* * *
-
-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. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # L'aggiornamento di Windows Phone 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/platforms/wp8/vmware.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/platforms/wp8/vmware.md b/docs/it/edge/guide/platforms/wp8/vmware.md
index 27e3005..5d6f57d 100644
--- a/docs/it/edge/guide/platforms/wp8/vmware.md
+++ b/docs/it/edge/guide/platforms/wp8/vmware.md
@@ -1,11 +1,21 @@
-* * *
-
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
-
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni
-    
-
-## con la licenza.
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # Configurazione di VMWare Fusion
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/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
index 81ae8d4..88b3e33 100644
--- a/docs/it/edge/guide/platforms/wp8/webview.md
+++ b/docs/it/edge/guide/platforms/wp8/webview.md
@@ -1,18 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
-    
-
-* * *
+---
 
 # Windows Phone visualizzazioni 8,0 Web
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/guide/support/index.md b/docs/it/edge/guide/support/index.md
index b588cb3..370d755 100644
--- a/docs/it/edge/guide/support/index.md
+++ b/docs/it/edge/guide/support/index.md
@@ -1,11 +1,21 @@
-* * *
+---
+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
 
-licenza: licenza uno o più contratti di licenza di collaboratore per l'Apache Software Foundation (ASF). Vedere il file avviso distribuito con questo lavoro per ulteriori informazioni riguardanti la proprietà del copyright. L'ASF licenze questo file a voi con la licenza Apache, versione 2.0 (la "licenza"); non si può usare questo file se non in conformità con la licenza. È possibile ottenere una copia della licenza a
+           http://www.apache.org/licenses/LICENSE-2.0
 
-           http://www.apache.org/licenses/License-2.0 se non richiesto dalla legge o concordato per iscritto, il software distribuito sotto la licenza è distribuito su un "AS IS" base, senza garanzie o condizioni di alcun tipo, esplicita o implicita.  Vedere la licenza per la lingua specifica che disciplina le autorizzazioni e limitazioni della licenza.
-    
-
-* * *
+         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.
+---
 
 # Supporto di piattaforma
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/index.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/index.md b/docs/it/edge/index.md
index e2234a9..778ec3c 100644
--- a/docs/it/edge/index.md
+++ b/docs/it/edge/index.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 <div id="home">
   <h1>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/plugin_ref/plugman.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/plugin_ref/plugman.md b/docs/it/edge/plugin_ref/plugman.md
index 2fefb18..5d92ae3 100644
--- a/docs/it/edge/plugin_ref/plugman.md
+++ b/docs/it/edge/plugin_ref/plugman.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # L'utilizzo di Plugman per gestire i plugin
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/it/edge/plugin_ref/spec.md
----------------------------------------------------------------------
diff --git a/docs/it/edge/plugin_ref/spec.md b/docs/it/edge/plugin_ref/spec.md
index 2a656aa..7c44727 100644
--- a/docs/it/edge/plugin_ref/spec.md
+++ b/docs/it/edge/plugin_ref/spec.md
@@ -1,17 +1,21 @@
-* * *
-
-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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Plugin Specification
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/2.2.0/guide/getting-started/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/getting-started/ios/index.md b/docs/ja/2.2.0/guide/getting-started/ios/index.md
index a40d33a..1532c4b 100644
--- a/docs/ja/2.2.0/guide/getting-started/ios/index.md
+++ b/docs/ja/2.2.0/guide/getting-started/ios/index.md
@@ -1,4 +1,4 @@
-/--
+---
 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

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/2.2.0/guide/project-settings/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/2.2.0/guide/project-settings/ios/index.md b/docs/ja/2.2.0/guide/project-settings/ios/index.md
index 331e3d2..b5dbb27 100644
--- a/docs/ja/2.2.0/guide/project-settings/ios/index.md
+++ b/docs/ja/2.2.0/guide/project-settings/ios/index.md
@@ -1,23 +1,21 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 Project Settings for iOS
 ========================

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.1.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.1.0/guide/platforms/firefoxos/config.md b/docs/ja/3.1.0/guide/platforms/firefoxos/config.md
index 91cedd2..03174d6 100644
--- a/docs/ja/3.1.0/guide/platforms/firefoxos/config.md
+++ b/docs/ja/3.1.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 構成
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.4.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.4.0/cordova/plugins/pluginapis.md b/docs/ja/3.4.0/cordova/plugins/pluginapis.md
index cb1c516..a486f10 100644
--- a/docs/ja/3.4.0/cordova/plugins/pluginapis.md
+++ b/docs/ja/3.4.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ライセンスの下で配布されるソフトウェアで配布されて適用される法律によって必要なまたは書面で合意した、しない限り、"AS IS"なしの保証または条件、いかなる種類の明示的または黙示的、基礎。  アクセス許可と制限を支配する特定の言語用のライセンスを参照してください。
-    
-
-## ライセンス。
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # プラグイン Api
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.4.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.4.0/guide/platforms/amazonfireos/index.md b/docs/ja/3.4.0/guide/platforms/amazonfireos/index.md
index c88da30..86f16ef 100644
--- a/docs/ja/3.4.0/guide/platforms/amazonfireos/index.md
+++ b/docs/ja/3.4.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ライセンスの下で配布されるソフトウェアで配布されて適用される法律によって必要なまたは書面で合意した、しない限り、"AS IS"なしの保証または条件、いかなる種類の明示的または黙示的、基礎。  アクセス許可と制限を支配する特定の言語用のライセンスを参照してください。
-    
-
-## ライセンス。
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # アマゾン火 OS プラットフォーム ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.4.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.4.0/guide/platforms/firefoxos/config.md b/docs/ja/3.4.0/guide/platforms/firefoxos/config.md
index 91cedd2..03174d6 100644
--- a/docs/ja/3.4.0/guide/platforms/firefoxos/config.md
+++ b/docs/ja/3.4.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 構成
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.4.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.4.0/guide/platforms/wp8/plugin.md b/docs/ja/3.4.0/guide/platforms/wp8/plugin.md
index 2d27f33..7795e69 100644
--- a/docs/ja/3.4.0/guide/platforms/wp8/plugin.md
+++ b/docs/ja/3.4.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
--ライセンス: Apache ソフトウェア財団 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone のプラグイン

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.4.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.4.0/guide/support/index.md b/docs/ja/3.4.0/guide/support/index.md
index 4ab20de..0e4829f 100644
--- a/docs/ja/3.4.0/guide/support/index.md
+++ b/docs/ja/3.4.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ライセンスの下で配布されるソフトウェアで配布されて適用される法律によって必要なまたは書面で合意した、しない限り、"AS IS"なしの保証または条件、いかなる種類の明示的または黙示的、基礎。  ライセンス ライセンスにおける権限と制限を支配する特定の言語を参照してください。
-    
+           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.
 ---
 
 # プラットフォームのサポート

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.5.0/cordova/plugins/pluginapis.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.5.0/cordova/plugins/pluginapis.md b/docs/ja/3.5.0/cordova/plugins/pluginapis.md
index cb1c516..a486f10 100644
--- a/docs/ja/3.5.0/cordova/plugins/pluginapis.md
+++ b/docs/ja/3.5.0/cordova/plugins/pluginapis.md
@@ -1,11 +1,21 @@
 ---
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ライセンスの下で配布されるソフトウェアで配布されて適用される法律によって必要なまたは書面で合意した、しない限り、"AS IS"なしの保証または条件、いかなる種類の明示的または黙示的、基礎。  アクセス許可と制限を支配する特定の言語用のライセンスを参照してください。
-    
-
-## ライセンス。
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # プラグイン Api
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.5.0/guide/platforms/amazonfireos/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.5.0/guide/platforms/amazonfireos/index.md b/docs/ja/3.5.0/guide/platforms/amazonfireos/index.md
index c88da30..86f16ef 100644
--- a/docs/ja/3.5.0/guide/platforms/amazonfireos/index.md
+++ b/docs/ja/3.5.0/guide/platforms/amazonfireos/index.md
@@ -1,11 +1,21 @@
 ---
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ライセンスの下で配布されるソフトウェアで配布されて適用される法律によって必要なまたは書面で合意した、しない限り、"AS IS"なしの保証または条件、いかなる種類の明示的または黙示的、基礎。  アクセス許可と制限を支配する特定の言語用のライセンスを参照してください。
-    
-
-## ライセンス。
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # アマゾン火 OS プラットフォーム ガイド
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.5.0/guide/platforms/firefoxos/config.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.5.0/guide/platforms/firefoxos/config.md b/docs/ja/3.5.0/guide/platforms/firefoxos/config.md
index 91cedd2..03174d6 100644
--- a/docs/ja/3.5.0/guide/platforms/firefoxos/config.md
+++ b/docs/ja/3.5.0/guide/platforms/firefoxos/config.md
@@ -1,22 +1,20 @@
-<!--
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
--->
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
 
 # FirefoxOS 構成
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.5.0/guide/platforms/wp8/plugin.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.5.0/guide/platforms/wp8/plugin.md b/docs/ja/3.5.0/guide/platforms/wp8/plugin.md
index 2d27f33..7795e69 100644
--- a/docs/ja/3.5.0/guide/platforms/wp8/plugin.md
+++ b/docs/ja/3.5.0/guide/platforms/wp8/plugin.md
@@ -1,15 +1,20 @@
--ライセンス: Apache ソフトウェア財団 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-   under the License.
+         under the License.
 ---
 
 # Windows Phone のプラグイン

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/3.5.0/guide/support/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/3.5.0/guide/support/index.md b/docs/ja/3.5.0/guide/support/index.md
index 4ab20de..0e4829f 100644
--- a/docs/ja/3.5.0/guide/support/index.md
+++ b/docs/ja/3.5.0/guide/support/index.md
@@ -1,10 +1,20 @@
 ---
+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
 
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 ライセンスのコピーを入手した可能性があります。
-
-           http://www.apache.org/licenses/LICENSE-2.0 ライセンスの下で配布されるソフトウェアで配布されて適用される法律によって必要なまたは書面で合意した、しない限り、"AS IS"なしの保証または条件、いかなる種類の明示的または黙示的、基礎。  ライセンス ライセンスにおける権限と制限を支配する特定の言語を参照してください。
-    
+           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.
 ---
 
 # プラットフォームのサポート

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/config_ref/images.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/config_ref/images.md b/docs/ja/edge/config_ref/images.md
index 6b41317..ef6cd0b 100644
--- a/docs/ja/edge/config_ref/images.md
+++ b/docs/ja/edge/config_ref/images.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (ASF) を 1 つまたは複数の共同作成者のライセンス契約の下でライセンスされています。 著作権所有権に関する追加情報のためのこの仕事と分散 NOTICE ファイルを参照してください。 ASF は、Version 2.0 (「ライセンス」); Apache ライセンスの下であなたにこのファイルをライセンスします。ライセンスに従う場合、このファイルを使用可能性があります。 You may obtain a copy of the License at
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # アイコンとスプラッシュ画面
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/config_ref/index.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/config_ref/index.md b/docs/ja/edge/config_ref/index.md
index c19f2d0..20a22c3 100644
--- a/docs/ja/edge/config_ref/index.md
+++ b/docs/ja/edge/config_ref/index.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # Config.xml ファイル
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.backbutton.md b/docs/ja/edge/cordova/events/events.backbutton.md
index d806d38..c2b8c04 100644
--- a/docs/ja/edge/cordova/events/events.backbutton.md
+++ b/docs/ja/edge/cordova/events/events.backbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # backbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.deviceready.md b/docs/ja/edge/cordova/events/events.deviceready.md
index 0f814dc..76eb743 100644
--- a/docs/ja/edge/cordova/events/events.deviceready.md
+++ b/docs/ja/edge/cordova/events/events.deviceready.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # deviceready
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.endcallbutton.md b/docs/ja/edge/cordova/events/events.endcallbutton.md
index 7b192b5..e4f2010 100644
--- a/docs/ja/edge/cordova/events/events.endcallbutton.md
+++ b/docs/ja/edge/cordova/events/events.endcallbutton.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # endcallbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.md b/docs/ja/edge/cordova/events/events.md
index f7941e1..54859c8 100644
--- a/docs/ja/edge/cordova/events/events.md
+++ b/docs/ja/edge/cordova/events/events.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # イベント
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.menubutton.md b/docs/ja/edge/cordova/events/events.menubutton.md
index d86ebc4..16f5246 100644
--- a/docs/ja/edge/cordova/events/events.menubutton.md
+++ b/docs/ja/edge/cordova/events/events.menubutton.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # menubutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.pause.md b/docs/ja/edge/cordova/events/events.pause.md
index 0c65158..1732f8f 100644
--- a/docs/ja/edge/cordova/events/events.pause.md
+++ b/docs/ja/edge/cordova/events/events.pause.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 一時停止します。
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d717119d/docs/ja/edge/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/docs/ja/edge/cordova/events/events.resume.md b/docs/ja/edge/cordova/events/events.resume.md
index 76c82ff..2bf0eb9 100644
--- a/docs/ja/edge/cordova/events/events.resume.md
+++ b/docs/ja/edge/cordova/events/events.resume.md
@@ -1,17 +1,21 @@
-* * *
-
-免許証: アパッシュ ソフトウェア基礎 (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
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
 
            http://www.apache.org/licenses/LICENSE-2.0
-    
+
          Unless required by applicable law or agreed to in writing,
          software distributed under the License is distributed on an
          "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
-    
-
-## under the License.
+         under the License.
+---
 
 # 再開
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org