You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ld...@apache.org on 2014/06/25 18:06:26 UTC

[2/5] git commit: documentation translation: cordova-plugin-vibration

documentation translation: cordova-plugin-vibration


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/commit/6c6e803e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/tree/6c6e803e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/diff/6c6e803e

Branch: refs/heads/master
Commit: 6c6e803e9839c474668d63e2e2b3fc8ea8bffb14
Parents: 9e6f5ee
Author: ldeluca <ld...@us.ibm.com>
Authored: Tue May 27 21:37:07 2014 -0400
Committer: ldeluca <ld...@us.ibm.com>
Committed: Wed Jun 25 12:05:36 2014 -0400

----------------------------------------------------------------------
 doc/de/index.md | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/blob/6c6e803e/doc/de/index.md
----------------------------------------------------------------------
diff --git a/doc/de/index.md b/doc/de/index.md
new file mode 100644
index 0000000..bd00a7c
--- /dev/null
+++ b/doc/de/index.md
@@ -0,0 +1,58 @@
+<!---
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+
+# org.apache.cordova.vibration
+
+Dieses Plugin bietet eine Möglichkeit, das Gerät zu vibrieren.
+
+## Installation
+
+    cordova plugin add org.apache.cordova.vibration
+    
+
+## Unterstützte Plattformen
+
+*   Amazon Fire OS
+*   Android
+*   BlackBerry 10
+*   Firefox OS
+*   iOS
+*   Windows Phone 7 und 8
+
+## Notification.Vibrate
+
+Vibriert das Gerät für den angegebenen Zeitraum.
+
+    navigator.notification.vibrate(time)
+    
+
+*   **Zeit**: Millisekunden das Gerät vibriert. *(Anzahl)*
+
+## Beispiel
+
+    // Vibrate for 2.5 seconds
+    navigator.notification.vibrate(2500);
+    
+
+## iOS Macken
+
+*   **Zeit**: ignoriert die angegebene Zeit und für eine voreingestellte Zeit vibriert.
+    
+        navigator.notification.vibrate();
+        navigator.notification.vibrate(2500);   // 2500 is ignored
\ No newline at end of file