You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/09/22 01:42:49 UTC

[50/51] [partial] docs commit: Made the first heading in each docs page the page title. This closes #357.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_includes/head.html
----------------------------------------------------------------------
diff --git a/www/_includes/head.html b/www/_includes/head.html
index d0d3f69..adfce81 100644
--- a/www/_includes/head.html
+++ b/www/_includes/head.html
@@ -6,7 +6,17 @@
     <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
     <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else if page.description %}{{ page.description }} {% else %}{{ site.description }}{% endif %}">
 
-    <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
+    <title>
+        {% if page.title %}
+            {% if page.title_prefix %}
+                {{ page.title_prefix }} - {{ page.title }}
+            {% else %}
+                {{ page.title }}
+            {% endif %}
+        {% else %}
+            {{ site.title }}
+        {% endif %}
+    </title>
 
     <link rel="SHORTCUT ICON" href="{{ site.baseurl }}/favicon.ico"/>
     <link rel="canonical" href="{{ site.url }}{{ site.baseurl }}{{ page.url | replace:'index.html','' }}">

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-de.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-de.html b/www/_layouts/docs-de.html
index a3b979d..50f0fe1 100644
--- a/www/_layouts/docs-de.html
+++ b/www/_layouts/docs-de.html
@@ -2,6 +2,7 @@
 layout: docs
 not_latest_warning_text: Dies ist nicht die neueste Version der Dokumentation!
 toc_text: Inhaltsverzeichnis
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-en.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-en.html b/www/_layouts/docs-en.html
index 3387436..b379bac 100644
--- a/www/_layouts/docs-en.html
+++ b/www/_layouts/docs-en.html
@@ -2,6 +2,7 @@
 layout: docs
 not_latest_warning_text: This is not the latest version of the documentation!
 toc_text: Table of Contents
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-es.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-es.html b/www/_layouts/docs-es.html
index 72bbcdc..e55a9e8 100644
--- a/www/_layouts/docs-es.html
+++ b/www/_layouts/docs-es.html
@@ -1,8 +1,8 @@
 ---
 layout: docs
-title: Documentación Apache Cordova
 not_latest_warning_text: Esta no es la versión más reciente de la documentación!
 toc_text: Tabla de Contenidos
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-fr.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-fr.html b/www/_layouts/docs-fr.html
index ae4691a..1cbecac 100644
--- a/www/_layouts/docs-fr.html
+++ b/www/_layouts/docs-fr.html
@@ -1,8 +1,8 @@
 ---
 layout: docs
-title:  Documentation API Apache Cordova
 not_latest_warning_text: Ca n'est past la dernière version de la documentation.
 toc_text: Table des Matières
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-it.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-it.html b/www/_layouts/docs-it.html
index 621d806..4c74825 100644
--- a/www/_layouts/docs-it.html
+++ b/www/_layouts/docs-it.html
@@ -2,6 +2,7 @@
 layout: docs
 not_latest_warning_text: Questa non è la versione più recente della documentazione!
 toc_text: Sommario
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-ja.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-ja.html b/www/_layouts/docs-ja.html
index 59e1e40..0dee445 100644
--- a/www/_layouts/docs-ja.html
+++ b/www/_layouts/docs-ja.html
@@ -2,6 +2,7 @@
 layout: docs
 not_latest_warning_text: これがないドキュメントの最新バージョンです!
 toc_text: 目次
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-ko.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-ko.html b/www/_layouts/docs-ko.html
index ffdfc9a..00f43e9 100644
--- a/www/_layouts/docs-ko.html
+++ b/www/_layouts/docs-ko.html
@@ -2,6 +2,7 @@
 layout: docs
 not_latest_warning_text: 이 아닌 문서의 최신 버전입니다!
 toc_text: 차례
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-pl.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-pl.html b/www/_layouts/docs-pl.html
index ae30e52..298fb91 100644
--- a/www/_layouts/docs-pl.html
+++ b/www/_layouts/docs-pl.html
@@ -2,6 +2,7 @@
 layout: docs
 not_latest_warning_text: Nie jest to najnowsza wersja dokumentacji!
 toc_text: Spis treści
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-ru.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-ru.html b/www/_layouts/docs-ru.html
index 7e26906..4de608d 100644
--- a/www/_layouts/docs-ru.html
+++ b/www/_layouts/docs-ru.html
@@ -1,8 +1,8 @@
 ---
 layout: docs
-title: Документация API Apache Cordova
 not_latest_warning_text: Это не самая последняя версия документации!
 toc_text: Содержание
+title_prefix: Apache Cordova
 ---
 
 <style type="text/css">

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-sl.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-sl.html b/www/_layouts/docs-sl.html
index 10cb519..f78b7fd 100644
--- a/www/_layouts/docs-sl.html
+++ b/www/_layouts/docs-sl.html
@@ -2,6 +2,7 @@
 layout: docs
 not_latest_warning_text: To ni najnovejša različica dokumentacije!
 toc_text: Kazalo
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/_layouts/docs-zh.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-zh.html b/www/_layouts/docs-zh.html
index eb03c81..7cd090c 100644
--- a/www/_layouts/docs-zh.html
+++ b/www/_layouts/docs-zh.html
@@ -2,6 +2,7 @@
 layout: docs
 not_latest_warning_text: 这不是文档的最新版本!
 toc_text: 目录
+title_prefix: Apache Cordova
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/config_ref/images.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/config_ref/images.md b/www/docs/de/3.1.0/config_ref/images.md
index 4f4cf6c..6868292 100644
--- a/www/docs/de/3.1.0/config_ref/images.md
+++ b/www/docs/de/3.1.0/config_ref/images.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Symbole und Splash-Screens
 ---
 
 # Symbole und Splash-Screens

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/config_ref/index.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/config_ref/index.md b/www/docs/de/3.1.0/config_ref/index.md
index 34b67c9..0a9c9de 100644
--- a/www/docs/de/3.1.0/config_ref/index.md
+++ b/www/docs/de/3.1.0/config_ref/index.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Die Datei config.xml
 ---
 
 # Die Datei config.xml

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/accelerometer/acceleration/acceleration.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/accelerometer/acceleration/acceleration.md b/www/docs/de/3.1.0/cordova/accelerometer/acceleration/acceleration.md
index c7e9155..541d524 100644
--- a/www/docs/de/3.1.0/cordova/accelerometer/acceleration/acceleration.md
+++ b/www/docs/de/3.1.0/cordova/accelerometer/acceleration/acceleration.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Beschleunigung
 ---
 
 # Beschleunigung

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.clearWatch.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.clearWatch.md b/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.clearWatch.md
index 5ceea4a..dbd1a9b 100644
--- a/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.clearWatch.md
+++ b/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.clearWatch.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: accelerometer.clearWatch
 ---
 
 # accelerometer.clearWatch

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md b/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md
index b849943..60bd7aa 100644
--- a/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md
+++ b/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: accelerometer.getCurrentAcceleration
 ---
 
 # accelerometer.getCurrentAcceleration

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.md b/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.md
index 9ee4fdd..bb69d6f 100644
--- a/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.md
+++ b/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Beschleunigungsmesser
 ---
 
 # Beschleunigungsmesser

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.watchAcceleration.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.watchAcceleration.md b/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.watchAcceleration.md
index 90a30b2..7a20bd5 100644
--- a/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.watchAcceleration.md
+++ b/www/docs/de/3.1.0/cordova/accelerometer/accelerometer.watchAcceleration.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: accelerometer.watchAcceleration
 ---
 
 # accelerometer.watchAcceleration

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerError.md b/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerError.md
index 1448b3f..0662f3f 100644
--- a/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerError.md
+++ b/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: accelerometerError
 ---
 
 # accelerometerError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerOptions.md b/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerOptions.md
index 795679a..5ceb1c7 100644
--- a/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerOptions.md
+++ b/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerOptions.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: accelerometerOptions
 ---
 
 # accelerometerOptions

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerSuccess.md b/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerSuccess.md
index cf9eddb..cedaf85 100644
--- a/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerSuccess.md
+++ b/www/docs/de/3.1.0/cordova/accelerometer/parameters/accelerometerSuccess.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: accelerometerSuccess
 ---
 
 # accelerometerSuccess

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/camera/camera.cleanup.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/camera/camera.cleanup.md b/www/docs/de/3.1.0/cordova/camera/camera.cleanup.md
index 4ce8ee6..2507c47 100644
--- a/www/docs/de/3.1.0/cordova/camera/camera.cleanup.md
+++ b/www/docs/de/3.1.0/cordova/camera/camera.cleanup.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: camera.cleanup
 ---
 
 # camera.cleanup

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/camera/camera.getPicture.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/camera/camera.getPicture.md b/www/docs/de/3.1.0/cordova/camera/camera.getPicture.md
index 00bdb13..3eb623b 100644
--- a/www/docs/de/3.1.0/cordova/camera/camera.getPicture.md
+++ b/www/docs/de/3.1.0/cordova/camera/camera.getPicture.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: camera.getPicture
 ---
 
 # camera.getPicture

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/camera/camera.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/camera/camera.md b/www/docs/de/3.1.0/cordova/camera/camera.md
index 1380d36..cccfefe 100644
--- a/www/docs/de/3.1.0/cordova/camera/camera.md
+++ b/www/docs/de/3.1.0/cordova/camera/camera.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Kamera
 ---
 
 # Kamera

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverHandle.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverHandle.md b/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverHandle.md
index 1f3ace1..c8376e4 100644
--- a/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverHandle.md
+++ b/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverHandle.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: CameraPopoverHandle
 ---
 
 # CameraPopoverHandle

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverOptions.md b/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverOptions.md
index 5d19d30..8b770d1 100644
--- a/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverOptions.md
+++ b/www/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverOptions.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: CameraPopoverOptions
 ---
 
 # CameraPopoverOptions

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/camera/parameter/cameraError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/camera/parameter/cameraError.md b/www/docs/de/3.1.0/cordova/camera/parameter/cameraError.md
index f6192c2..0076611 100644
--- a/www/docs/de/3.1.0/cordova/camera/parameter/cameraError.md
+++ b/www/docs/de/3.1.0/cordova/camera/parameter/cameraError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: cameraError
 ---
 
 # cameraError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/camera/parameter/cameraOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/camera/parameter/cameraOptions.md b/www/docs/de/3.1.0/cordova/camera/parameter/cameraOptions.md
index c13cb34..1b6e60e 100644
--- a/www/docs/de/3.1.0/cordova/camera/parameter/cameraOptions.md
+++ b/www/docs/de/3.1.0/cordova/camera/parameter/cameraOptions.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: cameraOptions
 ---
 
 # cameraOptions

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/camera/parameter/cameraSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/camera/parameter/cameraSuccess.md b/www/docs/de/3.1.0/cordova/camera/parameter/cameraSuccess.md
index e5c33a5..e8d4c6a 100644
--- a/www/docs/de/3.1.0/cordova/camera/parameter/cameraSuccess.md
+++ b/www/docs/de/3.1.0/cordova/camera/parameter/cameraSuccess.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: cameraSuccess
 ---
 
 # cameraSuccess

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/compass.clearWatch.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/compass.clearWatch.md b/www/docs/de/3.1.0/cordova/compass/compass.clearWatch.md
index 3bd4fc6..928b469 100644
--- a/www/docs/de/3.1.0/cordova/compass/compass.clearWatch.md
+++ b/www/docs/de/3.1.0/cordova/compass/compass.clearWatch.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: compass.clearWatch
 ---
 
 # compass.clearWatch

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/compass.clearWatchFilter.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/compass.clearWatchFilter.md b/www/docs/de/3.1.0/cordova/compass/compass.clearWatchFilter.md
index a034011..41329c2 100644
--- a/www/docs/de/3.1.0/cordova/compass/compass.clearWatchFilter.md
+++ b/www/docs/de/3.1.0/cordova/compass/compass.clearWatchFilter.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: compass.clearWatchFilter
 ---
 
 # compass.clearWatchFilter

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/compass.getCurrentHeading.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/compass.getCurrentHeading.md b/www/docs/de/3.1.0/cordova/compass/compass.getCurrentHeading.md
index 7e414cd..5f726be 100644
--- a/www/docs/de/3.1.0/cordova/compass/compass.getCurrentHeading.md
+++ b/www/docs/de/3.1.0/cordova/compass/compass.getCurrentHeading.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: compass.getCurrentHeading
 ---
 
 # compass.getCurrentHeading

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/compass.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/compass.md b/www/docs/de/3.1.0/cordova/compass/compass.md
index 9ae791a..7d0711b 100644
--- a/www/docs/de/3.1.0/cordova/compass/compass.md
+++ b/www/docs/de/3.1.0/cordova/compass/compass.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Kompass
 ---
 
 # Kompass

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/compass.watchHeading.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/compass.watchHeading.md b/www/docs/de/3.1.0/cordova/compass/compass.watchHeading.md
index a2d0143..b0f31d6 100644
--- a/www/docs/de/3.1.0/cordova/compass/compass.watchHeading.md
+++ b/www/docs/de/3.1.0/cordova/compass/compass.watchHeading.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: compass.watchHeading
 ---
 
 # compass.watchHeading

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/compass.watchHeadingFilter.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/compass.watchHeadingFilter.md b/www/docs/de/3.1.0/cordova/compass/compass.watchHeadingFilter.md
index 9c0cc75..fc35d77 100644
--- a/www/docs/de/3.1.0/cordova/compass/compass.watchHeadingFilter.md
+++ b/www/docs/de/3.1.0/cordova/compass/compass.watchHeadingFilter.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: compass.watchHeadingFilter
 ---
 
 # compass.watchHeadingFilter

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/compassError/compassError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/compassError/compassError.md b/www/docs/de/3.1.0/cordova/compass/compassError/compassError.md
index 384b67b..715da70 100644
--- a/www/docs/de/3.1.0/cordova/compass/compassError/compassError.md
+++ b/www/docs/de/3.1.0/cordova/compass/compassError/compassError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: CompassError
 ---
 
 # CompassError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/parameters/compassError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/parameters/compassError.md b/www/docs/de/3.1.0/cordova/compass/parameters/compassError.md
index ce50d2f..6382ada 100644
--- a/www/docs/de/3.1.0/cordova/compass/parameters/compassError.md
+++ b/www/docs/de/3.1.0/cordova/compass/parameters/compassError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: compassError
 ---
 
 # compassError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/parameters/compassHeading.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/parameters/compassHeading.md b/www/docs/de/3.1.0/cordova/compass/parameters/compassHeading.md
index 4843b45..52f6f5e 100644
--- a/www/docs/de/3.1.0/cordova/compass/parameters/compassHeading.md
+++ b/www/docs/de/3.1.0/cordova/compass/parameters/compassHeading.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: compassHeading
 ---
 
 # compassHeading

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/parameters/compassOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/parameters/compassOptions.md b/www/docs/de/3.1.0/cordova/compass/parameters/compassOptions.md
index 5f65af3..18f87ad 100644
--- a/www/docs/de/3.1.0/cordova/compass/parameters/compassOptions.md
+++ b/www/docs/de/3.1.0/cordova/compass/parameters/compassOptions.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: compassOptions
 ---
 
 # compassOptions

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/compass/parameters/compassSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/compass/parameters/compassSuccess.md b/www/docs/de/3.1.0/cordova/compass/parameters/compassSuccess.md
index 64807ca..88b6d58 100644
--- a/www/docs/de/3.1.0/cordova/compass/parameters/compassSuccess.md
+++ b/www/docs/de/3.1.0/cordova/compass/parameters/compassSuccess.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: compassSuccess
 ---
 
 # compassSuccess

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/connection/connection.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/connection/connection.md b/www/docs/de/3.1.0/cordova/connection/connection.md
index 608fee4..5440e3b 100644
--- a/www/docs/de/3.1.0/cordova/connection/connection.md
+++ b/www/docs/de/3.1.0/cordova/connection/connection.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Verbindung
 ---
 
 # Verbindung

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/connection/connection.type.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/connection/connection.type.md b/www/docs/de/3.1.0/cordova/connection/connection.type.md
index 9d1d2e2..bfe2630 100644
--- a/www/docs/de/3.1.0/cordova/connection/connection.type.md
+++ b/www/docs/de/3.1.0/cordova/connection/connection.type.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: connection.type
 ---
 
 # connection.type

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/Contact/contact.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/Contact/contact.md b/www/docs/de/3.1.0/cordova/contacts/Contact/contact.md
index e8fd8c0..5d3c32d 100644
--- a/www/docs/de/3.1.0/cordova/contacts/Contact/contact.md
+++ b/www/docs/de/3.1.0/cordova/contacts/Contact/contact.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Kontakt
 ---
 
 # Kontakt

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/ContactAddress/contactaddress.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/ContactAddress/contactaddress.md b/www/docs/de/3.1.0/cordova/contacts/ContactAddress/contactaddress.md
index cace05a..1b1c5cf 100644
--- a/www/docs/de/3.1.0/cordova/contacts/ContactAddress/contactaddress.md
+++ b/www/docs/de/3.1.0/cordova/contacts/ContactAddress/contactaddress.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: ContactAddress
 ---
 
 # ContactAddress

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/ContactError/contactError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/ContactError/contactError.md b/www/docs/de/3.1.0/cordova/contacts/ContactError/contactError.md
index d14ff17..e9c3607 100644
--- a/www/docs/de/3.1.0/cordova/contacts/ContactError/contactError.md
+++ b/www/docs/de/3.1.0/cordova/contacts/ContactError/contactError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: ContactError
 ---
 
 # ContactError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/ContactField/contactfield.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/ContactField/contactfield.md b/www/docs/de/3.1.0/cordova/contacts/ContactField/contactfield.md
index 4566d04..d3cdb7f 100644
--- a/www/docs/de/3.1.0/cordova/contacts/ContactField/contactfield.md
+++ b/www/docs/de/3.1.0/cordova/contacts/ContactField/contactfield.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: ContactField
 ---
 
 # ContactField

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/ContactFindOptions/contactfindoptions.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/ContactFindOptions/contactfindoptions.md b/www/docs/de/3.1.0/cordova/contacts/ContactFindOptions/contactfindoptions.md
index c5d529b..3dcfb01 100644
--- a/www/docs/de/3.1.0/cordova/contacts/ContactFindOptions/contactfindoptions.md
+++ b/www/docs/de/3.1.0/cordova/contacts/ContactFindOptions/contactfindoptions.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: ContactFindOptions
 ---
 
 # ContactFindOptions

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/ContactName/contactname.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/ContactName/contactname.md b/www/docs/de/3.1.0/cordova/contacts/ContactName/contactname.md
index f1a7da6..a5a4469 100644
--- a/www/docs/de/3.1.0/cordova/contacts/ContactName/contactname.md
+++ b/www/docs/de/3.1.0/cordova/contacts/ContactName/contactname.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: ContactName
 ---
 
 # ContactName

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/ContactOrganization/contactorganization.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/ContactOrganization/contactorganization.md b/www/docs/de/3.1.0/cordova/contacts/ContactOrganization/contactorganization.md
index 80d66f0..ca53e6d 100644
--- a/www/docs/de/3.1.0/cordova/contacts/ContactOrganization/contactorganization.md
+++ b/www/docs/de/3.1.0/cordova/contacts/ContactOrganization/contactorganization.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: ContactOrganization
 ---
 
 # ContactOrganization

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/contacts.create.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/contacts.create.md b/www/docs/de/3.1.0/cordova/contacts/contacts.create.md
index 338a88b..84bae3c 100644
--- a/www/docs/de/3.1.0/cordova/contacts/contacts.create.md
+++ b/www/docs/de/3.1.0/cordova/contacts/contacts.create.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Contacts.Create
 ---
 
 # Contacts.Create

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/contacts.find.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/contacts.find.md b/www/docs/de/3.1.0/cordova/contacts/contacts.find.md
index 0add535..971281b 100644
--- a/www/docs/de/3.1.0/cordova/contacts/contacts.find.md
+++ b/www/docs/de/3.1.0/cordova/contacts/contacts.find.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: contacts.find
 ---
 
 # contacts.find

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/contacts.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/contacts.md b/www/docs/de/3.1.0/cordova/contacts/contacts.md
index 1c1dcc8..a3e93d0 100644
--- a/www/docs/de/3.1.0/cordova/contacts/contacts.md
+++ b/www/docs/de/3.1.0/cordova/contacts/contacts.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Kontakte
 ---
 
 # Kontakte

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/parameters/contactError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/parameters/contactError.md b/www/docs/de/3.1.0/cordova/contacts/parameters/contactError.md
index 9a022a9..006ba86 100644
--- a/www/docs/de/3.1.0/cordova/contacts/parameters/contactError.md
+++ b/www/docs/de/3.1.0/cordova/contacts/parameters/contactError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: contactError
 ---
 
 # contactError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/parameters/contactFields.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/parameters/contactFields.md b/www/docs/de/3.1.0/cordova/contacts/parameters/contactFields.md
index aed4b5f..dfac89f 100644
--- a/www/docs/de/3.1.0/cordova/contacts/parameters/contactFields.md
+++ b/www/docs/de/3.1.0/cordova/contacts/parameters/contactFields.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: contactFields
 ---
 
 # contactFields

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/parameters/contactFindOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/parameters/contactFindOptions.md b/www/docs/de/3.1.0/cordova/contacts/parameters/contactFindOptions.md
index 3eac788..972d24e 100644
--- a/www/docs/de/3.1.0/cordova/contacts/parameters/contactFindOptions.md
+++ b/www/docs/de/3.1.0/cordova/contacts/parameters/contactFindOptions.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: contactFindOptions
 ---
 
 # contactFindOptions

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/contacts/parameters/contactSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/contacts/parameters/contactSuccess.md b/www/docs/de/3.1.0/cordova/contacts/parameters/contactSuccess.md
index 521e0f9..1d1a3c4 100644
--- a/www/docs/de/3.1.0/cordova/contacts/parameters/contactSuccess.md
+++ b/www/docs/de/3.1.0/cordova/contacts/parameters/contactSuccess.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: contactSuccess
 ---
 
 # contactSuccess

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/device/device.cordova.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/device/device.cordova.md b/www/docs/de/3.1.0/cordova/device/device.cordova.md
index 7e428bc..33bffc3 100644
--- a/www/docs/de/3.1.0/cordova/device/device.cordova.md
+++ b/www/docs/de/3.1.0/cordova/device/device.cordova.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: device.cordova
 ---
 
 # device.cordova

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/device/device.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/device/device.md b/www/docs/de/3.1.0/cordova/device/device.md
index 23c85a1..efaa114 100644
--- a/www/docs/de/3.1.0/cordova/device/device.md
+++ b/www/docs/de/3.1.0/cordova/device/device.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Gerät
 ---
 
 # Gerät

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/device/device.model.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/device/device.model.md b/www/docs/de/3.1.0/cordova/device/device.model.md
index 3288342..8b300af 100644
--- a/www/docs/de/3.1.0/cordova/device/device.model.md
+++ b/www/docs/de/3.1.0/cordova/device/device.model.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: device.model
 ---
 
 # device.model

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/device/device.name.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/device/device.name.md b/www/docs/de/3.1.0/cordova/device/device.name.md
index f5f7256..5a32a18 100644
--- a/www/docs/de/3.1.0/cordova/device/device.name.md
+++ b/www/docs/de/3.1.0/cordova/device/device.name.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: device.name
 ---
 
 # device.name

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/device/device.platform.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/device/device.platform.md b/www/docs/de/3.1.0/cordova/device/device.platform.md
index a5eb60d..9eafd4e 100644
--- a/www/docs/de/3.1.0/cordova/device/device.platform.md
+++ b/www/docs/de/3.1.0/cordova/device/device.platform.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: device.platform
 ---
 
 # device.platform

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/device/device.uuid.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/device/device.uuid.md b/www/docs/de/3.1.0/cordova/device/device.uuid.md
index 9157669..58b3f01 100644
--- a/www/docs/de/3.1.0/cordova/device/device.uuid.md
+++ b/www/docs/de/3.1.0/cordova/device/device.uuid.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: device.uuid
 ---
 
 # device.uuid

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/device/device.version.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/device/device.version.md b/www/docs/de/3.1.0/cordova/device/device.version.md
index 0259fcf..aad50aa 100644
--- a/www/docs/de/3.1.0/cordova/device/device.version.md
+++ b/www/docs/de/3.1.0/cordova/device/device.version.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: device.version
 ---
 
 # device.version

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.backbutton.md b/www/docs/de/3.1.0/cordova/events/events.backbutton.md
index ea06245..82bad51 100644
--- a/www/docs/de/3.1.0/cordova/events/events.backbutton.md
+++ b/www/docs/de/3.1.0/cordova/events/events.backbutton.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: BackButton
 ---
 
 # BackButton

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.batterycritical.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.batterycritical.md b/www/docs/de/3.1.0/cordova/events/events.batterycritical.md
index e6d9b37..164dbf6 100644
--- a/www/docs/de/3.1.0/cordova/events/events.batterycritical.md
+++ b/www/docs/de/3.1.0/cordova/events/events.batterycritical.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: batterycritical
 ---
 
 # batterycritical

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.batterylow.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.batterylow.md b/www/docs/de/3.1.0/cordova/events/events.batterylow.md
index d5e17f3..f11db85 100644
--- a/www/docs/de/3.1.0/cordova/events/events.batterylow.md
+++ b/www/docs/de/3.1.0/cordova/events/events.batterylow.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: batterylow
 ---
 
 # batterylow

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.batterystatus.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.batterystatus.md b/www/docs/de/3.1.0/cordova/events/events.batterystatus.md
index c883526..b96b245 100644
--- a/www/docs/de/3.1.0/cordova/events/events.batterystatus.md
+++ b/www/docs/de/3.1.0/cordova/events/events.batterystatus.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: batterystatus
 ---
 
 # batterystatus

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.deviceready.md b/www/docs/de/3.1.0/cordova/events/events.deviceready.md
index 5bc3bf5..6bd296e 100644
--- a/www/docs/de/3.1.0/cordova/events/events.deviceready.md
+++ b/www/docs/de/3.1.0/cordova/events/events.deviceready.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: deviceready
 ---
 
 # deviceready

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.endcallbutton.md b/www/docs/de/3.1.0/cordova/events/events.endcallbutton.md
index ea63f23..547af48 100644
--- a/www/docs/de/3.1.0/cordova/events/events.endcallbutton.md
+++ b/www/docs/de/3.1.0/cordova/events/events.endcallbutton.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: endcallbutton
 ---
 
 # endcallbutton

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.md b/www/docs/de/3.1.0/cordova/events/events.md
index 85af0f3..6c788a6 100644
--- a/www/docs/de/3.1.0/cordova/events/events.md
+++ b/www/docs/de/3.1.0/cordova/events/events.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Veranstaltungen
 ---
 
 # Veranstaltungen

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.menubutton.md b/www/docs/de/3.1.0/cordova/events/events.menubutton.md
index b0713c9..c12e671 100644
--- a/www/docs/de/3.1.0/cordova/events/events.menubutton.md
+++ b/www/docs/de/3.1.0/cordova/events/events.menubutton.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: menubutton
 ---
 
 # menubutton

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.offline.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.offline.md b/www/docs/de/3.1.0/cordova/events/events.offline.md
index 85a756b..58a6880 100644
--- a/www/docs/de/3.1.0/cordova/events/events.offline.md
+++ b/www/docs/de/3.1.0/cordova/events/events.offline.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Offline
 ---
 
 # Offline

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.online.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.online.md b/www/docs/de/3.1.0/cordova/events/events.online.md
index 58a9030..02822b3 100644
--- a/www/docs/de/3.1.0/cordova/events/events.online.md
+++ b/www/docs/de/3.1.0/cordova/events/events.online.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Online
 ---
 
 # Online

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.pause.md b/www/docs/de/3.1.0/cordova/events/events.pause.md
index 33a3028..addc75a 100644
--- a/www/docs/de/3.1.0/cordova/events/events.pause.md
+++ b/www/docs/de/3.1.0/cordova/events/events.pause.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Anhalten
 ---
 
 # Anhalten

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.resume.md b/www/docs/de/3.1.0/cordova/events/events.resume.md
index 978e7bc..7545425 100644
--- a/www/docs/de/3.1.0/cordova/events/events.resume.md
+++ b/www/docs/de/3.1.0/cordova/events/events.resume.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Lebenslauf
 ---
 
 # Lebenslauf

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.searchbutton.md b/www/docs/de/3.1.0/cordova/events/events.searchbutton.md
index f5a93f3..8c7a2af 100644
--- a/www/docs/de/3.1.0/cordova/events/events.searchbutton.md
+++ b/www/docs/de/3.1.0/cordova/events/events.searchbutton.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: SearchButton
 ---
 
 # SearchButton

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.startcallbutton.md b/www/docs/de/3.1.0/cordova/events/events.startcallbutton.md
index 324bd6d..48b52b2 100644
--- a/www/docs/de/3.1.0/cordova/events/events.startcallbutton.md
+++ b/www/docs/de/3.1.0/cordova/events/events.startcallbutton.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: startcallbutton
 ---
 
 # startcallbutton

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.volumedownbutton.md b/www/docs/de/3.1.0/cordova/events/events.volumedownbutton.md
index 9cce5d0..b63f6d1 100644
--- a/www/docs/de/3.1.0/cordova/events/events.volumedownbutton.md
+++ b/www/docs/de/3.1.0/cordova/events/events.volumedownbutton.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: volumedownbutton
 ---
 
 # volumedownbutton

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/events/events.volumeupbutton.md b/www/docs/de/3.1.0/cordova/events/events.volumeupbutton.md
index c29579c..ceb57b0 100644
--- a/www/docs/de/3.1.0/cordova/events/events.volumeupbutton.md
+++ b/www/docs/de/3.1.0/cordova/events/events.volumeupbutton.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: volumeupbutton
 ---
 
 # volumeupbutton

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/directoryentry/directoryentry.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/directoryentry/directoryentry.md b/www/docs/de/3.1.0/cordova/file/directoryentry/directoryentry.md
index 23dce12..ca4531e 100644
--- a/www/docs/de/3.1.0/cordova/file/directoryentry/directoryentry.md
+++ b/www/docs/de/3.1.0/cordova/file/directoryentry/directoryentry.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: DirectoryEntry
 ---
 
 # DirectoryEntry

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/directoryreader/directoryreader.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/directoryreader/directoryreader.md b/www/docs/de/3.1.0/cordova/file/directoryreader/directoryreader.md
index a61cf90..87ab7c3 100644
--- a/www/docs/de/3.1.0/cordova/file/directoryreader/directoryreader.md
+++ b/www/docs/de/3.1.0/cordova/file/directoryreader/directoryreader.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: DirectoryReader
 ---
 
 # DirectoryReader

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/file.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/file.md b/www/docs/de/3.1.0/cordova/file/file.md
index 6d005eb..7fb351a 100644
--- a/www/docs/de/3.1.0/cordova/file/file.md
+++ b/www/docs/de/3.1.0/cordova/file/file.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Datei
 ---
 
 # Datei

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/fileentry/fileentry.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/fileentry/fileentry.md b/www/docs/de/3.1.0/cordova/file/fileentry/fileentry.md
index 61950c2..3eb29ca 100644
--- a/www/docs/de/3.1.0/cordova/file/fileentry/fileentry.md
+++ b/www/docs/de/3.1.0/cordova/file/fileentry/fileentry.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: FileEntries
 ---
 
 # FileEntries

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/fileerror/fileerror.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/fileerror/fileerror.md b/www/docs/de/3.1.0/cordova/file/fileerror/fileerror.md
index 8f797f1..df6a9aa 100644
--- a/www/docs/de/3.1.0/cordova/file/fileerror/fileerror.md
+++ b/www/docs/de/3.1.0/cordova/file/fileerror/fileerror.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: FileError
 ---
 
 # FileError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/fileobj/fileobj.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/fileobj/fileobj.md b/www/docs/de/3.1.0/cordova/file/fileobj/fileobj.md
index b348889..b49f56d 100644
--- a/www/docs/de/3.1.0/cordova/file/fileobj/fileobj.md
+++ b/www/docs/de/3.1.0/cordova/file/fileobj/fileobj.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Datei
 ---
 
 # Datei

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/filereader/filereader.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/filereader/filereader.md b/www/docs/de/3.1.0/cordova/file/filereader/filereader.md
index 44ddd1b..b017999 100644
--- a/www/docs/de/3.1.0/cordova/file/filereader/filereader.md
+++ b/www/docs/de/3.1.0/cordova/file/filereader/filereader.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: FileReader
 ---
 
 # FileReader

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/filesystem/filesystem.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/filesystem/filesystem.md b/www/docs/de/3.1.0/cordova/file/filesystem/filesystem.md
index cc4a351..91372b5 100644
--- a/www/docs/de/3.1.0/cordova/file/filesystem/filesystem.md
+++ b/www/docs/de/3.1.0/cordova/file/filesystem/filesystem.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Dateisystem
 ---
 
 # Dateisystem

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/filetransfer/filetransfer.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/filetransfer/filetransfer.md b/www/docs/de/3.1.0/cordova/file/filetransfer/filetransfer.md
index 3c9d88e..de2467f 100644
--- a/www/docs/de/3.1.0/cordova/file/filetransfer/filetransfer.md
+++ b/www/docs/de/3.1.0/cordova/file/filetransfer/filetransfer.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: FileTransfer
 ---
 
 # FileTransfer

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/filetransfererror/filetransfererror.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/filetransfererror/filetransfererror.md b/www/docs/de/3.1.0/cordova/file/filetransfererror/filetransfererror.md
index 06bc641..f3c2394 100644
--- a/www/docs/de/3.1.0/cordova/file/filetransfererror/filetransfererror.md
+++ b/www/docs/de/3.1.0/cordova/file/filetransfererror/filetransfererror.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: FileTransferError
 ---
 
 # FileTransferError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/fileuploadoptions/fileuploadoptions.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/fileuploadoptions/fileuploadoptions.md b/www/docs/de/3.1.0/cordova/file/fileuploadoptions/fileuploadoptions.md
index 0814fe8..9b92ff5 100644
--- a/www/docs/de/3.1.0/cordova/file/fileuploadoptions/fileuploadoptions.md
+++ b/www/docs/de/3.1.0/cordova/file/fileuploadoptions/fileuploadoptions.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: FileUploadOptions
 ---
 
 # FileUploadOptions

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/fileuploadresult/fileuploadresult.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/fileuploadresult/fileuploadresult.md b/www/docs/de/3.1.0/cordova/file/fileuploadresult/fileuploadresult.md
index 9348228..840e9a7 100644
--- a/www/docs/de/3.1.0/cordova/file/fileuploadresult/fileuploadresult.md
+++ b/www/docs/de/3.1.0/cordova/file/fileuploadresult/fileuploadresult.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: FileUploadResult
 ---
 
 # FileUploadResult

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/filewriter/filewriter.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/filewriter/filewriter.md b/www/docs/de/3.1.0/cordova/file/filewriter/filewriter.md
index a46be7d..c5aa73e 100644
--- a/www/docs/de/3.1.0/cordova/file/filewriter/filewriter.md
+++ b/www/docs/de/3.1.0/cordova/file/filewriter/filewriter.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: FileWriter
 ---
 
 # FileWriter

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/flags/flags.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/flags/flags.md b/www/docs/de/3.1.0/cordova/file/flags/flags.md
index 7a17917..e44f0f1 100644
--- a/www/docs/de/3.1.0/cordova/file/flags/flags.md
+++ b/www/docs/de/3.1.0/cordova/file/flags/flags.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Flags
 ---
 
 # Flags

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/localfilesystem/localfilesystem.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/localfilesystem/localfilesystem.md b/www/docs/de/3.1.0/cordova/file/localfilesystem/localfilesystem.md
index cd9ac5c..9e86b77 100644
--- a/www/docs/de/3.1.0/cordova/file/localfilesystem/localfilesystem.md
+++ b/www/docs/de/3.1.0/cordova/file/localfilesystem/localfilesystem.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: LocalFileSystem
 ---
 
 # LocalFileSystem

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/file/metadata/metadata.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/file/metadata/metadata.md b/www/docs/de/3.1.0/cordova/file/metadata/metadata.md
index 50b2b46..2078e60 100644
--- a/www/docs/de/3.1.0/cordova/file/metadata/metadata.md
+++ b/www/docs/de/3.1.0/cordova/file/metadata/metadata.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Metadaten
 ---
 
 # Metadaten

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/Coordinates/coordinates.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/Coordinates/coordinates.md b/www/docs/de/3.1.0/cordova/geolocation/Coordinates/coordinates.md
index 30717d5..7c45d56 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/Coordinates/coordinates.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/Coordinates/coordinates.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Koordinaten
 ---
 
 # Koordinaten

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/Position/position.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/Position/position.md b/www/docs/de/3.1.0/cordova/geolocation/Position/position.md
index 622708d..5179743 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/Position/position.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/Position/position.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Position
 ---
 
 # Position

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/PositionError/positionError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/PositionError/positionError.md b/www/docs/de/3.1.0/cordova/geolocation/PositionError/positionError.md
index 5988bb5..e33e82b 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/PositionError/positionError.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/PositionError/positionError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Positionsfehler
 ---
 
 # Positionsfehler

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/geolocation.clearWatch.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/geolocation.clearWatch.md b/www/docs/de/3.1.0/cordova/geolocation/geolocation.clearWatch.md
index 378f5a3..6e9b1b5 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/geolocation.clearWatch.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/geolocation.clearWatch.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: geolocation.clearWatch
 ---
 
 # geolocation.clearWatch

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/geolocation.getCurrentPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/geolocation.getCurrentPosition.md b/www/docs/de/3.1.0/cordova/geolocation/geolocation.getCurrentPosition.md
index b971e4a..1dff911 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/geolocation.getCurrentPosition.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/geolocation.getCurrentPosition.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: geolocation.getCurrentPosition
 ---
 
 # geolocation.getCurrentPosition

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/geolocation.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/geolocation.md b/www/docs/de/3.1.0/cordova/geolocation/geolocation.md
index 98e6941..dab5a56 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/geolocation.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/geolocation.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Geolocation
 ---
 
 # Geolocation

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/geolocation.watchPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/geolocation.watchPosition.md b/www/docs/de/3.1.0/cordova/geolocation/geolocation.watchPosition.md
index 08e4291..7aa1645 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/geolocation.watchPosition.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/geolocation.watchPosition.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: geolocation.watchPosition
 ---
 
 # geolocation.watchPosition

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocation.options.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocation.options.md b/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocation.options.md
index c9e1fbc..130a881 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocation.options.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocation.options.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: geolocationOptions
 ---
 
 # geolocationOptions

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationError.md b/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationError.md
index 7a97069..1a27bed 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationError.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: geolocationError
 ---
 
 # geolocationError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationSuccess.md b/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationSuccess.md
index dbd87b9..64fe96e 100644
--- a/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationSuccess.md
+++ b/www/docs/de/3.1.0/cordova/geolocation/parameters/geolocationSuccess.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: geolocationSuccess
 ---
 
 # geolocationSuccess

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/GlobalizationError/globalizationerror.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/GlobalizationError/globalizationerror.md b/www/docs/de/3.1.0/cordova/globalization/GlobalizationError/globalizationerror.md
index 6ef72d0..8aae024 100644
--- a/www/docs/de/3.1.0/cordova/globalization/GlobalizationError/globalizationerror.md
+++ b/www/docs/de/3.1.0/cordova/globalization/GlobalizationError/globalizationerror.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: GlobalizationError
 ---
 
 # GlobalizationError

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.dateToString.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.dateToString.md b/www/docs/de/3.1.0/cordova/globalization/globalization.dateToString.md
index 71f276d..92a3955 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.dateToString.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.dateToString.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.dateToString
 ---
 
 # globalization.dateToString

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.getCurrencyPattern.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.getCurrencyPattern.md b/www/docs/de/3.1.0/cordova/globalization/globalization.getCurrencyPattern.md
index 2673c2a..4e42641 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.getCurrencyPattern.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.getCurrencyPattern.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.getCurrencyPattern
 ---
 
 # globalization.getCurrencyPattern

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.getDateNames.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.getDateNames.md b/www/docs/de/3.1.0/cordova/globalization/globalization.getDateNames.md
index 44d7832..e16f7b9 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.getDateNames.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.getDateNames.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.getDateNames
 ---
 
 # globalization.getDateNames

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.getDatePattern.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.getDatePattern.md b/www/docs/de/3.1.0/cordova/globalization/globalization.getDatePattern.md
index 9e4823f..6d6c63f 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.getDatePattern.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.getDatePattern.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.getDatePattern
 ---
 
 # globalization.getDatePattern

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.getFirstDayOfWeek.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.getFirstDayOfWeek.md b/www/docs/de/3.1.0/cordova/globalization/globalization.getFirstDayOfWeek.md
index 0e092de..3ee03d1 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.getFirstDayOfWeek.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.getFirstDayOfWeek.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.getFirstDayOfWeek
 ---
 
 # globalization.getFirstDayOfWeek

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.getLocaleName.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.getLocaleName.md b/www/docs/de/3.1.0/cordova/globalization/globalization.getLocaleName.md
index 7ebfb37..30f2593 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.getLocaleName.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.getLocaleName.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.getLocaleName
 ---
 
 # globalization.getLocaleName

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.getNumberPattern.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.getNumberPattern.md b/www/docs/de/3.1.0/cordova/globalization/globalization.getNumberPattern.md
index 61bafdf..55568f0 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.getNumberPattern.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.getNumberPattern.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.getNumberPattern
 ---
 
 # globalization.getNumberPattern

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.getPreferredLanguage.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.getPreferredLanguage.md b/www/docs/de/3.1.0/cordova/globalization/globalization.getPreferredLanguage.md
index 7dfb973..575cdc2 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.getPreferredLanguage.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.getPreferredLanguage.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.getPreferredLanguage
 ---
 
 # globalization.getPreferredLanguage

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.isDayLightSavingsTime.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.isDayLightSavingsTime.md b/www/docs/de/3.1.0/cordova/globalization/globalization.isDayLightSavingsTime.md
index f67c4c3..2d07795 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.isDayLightSavingsTime.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.isDayLightSavingsTime.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.isDayLightSavingsTime
 ---
 
 # globalization.isDayLightSavingsTime

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.md b/www/docs/de/3.1.0/cordova/globalization/globalization.md
index 8c1b850..9351306 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Globalisierung
 ---
 
 # Globalisierung

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.numberToString.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.numberToString.md b/www/docs/de/3.1.0/cordova/globalization/globalization.numberToString.md
index 910d23e..674df95 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.numberToString.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.numberToString.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.numberToString
 ---
 
 # globalization.numberToString

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.stringToDate.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.stringToDate.md b/www/docs/de/3.1.0/cordova/globalization/globalization.stringToDate.md
index 54897db..362c2a9 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.stringToDate.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.stringToDate.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.stringToDate
 ---
 
 # globalization.stringToDate

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/globalization/globalization.stringToNumber.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/globalization/globalization.stringToNumber.md b/www/docs/de/3.1.0/cordova/globalization/globalization.stringToNumber.md
index 230643d..c8f909b 100644
--- a/www/docs/de/3.1.0/cordova/globalization/globalization.stringToNumber.md
+++ b/www/docs/de/3.1.0/cordova/globalization/globalization.stringToNumber.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: globalization.stringToNumber
 ---
 
 # globalization.stringToNumber

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/inappbrowser/inappbrowser.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/inappbrowser/inappbrowser.md b/www/docs/de/3.1.0/cordova/inappbrowser/inappbrowser.md
index fe6dec3..9068535 100644
--- a/www/docs/de/3.1.0/cordova/inappbrowser/inappbrowser.md
+++ b/www/docs/de/3.1.0/cordova/inappbrowser/inappbrowser.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: InAppBrowser
 ---
 
 # InAppBrowser

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/inappbrowser/window.open.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/inappbrowser/window.open.md b/www/docs/de/3.1.0/cordova/inappbrowser/window.open.md
index 594db1f..0cd2e7c 100644
--- a/www/docs/de/3.1.0/cordova/inappbrowser/window.open.md
+++ b/www/docs/de/3.1.0/cordova/inappbrowser/window.open.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: window.open
 ---
 
 # window.open

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/media/MediaError/mediaError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/media/MediaError/mediaError.md b/www/docs/de/3.1.0/cordova/media/MediaError/mediaError.md
index f0871c6..7120baf 100644
--- a/www/docs/de/3.1.0/cordova/media/MediaError/mediaError.md
+++ b/www/docs/de/3.1.0/cordova/media/MediaError/mediaError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Medienfehler
 ---
 
 # Medienfehler

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/media/Parameters/mediaError.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/media/Parameters/mediaError.md b/www/docs/de/3.1.0/cordova/media/Parameters/mediaError.md
index 9f306b8..c59c441 100644
--- a/www/docs/de/3.1.0/cordova/media/Parameters/mediaError.md
+++ b/www/docs/de/3.1.0/cordova/media/Parameters/mediaError.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: Medienfehler
 ---
 
 # Medienfehler

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/139e9342/www/docs/de/3.1.0/cordova/media/capture/CaptureCB.md
----------------------------------------------------------------------
diff --git a/www/docs/de/3.1.0/cordova/media/capture/CaptureCB.md b/www/docs/de/3.1.0/cordova/media/capture/CaptureCB.md
index 5aa1407..80689ca 100644
--- a/www/docs/de/3.1.0/cordova/media/capture/CaptureCB.md
+++ b/www/docs/de/3.1.0/cordova/media/capture/CaptureCB.md
@@ -16,6 +16,8 @@ license: >
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
+
+title: CaptureCB
 ---
 
 # CaptureCB


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