summaryrefslogtreecommitdiff
path: root/plugins/org.apache.cordova.statusbar/doc
diff options
context:
space:
mode:
authorArjun Roychowdhury <pliablepixels@gmail.com>2015-10-31 08:21:38 -0400
committerArjun Roychowdhury <pliablepixels@gmail.com>2015-10-31 08:21:38 -0400
commit02811010cf62f1b21a06780d1e470d04bb24c50f (patch)
tree0d933789068aac11c810ed4bb169d14ab16c43c6 /plugins/org.apache.cordova.statusbar/doc
parentbca561c1b3989d62a1fba829e0380c6fbf36caf5 (diff)
removed unecessary files from git
Diffstat (limited to 'plugins/org.apache.cordova.statusbar/doc')
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/de/index.md238
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/es/index.md238
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/fr/index.md238
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/index.md284
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/it/index.md238
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/ja/index.md238
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/ko/index.md238
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/pl/index.md238
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/ru/index.md238
-rw-r--r--plugins/org.apache.cordova.statusbar/doc/zh/index.md238
10 files changed, 0 insertions, 2426 deletions
diff --git a/plugins/org.apache.cordova.statusbar/doc/de/index.md b/plugins/org.apache.cordova.statusbar/doc/de/index.md
deleted file mode 100644
index 1c0ff3ce..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/de/index.md
+++ /dev/null
@@ -1,238 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-# StatusBar
-
-> Das `StatusBar` Objekt stellt einige Funktionen zum Anpassen des iOS und Android StatusBar.
-
-## "Einstellungen"
-
-#### config.xml
-
-* **StatusBarOverlaysWebView** (Boolean, der Standardwert ist True). Stellen Sie auf iOS 7 die Statusbar-Overlay oder keine Überlagerung der WebView beim Start.
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-
-* **StatusBarBackgroundColor** (Farbe hex String, der Standardwert ist #000000). Legen Sie auf iOS 7 die Hintergrundfarbe der Statusbar von eine hexadezimale Zeichenfolge (#RRGGBB) beim Start.
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-
-* **StatusBarStyle** (Status Bar-Stil, der Standardwert ist Lightcontent). Legen Sie auf iOS 7 den Status-Bar-Stil. Verfügbaren Optionen Standard, Lightcontent, Blacktranslucent, Blackopaque.
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-
-## Beim Start ausblenden
-
-Während der Laufzeit können Sie die StatusBar.hide-Funktion unten, aber die StatusBar beim Start der app versteckt werden soll, müssen Sie Ihre app Info.plist Datei ändern.
-
-Diese beiden Attribute hinzufügen/bearbeiten, wenn nicht vorhanden. Legen Sie **"Statusleiste ist anfangs ausgeblendet"** auf **"YES"** und **"View Controller-basierte Status Bar aussehen"** auf **"NO"**. Wenn Sie es manuell ohne Xcode bearbeiten, werden die Schlüssel und Werte:
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-## Methoden
-
-* StatusBar.overlaysWebView
-* StatusBar.styleDefault
-* StatusBar.styleLightContent
-* StatusBar.styleBlackTranslucent
-* StatusBar.styleBlackOpaque
-* StatusBar.backgroundColorByName
-* StatusBar.backgroundColorByHexString
-* StatusBar.hide
-* StatusBar.show
-
-## Eigenschaften
-
-* StatusBar.isVisible
-
-## Berechtigungen
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-
-# StatusBar.overlaysWebView
-
-Stellen Sie auf iOS 7 Statusbar überlagern oder nicht überlagert die WebView.
-
- StatusBar.overlaysWebView(true);
-
-
-## Beschreibung
-
-Auf iOS 7 zu der Statusbar wie iOS 6 erscheinen auf False festgelegt. Legen Sie die Stil und Hintergrund Farbe entsprechend mit den anderen Funktionen.
-
-## Unterstützte Plattformen
-
-* iOS
-
-## Kurzes Beispiel
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-
-# StatusBar.styleDefault
-
-Verwenden Sie die Standard-Statusbar (dunkle Text, für helle Hintergründe).
-
- StatusBar.styleDefault();
-
-
-## Unterstützte Plattformen
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleLightContent
-
-Verwenden Sie die LightContent-Statusbar (heller Text, für dunkle Hintergründe).
-
- StatusBar.styleLightContent();
-
-
-## Unterstützte Plattformen
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackTranslucent
-
-Verwenden Sie die BlackTranslucent-Statusbar (heller Text, für dunkle Hintergründe).
-
- StatusBar.styleBlackTranslucent();
-
-
-## Unterstützte Plattformen
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackOpaque
-
-Verwenden Sie die BlackOpaque-Statusbar (heller Text, für dunkle Hintergründe).
-
- StatusBar.styleBlackOpaque();
-
-
-## Unterstützte Plattformen
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByName
-
-Auf iOS 7 Wenn Sie StatusBar.statusBarOverlaysWebView auf False festlegen, können Sie die Hintergrundfarbe der Statusbar von Farbnamen festlegen.
-
- StatusBar.backgroundColorByName("red");
-
-
-Unterstützte Farbnamen sind:
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-## Unterstützte Plattformen
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByHexString
-
-Legt die Hintergrundfarbe der Statusbar von eine hexadezimale Zeichenfolge fest.
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-CSS-Kurzschrift-Eigenschaften werden ebenfalls unterstützt.
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-
-Auf iOS 7 Wenn Sie StatusBar.statusBarOverlaysWebView auf False festlegen, können Sie die Hintergrundfarbe der Statusbar von eine hexadezimale Zeichenfolge (#RRGGBB) festlegen.
-
-Auf WP7 und WP8 können Sie auch Werte wie #AARRGGBB, angeben wo AA einen alpha-Wert ist
-
-## Unterstützte Plattformen
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.hide
-
-Ausblenden der Statusleiste.
-
- StatusBar.hide();
-
-
-## Unterstützte Plattformen
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.show
-
-Zeigt die Statusleiste.
-
- StatusBar.show();
-
-
-## Unterstützte Plattformen
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.isVisible
-
-Lesen Sie diese Eigenschaft, um festzustellen, ob die Statusbar sichtbar oder nicht ist.
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-## Unterstützte Plattformen
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8 \ No newline at end of file
diff --git a/plugins/org.apache.cordova.statusbar/doc/es/index.md b/plugins/org.apache.cordova.statusbar/doc/es/index.md
deleted file mode 100644
index 13a7230f..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/es/index.md
+++ /dev/null
@@ -1,238 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-# StatusBar
-
-> El `StatusBar` objeto proporciona algunas funciones para personalizar el iOS y Android StatusBar.
-
-## Preferencias
-
-#### config.xml
-
-* **StatusBarOverlaysWebView** (boolean, true por defecto). En iOS 7, hacer la superposición statusbar o no superponer la WebView al inicio.
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-
-* **StatusBarBackgroundColor** (cadena hexadecimal color, #000000 por defecto). En iOS 7, establecer el color de fondo de la barra de estado por una cadena hexadecimal (#RRGGBB) en el arranque.
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-
-* **StatusBarStyle** (status bar estilo por defecto lightcontent). En iOS 7, definir el estilo de barra de estado. Por defecto las opciones disponibles, lightcontent, blacktranslucent, blackopaque.
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-
-## Escondido en el arranque
-
-Durante el tiempo de ejecución puede utilizar la función StatusBar.hide abajo, pero si quieres la barra de estado que está escondido en el inicio de la aplicación, se debe modificar el archivo Info.plist de su aplicación.
-
-Agregar/editar estos dos atributos si no está presente. Defina **"inicialmente se esconde la barra de estado"** a **"YES"** y **"Aparición de vista basado en controlador estatus bar"** a **"NO"**. Si se edita manualmente sin Xcode, las claves y valores son:
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-## Métodos
-
-* StatusBar.overlaysWebView
-* StatusBar.styleDefault
-* StatusBar.styleLightContent
-* StatusBar.styleBlackTranslucent
-* StatusBar.styleBlackOpaque
-* StatusBar.backgroundColorByName
-* StatusBar.backgroundColorByHexString
-* StatusBar.hide
-* StatusBar.show
-
-## Propiedades
-
-* StatusBar.isVisible
-
-## Permisos
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-
-# StatusBar.overlaysWebView
-
-En iOS 7, hacer la barra de estado superposición o no superponer la vista Web.
-
- StatusBar.overlaysWebView(true);
-
-
-## Descripción
-
-En iOS 7, establecida en false para que la barra de estado aparezca como iOS 6. Establece el color de fondo y estilo para utilizar las otras funciones.
-
-## Plataformas soportadas
-
-* iOS
-
-## Ejemplo rápido
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-
-# StatusBar.styleDefault
-
-Utilice la barra de estado por defecto (texto oscuro, para fondos de luz).
-
- StatusBar.styleDefault();
-
-
-## Plataformas soportadas
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleLightContent
-
-Utilice la barra de estado lightContent (texto ligero, para fondos oscuros).
-
- StatusBar.styleLightContent();
-
-
-## Plataformas soportadas
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackTranslucent
-
-Utilice la barra de estado blackTranslucent (texto ligero, para fondos oscuros).
-
- StatusBar.styleBlackTranslucent();
-
-
-## Plataformas soportadas
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackOpaque
-
-Utilice la barra de estado blackOpaque (texto ligero, para fondos oscuros).
-
- StatusBar.styleBlackOpaque();
-
-
-## Plataformas soportadas
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByName
-
-En iOS 7, al establecer StatusBar.statusBarOverlaysWebView a false, se puede establecer el color de fondo de la barra de estado nombre del color.
-
- StatusBar.backgroundColorByName("red");
-
-
-Nombres de los colores admitidos son:
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-## Plataformas soportadas
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByHexString
-
-Establece el color de fondo de la barra de estado por una cadena hexadecimal.
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-Propiedades CSS abreviada también son compatibles.
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-
-En iOS 7, cuando se establece StatusBar.statusBarOverlaysWebView en false, se puede establecer el color de fondo de la barra de estado una cadena hexadecimal (#RRGGBB).
-
-En WP7 y WP8 también puede especificar valores como #AARRGGBB, donde AA es un valor alfa
-
-## Plataformas soportadas
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.hide
-
-Ocultar la barra de estado.
-
- StatusBar.hide();
-
-
-## Plataformas soportadas
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.show
-
-Muestra la barra de estado.
-
- StatusBar.show();
-
-
-## Plataformas soportadas
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.isVisible
-
-Lea esta propiedad para ver si la barra de estado es visible o no.
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-## Plataformas soportadas
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8 \ No newline at end of file
diff --git a/plugins/org.apache.cordova.statusbar/doc/fr/index.md b/plugins/org.apache.cordova.statusbar/doc/fr/index.md
deleted file mode 100644
index 28e4e103..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/fr/index.md
+++ /dev/null
@@ -1,238 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-# StatusBar
-
-> Le `StatusBar` objet fournit quelques fonctions pour personnaliser les iOS et Android StatusBar.
-
-## Préférences
-
-#### config.xml
-
-* **StatusBarOverlaysWebView** (boolean, la valeur par défaut true). Sur iOS 7, faire la superposition de statusbar ou pas superposition le WebView au démarrage.
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-
-* **StatusBarBackgroundColor** (chaîne hexadécimale de couleur, par défaut, #000000). Sur iOS 7, définir la couleur d'arrière-plan de la barre d'État par une chaîne hexadécimale (#RRGGBB) au démarrage.
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-
-* **StatusBarStyle** (style de barre de statut, par défaut, lightcontent). Sur iOS 7, définir le style de barre de statut. Par défaut les options disponibles, lightcontent, blacktranslucent, blackopaque.
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-
-## Cacher au démarrage
-
-Pendant l'exécution, vous pouvez utiliser la fonction StatusBar.hide en bas, mais si vous souhaitez que la barre d'État pour être caché au démarrage de l'application, vous devez modifier le fichier Info.plist de votre application.
-
-Ajouter/modifier ces deux attributs si n'est pas présent. **"Barre d'État est initialement masqué"** la valeur **"** Yes" et **"À l'apparence vue sur contrôleur statut bar"** la valeur **"Non"**. Si vous modifiez manuellement sans Xcode, les clés et les valeurs sont :
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-## Méthodes
-
-* StatusBar.overlaysWebView
-* StatusBar.styleDefault
-* StatusBar.styleLightContent
-* StatusBar.styleBlackTranslucent
-* StatusBar.styleBlackOpaque
-* StatusBar.backgroundColorByName
-* StatusBar.backgroundColorByHexString
-* StatusBar.hide
-* StatusBar.show
-
-## Propriétés
-
-* StatusBar.isVisible
-
-## Autorisations
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-
-# StatusBar.overlaysWebView
-
-Sur iOS 7, faire la statusbar superposition ou pas superposer le WebView.
-
- StatusBar.overlaysWebView(true);
-
-
-## Description
-
-Sur iOS 7, la valeur false pour afficher la barre d'État comme iOS 6. Définissez la couleur de style et d'arrière-plan en fonction de l'utilisation des autres fonctions.
-
-## Plates-formes prises en charge
-
-* iOS
-
-## Petit exemple
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-
-# StatusBar.styleDefault
-
-Utilisez la barre de statut par défaut (texte sombre, pour les arrière-plans lumineux).
-
- StatusBar.styleDefault() ;
-
-
-## Plates-formes prises en charge
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleLightContent
-
-Utilisez la barre d'État lightContent (texte clair, des arrière-plans sombres).
-
- StatusBar.styleLightContent();
-
-
-## Plates-formes prises en charge
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackTranslucent
-
-Utilisez la barre d'État blackTranslucent (texte clair, des arrière-plans sombres).
-
- StatusBar.styleBlackTranslucent();
-
-
-## Plates-formes prises en charge
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackOpaque
-
-Utilisez la barre d'État blackOpaque (texte clair, des arrière-plans sombres).
-
- StatusBar.styleBlackOpaque();
-
-
-## Plates-formes prises en charge
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByName
-
-Sur iOS 7, lorsque vous définissez StatusBar.statusBarOverlaysWebView sur false, vous pouvez définir la couleur d'arrière-plan de la barre d'État par nom de couleur.
-
- StatusBar.backgroundColorByName("red");
-
-
-Les noms de couleurs prises en charge sont :
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-## Plates-formes prises en charge
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByHexString
-
-Définit la couleur d'arrière-plan de la barre d'État par une chaîne hexadécimale.
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-Propriétés de raccourci CSS sont également pris en charge.
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-
-Sur iOS 7, lorsque vous définissez StatusBar.statusBarOverlaysWebView sur false, vous pouvez définir la couleur d'arrière-plan de la barre d'État par une chaîne hexadécimale (#RRGGBB).
-
-Sur WP7 et WP8, vous pouvez également spécifier des valeurs comme #AARRGGBB, où AA représente une valeur alpha
-
-## Plates-formes prises en charge
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.hide
-
-Masquer la barre d'État.
-
- StatusBar.hide();
-
-
-## Plates-formes prises en charge
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.show
-
-Affiche la barre d'État.
-
- StatusBar.show();
-
-
-## Plates-formes prises en charge
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.isVisible
-
-Lire cette propriété afin de voir si la barre d'État est visible ou non.
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-## Plates-formes prises en charge
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8 \ No newline at end of file
diff --git a/plugins/org.apache.cordova.statusbar/doc/index.md b/plugins/org.apache.cordova.statusbar/doc/index.md
deleted file mode 100644
index 9955857a..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/index.md
+++ /dev/null
@@ -1,284 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-StatusBar
-======
-
-> The `StatusBar` object provides some functions to customize the iOS and Android StatusBar.
-
-
-## Installation
-
- cordova plugin add org.apache.cordova.statusbar
-
-Preferences
------------
-
-#### config.xml
-
-- __StatusBarOverlaysWebView__ (boolean, defaults to true). On iOS 7, make the statusbar overlay or not overlay the WebView at startup.
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-- __StatusBarBackgroundColor__ (color hex string, defaults to #000000). On iOS 7, set the background color of the statusbar by a hex string (#RRGGBB) at startup.
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-- __StatusBarStyle__ (status bar style, defaults to lightcontent). On iOS 7, set the status bar style. Available options default, lightcontent, blacktranslucent, blackopaque.
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-Hiding at startup
------------
-
-During runtime you can use the StatusBar.hide function below, but if you want the StatusBar to be hidden at app startup, you must modify your app's Info.plist file.
-
-Add/edit these two attributes if not present. Set **"Status bar is initially hidden"** to **"YES"** and set **"View controller-based status bar appearance"** to **"NO"**. If you edit it manually without Xcode, the keys and values are:
-
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-Methods
--------
-This plugin defines global `StatusBar` object.
-
-Although in the global scope, it is not available until after the `deviceready` event.
-
- document.addEventListener("deviceready", onDeviceReady, false);
- function onDeviceReady() {
- console.log(StatusBar);
- }
-
-- StatusBar.overlaysWebView
-- StatusBar.styleDefault
-- StatusBar.styleLightContent
-- StatusBar.styleBlackTranslucent
-- StatusBar.styleBlackOpaque
-- StatusBar.backgroundColorByName
-- StatusBar.backgroundColorByHexString
-- StatusBar.hide
-- StatusBar.show
-
-Properties
---------
-
-- StatusBar.isVisible
-
-Permissions
------------
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-StatusBar.overlaysWebView
-=================
-
-On iOS 7, make the statusbar overlay or not overlay the WebView.
-
- StatusBar.overlaysWebView(true);
-
-Description
------------
-
-On iOS 7, set to false to make the statusbar appear like iOS 6. Set the style and background color to suit using the other functions.
-
-
-Supported Platforms
--------------------
-
-- iOS
-
-Quick Example
--------------
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-StatusBar.styleDefault
-=================
-
-Use the default statusbar (dark text, for light backgrounds).
-
- StatusBar.styleDefault();
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Windows Phone 7
-- Windows Phone 8
-- Windows Phone 8.1
-
-StatusBar.styleLightContent
-=================
-
-Use the lightContent statusbar (light text, for dark backgrounds).
-
- StatusBar.styleLightContent();
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Windows Phone 7
-- Windows Phone 8
-- Windows Phone 8.1
-
-StatusBar.styleBlackTranslucent
-=================
-
-Use the blackTranslucent statusbar (light text, for dark backgrounds).
-
- StatusBar.styleBlackTranslucent();
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Windows Phone 7
-- Windows Phone 8
-- Windows Phone 8.1
-
-StatusBar.styleBlackOpaque
-=================
-
-Use the blackOpaque statusbar (light text, for dark backgrounds).
-
- StatusBar.styleBlackOpaque();
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Windows Phone 7
-- Windows Phone 8
-- Windows Phone 8.1
-
-
-StatusBar.backgroundColorByName
-=================
-
-On iOS 7, when you set StatusBar.statusBarOverlaysWebView to false, you can set the background color of the statusbar by color name.
-
- StatusBar.backgroundColorByName("red");
-
-Supported color names are:
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Windows Phone 7
-- Windows Phone 8
-- Windows Phone 8.1
-
-StatusBar.backgroundColorByHexString
-=================
-
-Sets the background color of the statusbar by a hex string.
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-CSS shorthand properties are also supported.
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-On iOS 7, when you set StatusBar.statusBarOverlaysWebView to false, you can set the background color of the statusbar by a hex string (#RRGGBB).
-
-On WP7 and WP8 you can also specify values as #AARRGGBB, where AA is an alpha value
-
-Supported Platforms
--------------------
-
-- iOS
-- Windows Phone 7
-- Windows Phone 8
-- Windows Phone 8.1
-
-StatusBar.hide
-=================
-
-Hide the statusbar.
-
- StatusBar.hide();
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Android
-- Windows Phone 7
-- Windows Phone 8
-- Windows Phone 8.1
-
-StatusBar.show
-=================
-
-Shows the statusbar.
-
- StatusBar.show();
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Android
-- Windows Phone 7
-- Windows Phone 8
-- Windows Phone 8.1
-
-
-StatusBar.isVisible
-=================
-
-Read this property to see if the statusbar is visible or not.
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Android
-- Windows Phone 7
-- Windows Phone 8
-- Windows Phone 8.1
-
-
diff --git a/plugins/org.apache.cordova.statusbar/doc/it/index.md b/plugins/org.apache.cordova.statusbar/doc/it/index.md
deleted file mode 100644
index b40bcf5f..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/it/index.md
+++ /dev/null
@@ -1,238 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-# StatusBar
-
-> Il `StatusBar` oggetto fornisce alcune funzioni per personalizzare l'iOS e Android StatusBar.
-
-## Preferenze
-
-#### config.xml
-
-* **StatusBarOverlaysWebView** (boolean, default è true). IOS 7, rendono la statusbar sovrapposizione o la non sovrapposizione WebView all'avvio.
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-
-* **StatusBarBackgroundColor** (stringa esadecimale colore, predefinito è #000000). IOS 7, impostare il colore di sfondo della barra di stato di una stringa esadecimale (#RRGGBB) all'avvio.
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-
-* **StatusBarStyle** (status bar in stile, default è lightcontent). IOS 7, impostare lo stile di barra di stato. Predefinita di opzioni disponibili, lightcontent, blacktranslucent, blackopaque.
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-
-## Nascondendo all'avvio
-
-In fase di esecuzione è possibile utilizzare la funzione di StatusBar.hide qui sotto, ma se si desidera che la barra di stato venga nascosta all'avvio di app, è necessario modificare il file info. plist dell'app.
-
-Aggiungere o modificare questi due attributi, se non presente. Impostare la **"barra di stato è inizialmente nascosto"** a **"YES"** e **"Aspetto di vista basati su controller status bar"** a **"NO"**. Se si modifica manualmente senza Xcode, le chiavi e i valori sono:
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-## Metodi
-
-* StatusBar.overlaysWebView
-* StatusBar.styleDefault
-* StatusBar.styleLightContent
-* StatusBar.styleBlackTranslucent
-* StatusBar.styleBlackOpaque
-* StatusBar.backgroundColorByName
-* StatusBar.backgroundColorByHexString
-* StatusBar.hide
-* StatusBar.show
-
-## Proprietà
-
-* StatusBar.isVisible
-
-## Autorizzazioni
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-
-# StatusBar.overlaysWebView
-
-IOS 7, rendono la statusbar sovrapposizione o non sovrapporre WebView.
-
- StatusBar.overlaysWebView(true);
-
-
-## Descrizione
-
-IOS 7, impostato su false per rendere la barra di stato vengono visualizzati come iOS 6. Impostare il colore di sfondo e stile per soddisfare utilizzando altre funzioni.
-
-## Piattaforme supportate
-
-* iOS
-
-## Esempio rapido
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-
-# StatusBar.styleDefault
-
-Utilizzare la barra di stato predefinito (testo scuro, per sfondi di luce).
-
- StatusBar.styleDefault();
-
-
-## Piattaforme supportate
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleLightContent
-
-Utilizzare la barra di stato lightContent (testo in chiaro, per sfondi scuri).
-
- StatusBar.styleLightContent();
-
-
-## Piattaforme supportate
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackTranslucent
-
-Utilizzare la barra di stato blackTranslucent (testo in chiaro, per sfondi scuri).
-
- StatusBar.styleBlackTranslucent();
-
-
-## Piattaforme supportate
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackOpaque
-
-Utilizzare la barra di stato blackOpaque (testo in chiaro, per sfondi scuri).
-
- StatusBar.styleBlackOpaque();
-
-
-## Piattaforme supportate
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByName
-
-IOS 7, quando StatusBar.statusBarOverlaysWebView è impostata su false, è possibile impostare il colore di sfondo della barra di stato con il nome di colore.
-
- StatusBar.backgroundColorByName("red");
-
-
-Nomi di colore supportati sono:
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-## Piattaforme supportate
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByHexString
-
-Imposta il colore di sfondo della barra di stato di una stringa esadecimale.
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-Proprietà di scrittura stenografica CSS sono supportati anche.
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-
-IOS 7, quando StatusBar.statusBarOverlaysWebView è impostata su false, è possibile impostare il colore di sfondo della barra di stato di una stringa esadecimale (#RRGGBB).
-
-Su WP7 e WP8 è inoltre possibile specificare i valori come #AARRGGBB, dove AA è un valore alfa
-
-## Piattaforme supportate
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.hide
-
-Nascondere la barra di stato.
-
- StatusBar.hide();
-
-
-## Piattaforme supportate
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.show
-
-Mostra la barra di stato.
-
- StatusBar.show();
-
-
-## Piattaforme supportate
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.isVisible
-
-Leggere questa proprietà per vedere se la barra di stato è visibile o no.
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-## Piattaforme supportate
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8 \ No newline at end of file
diff --git a/plugins/org.apache.cordova.statusbar/doc/ja/index.md b/plugins/org.apache.cordova.statusbar/doc/ja/index.md
deleted file mode 100644
index 7d6b976b..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/ja/index.md
+++ /dev/null
@@ -1,238 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-# StatusBar
-
-> `StatusBar`オブジェクトは、iOS と Android ステータス バーをカスタマイズするいくつかの機能を提供します。
-
-## 基本設定
-
-#### config.xml
-
-* **StatusBarOverlaysWebView**(ブール値、デフォルトは true)。IOS 7、起動時にステータスバー オーバーレイまたはないオーバーレイ、WebView を作る。
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-
-* **StatusBarBackgroundColor**(色 16 進文字列、デフォルトは # 000000)。Ios 7、起動時に 16 進文字列 (#RRGGBB) でステータス バーの背景色を設定します。
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-
-* **StatusBarStyle**(ステータス バーのスタイル、既定値は lightcontent)。Ios 7、ステータス バーのスタイルを設定します。使用可能なオプションのデフォルト、lightcontent、blacktranslucent、blackopaque。
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-
-## 起動時に非表示
-
-実行時に下に、StatusBar.hide 関数を使用できますが、StatusBar アプリ起動時に非表示にする場合は、アプリの Info.plist ファイルを変更する必要があります。
-
-これら 2 つの属性の追加/編集存在しない場合。 **「ステータス バーが非表示最初」** **"YES"**を設定し、 **「ビュー コント ローラー ベースのステータス バーの外観」** **"NO"**にします。 Xcode せず手動で編集する、キーと値は。
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-## メソッド
-
-* StatusBar.overlaysWebView
-* StatusBar.styleDefault
-* StatusBar.styleLightContent
-* StatusBar.styleBlackTranslucent
-* StatusBar.styleBlackOpaque
-* StatusBar.backgroundColorByName
-* StatusBar.backgroundColorByHexString
-* StatusBar.hide
-* StatusBar.show
-
-## プロパティ
-
-* StatusBar.isVisible
-
-## アクセス許可
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-
-# StatusBar.overlaysWebView
-
-IOS 7、statusbar オーバーレイまたはない WebView をオーバーレイします。
-
- StatusBar.overlaysWebView(true);
-
-
-## 説明
-
-IOS 7、iOS の 6 のように表示されるステータスバーを false に設定します。他の関数の使用に合わせてスタイルや背景色を設定します。
-
-## サポートされているプラットフォーム
-
-* iOS
-
-## 簡単な例
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-
-# StatusBar.styleDefault
-
-既定ステータス バー (暗いテキスト、淡色の背景) を使用します。
-
- StatusBar.styleDefault();
-
-
-## サポートされているプラットフォーム
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleLightContent
-
-LightContent ステータスバー (暗い背景の明るいテキスト) を使用します。
-
- StatusBar.styleLightContent();
-
-
-## サポートされているプラットフォーム
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackTranslucent
-
-BlackTranslucent ステータスバー (暗い背景の明るいテキスト) を使用します。
-
- StatusBar.styleBlackTranslucent();
-
-
-## サポートされているプラットフォーム
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackOpaque
-
-BlackOpaque ステータスバー (暗い背景の明るいテキスト) を使用します。
-
- StatusBar.styleBlackOpaque();
-
-
-## サポートされているプラットフォーム
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByName
-
-Ios 7、StatusBar.statusBarOverlaysWebView を false に設定する場合はステータスバーの背景色の色の名前によって設定できます。
-
- StatusBar.backgroundColorByName("red");
-
-
-サポートされている色の名前は次のとおりです。
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-## サポートされているプラットフォーム
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByHexString
-
-16 進文字列をステータス バーの背景色を設定します。
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-速記の CSS プロパティもサポートされています。
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-
-Ios 7、StatusBar.statusBarOverlaysWebView を false に設定する場合はステータスバーの背景色を 16 進文字列 (#RRGGBB) で設定できます。
-
-WP7 と WP8 も指定できます値 #AARRGGBB, AA は、アルファ値として
-
-## サポートされているプラットフォーム
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.hide
-
-ステータスバーを隠します。
-
- StatusBar.hide();
-
-
-## サポートされているプラットフォーム
-
-* iOS
-* アンドロイド
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.show
-
-ステータス バーが表示されます。
-
- StatusBar.show();
-
-
-## サポートされているプラットフォーム
-
-* iOS
-* アンドロイド
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.isVisible
-
-このプロパティ、ステータスバーが表示されるかどうかをお読みください。
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-## サポートされているプラットフォーム
-
-* iOS
-* アンドロイド
-* Windows Phone 7
-* Windows Phone 8 \ No newline at end of file
diff --git a/plugins/org.apache.cordova.statusbar/doc/ko/index.md b/plugins/org.apache.cordova.statusbar/doc/ko/index.md
deleted file mode 100644
index e30ee891..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/ko/index.md
+++ /dev/null
@@ -1,238 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-# StatusBar
-
-> `StatusBar`개체 iOS와 안 드 로이드 상태 표시줄을 사용자 지정 하려면 몇 가지 기능을 제공 합니다.
-
-## 환경 설정
-
-#### config.xml
-
-* **StatusBarOverlaysWebView** (boolean, 기본값: true)입니다. IOS 7, 시작 시 상태 표시줄 오버레이 또는 WebView 중첩 되지 확인 합니다.
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-
-* **StatusBarBackgroundColor** (색상 16 진수 문자열 기본값: #000000). Ios 7, 시작 시 16 진수 문자열 (#RRGGBB) 상태 표시줄의 배경색을 설정 합니다.
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-
-* **StatusBarStyle** (상태 표시줄 스타일, 기본값: lightcontent). Ios 7, 상태 표시줄 스타일을 설정 합니다. 사용 가능한 옵션 기본, lightcontent, blacktranslucent, blackopaque.
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-
-## 시작 시 숨기기
-
-런타임 동안 아래의 StatusBar.hide 함수를 사용할 수 있습니다 하지만 당신이 원하는 응용 프로그램 시작 시 숨겨진 상태 표시줄, 응용 프로그램의 Info.plist 파일 수정 해야 합니다.
-
-추가 편집이 두 특성이 없는 경우. **"상태 표시줄 처음 숨겨진"** **"YES"** 로 설정 하 고 **"뷰 컨트롤러 기반 상태 표시줄 모양"** **"NO"**로 설정 합니다. Xcode, 열쇠 없이 수동으로 편집 하는 경우 값은:
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-## 메서드
-
-* StatusBar.overlaysWebView
-* StatusBar.styleDefault
-* StatusBar.styleLightContent
-* StatusBar.styleBlackTranslucent
-* StatusBar.styleBlackOpaque
-* StatusBar.backgroundColorByName
-* StatusBar.backgroundColorByHexString
-* StatusBar.hide
-* StatusBar.show
-
-## 속성
-
-* StatusBar.isVisible
-
-## 사용 권한
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-
-# StatusBar.overlaysWebView
-
-IOS 7, 오버레이 또는 하지 WebView 중첩 상태 표시줄을 확인 합니다.
-
- StatusBar.overlaysWebView(true);
-
-
-## 설명
-
-7 iOS, iOS 6 처럼 나타나는 상태 표시줄을 false로 설정 합니다. 다른 함수를 사용 하 여에 맞게 스타일과 배경 색상을 설정 합니다.
-
-## 지원 되는 플랫폼
-
-* iOS
-
-## 빠른 예제
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-
-# StatusBar.styleDefault
-
-기본 상태 표시줄 (어두운 텍스트, 밝은 배경에 대 한)를 사용 합니다.
-
- StatusBar.styleDefault();
-
-
-## 지원 되는 플랫폼
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleLightContent
-
-LightContent 상태 표시줄 (어두운 배경에 대 한 가벼운 텍스트)을 사용 합니다.
-
- StatusBar.styleLightContent();
-
-
-## 지원 되는 플랫폼
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackTranslucent
-
-BlackTranslucent 상태 표시줄 (어두운 배경에 대 한 가벼운 텍스트)을 사용 합니다.
-
- StatusBar.styleBlackTranslucent();
-
-
-## 지원 되는 플랫폼
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackOpaque
-
-BlackOpaque 상태 표시줄 (어두운 배경에 대 한 가벼운 텍스트)을 사용 합니다.
-
- StatusBar.styleBlackOpaque();
-
-
-## 지원 되는 플랫폼
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByName
-
-Ios 7, StatusBar.statusBarOverlaysWebView을 false로 설정 하면 설정할 수 있는 상태 표시줄의 배경색 색상 이름으로.
-
- StatusBar.backgroundColorByName("red");
-
-
-지원 되는 색 이름입니다.
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-## 지원 되는 플랫폼
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByHexString
-
-16 진수 문자열 상태 표시줄의 배경색을 설정합니다.
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-CSS 대표 속성 지원 됩니다.
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-
-Ios 7, StatusBar.statusBarOverlaysWebView을 false로 설정 하면 설정할 수 있는 상태 표시줄의 배경색 16 진수 문자열 (#RRGGBB)에 의해.
-
-WP7 및 WP8에 당신은 또한 #AARRGGBB, AA는 알파 값으로 값을 지정할 수 있습니다.
-
-## 지원 되는 플랫폼
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.hide
-
-숨기기 상태 표시줄.
-
- StatusBar.hide();
-
-
-## 지원 되는 플랫폼
-
-* iOS
-* 안 드 로이드
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.show
-
-상태 표시줄을 표시합니다.
-
- StatusBar.show();
-
-
-## 지원 되는 플랫폼
-
-* iOS
-* 안 드 로이드
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.isVisible
-
-이 속성을 상태 표시줄 표시 되는 경우 읽기.
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-## 지원 되는 플랫폼
-
-* iOS
-* 안 드 로이드
-* Windows Phone 7
-* Windows Phone 8 \ No newline at end of file
diff --git a/plugins/org.apache.cordova.statusbar/doc/pl/index.md b/plugins/org.apache.cordova.statusbar/doc/pl/index.md
deleted file mode 100644
index af69ebdf..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/pl/index.md
+++ /dev/null
@@ -1,238 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-# StatusBar
-
-> `StatusBar`Obiekt zawiera kilka funkcji, aby dostosować iOS i Android StatusBar.
-
-## Preferencje
-
-#### config.xml
-
-* **StatusBarOverlaysWebView** (boolean, domyślnie na wartość true). Na iOS 7 zrobić nakładki stanu lub nie nakładki widoku sieci Web podczas uruchamiania.
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-
-* **StatusBarBackgroundColor** (kolor szesnastkowy ciąg, domyślnie #000000). Na iOS 7 ustawić kolor tła stanu przez ciąg szesnastkowy (#RRGGBB) przy starcie systemu.
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-
-* **StatusBarStyle** (stan styl paska, domyślnie lightcontent.) Na iOS 7 ustawić styl paska stanu. Dostępne opcje domyślne, lightcontent, blacktranslucent, blackopaque.
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-
-## Przy starcie
-
-Podczas uruchamiania można użyć funkcji StatusBar.hide poniżej, ale jeśli chcesz StatusBar ukryty w uruchamiania aplikacji, należy zmodyfikować plik Info.plist Twojej aplikacji.
-
-Dodawanie/edycja tych dwóch atrybutów jeśli nie obecny. Ustawianie **"pasek stanu jest początkowo ukryte"** na **"Tak"** i **"Oparte na kontroler stanu paska wygląd"** na **"Nie"**. Jeśli możesz go edytować ręcznie bez Xcode, kluczy i wartości są:
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-## Metody
-
-* StatusBar.overlaysWebView
-* StatusBar.styleDefault
-* StatusBar.styleLightContent
-* StatusBar.styleBlackTranslucent
-* StatusBar.styleBlackOpaque
-* StatusBar.backgroundColorByName
-* StatusBar.backgroundColorByHexString
-* StatusBar.hide
-* StatusBar.show
-
-## Właściwości
-
-* StatusBar.isVisible
-
-## Uprawnienia
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-
-# StatusBar.overlaysWebView
-
-Na iOS 7 zrobić statusbar nakładki lub nie nakładka widoku sieci Web.
-
- StatusBar.overlaysWebView(true);
-
-
-## Opis
-
-Na iOS 7 zestaw do false, aby na pasku stanu pojawia się jak iOS 6. Ustaw kolor tła i styl do korzystania z innych funkcji.
-
-## Obsługiwane platformy
-
-* iOS
-
-## Szybki przykład
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-
-# StatusBar.styleDefault
-
-Użyj domyślnego stanu (ciemny tekst, teł światła).
-
- StatusBar.styleDefault();
-
-
-## Obsługiwane platformy
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleLightContent
-
-Użyj lightContent stanu (światło tekst, ciemne tło).
-
- StatusBar.styleLightContent();
-
-
-## Obsługiwane platformy
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackTranslucent
-
-Użyj blackTranslucent stanu (światło tekst, ciemne tło).
-
- StatusBar.styleBlackTranslucent();
-
-
-## Obsługiwane platformy
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackOpaque
-
-Użyj blackOpaque stanu (światło tekst, ciemne tło).
-
- StatusBar.styleBlackOpaque();
-
-
-## Obsługiwane platformy
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByName
-
-Na iOS 7 gdy zostanie ustawiona wartość false, StatusBar.statusBarOverlaysWebView można ustawić kolor tła stanu przez nazwę koloru.
-
- StatusBar.backgroundColorByName("red");
-
-
-Nazwy kolorów obsługiwane są:
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-## Obsługiwane platformy
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByHexString
-
-Ustawia kolor tła stanu przez ciąg szesnastkowy.
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-Obsługiwane są również właściwości CSS.
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-
-Na iOS 7 gdy zostanie ustawiona wartość false, StatusBar.statusBarOverlaysWebView można ustawić kolor tła stanu przez ciąg szesnastkowy (#RRGGBB).
-
-Na WP7 i WP8 można również określić wartości jako #AARRGGBB, gdzie AA jest wartością alfa
-
-## Obsługiwane platformy
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.hide
-
-Ukryj pasek stanu.
-
- StatusBar.hide();
-
-
-## Obsługiwane platformy
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.show
-
-Pokazuje pasek stanu.
-
- StatusBar.show();
-
-
-## Obsługiwane platformy
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.isVisible
-
-Czytać tej właściwość, aby sprawdzić, czy stanu jest widoczne lub nie.
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-## Obsługiwane platformy
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8 \ No newline at end of file
diff --git a/plugins/org.apache.cordova.statusbar/doc/ru/index.md b/plugins/org.apache.cordova.statusbar/doc/ru/index.md
deleted file mode 100644
index 511ed65d..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/ru/index.md
+++ /dev/null
@@ -1,238 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-# StatusBar
-
-> Объект `StatusBar` предоставляет некоторые функции для настройки статусной панели на iOS и Android.
-
-## Настройки
-
-#### config.xml
-
-* **StatusBarOverlaysWebView** (логическое значение, по умолчанию true). В iOS 7 определяет необходимо ли сделать наложение статусной панели на WebView при запуске или нет.
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-
-* **StatusBarBackgroundColor** (шестнадцатеричная строка цвета, значения по умолчанию #000000). На iOS 7 установит цвет фона статусной панели при запуске, на основании шестнадцатеричной строки цвета (#RRGGBB).
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-
-* **StatusBarStyle** (статус бар стиль, по умолчанию lightcontent). На iOS 7 установите стиль строки состояния. Доступные параметры по умолчанию, lightcontent, blacktranslucent, blackopaque.
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-
-## Скрытие при запуске
-
-Во время выполнения можно использовать функцию StatusBar.hide ниже, но если вы хотите StatusBar быть скрыты при запуске приложения, необходимо изменить файл Info.plist вашего приложения.
-
-Добавьте/измените эти два атрибута, если они не присутствуют или отличаются от нижеуказанных значений. Установите значение **«Status bar is initially hidden»** равное **«YES»** и установите значение **«View controller-based status bar appearance»** на **«NO»**. Если вы измените его вручную без Xcode, ключи и значения являются следующими:
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-## Методы
-
-* StatusBar.overlaysWebView
-* StatusBar.styleDefault
-* StatusBar.styleLightContent
-* StatusBar.styleBlackTranslucent
-* StatusBar.styleBlackOpaque
-* StatusBar.backgroundColorByName
-* StatusBar.backgroundColorByHexString
-* StatusBar.hide
-* StatusBar.show
-
-## Параметры
-
-* StatusBar.isVisible
-
-## Разрешения
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-
-# StatusBar.overlaysWebView
-
-На iOS 7 Сделайте statusbar overlay или не поверх WebView.
-
- StatusBar.overlaysWebView(true);
-
-
-## Описание
-
-На iOS 7 Установите значение false чтобы сделать statusbar появляются как iOS 6. Задайте стиль и цвет фона в соответствии с использованием других функций.
-
-## Поддерживаемые платформы
-
-* iOS
-
-## Краткий пример
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-
-# StatusBar.styleDefault
-
-Используйте по умолчанию statusbar (темный текст, для легких стола).
-
- StatusBar.styleDefault();
-
-
-## Поддерживаемые платформы
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleLightContent
-
-Используйте lightContent statusbar (светлый текст, на темном фоне).
-
- StatusBar.styleLightContent();
-
-
-## Поддерживаемые платформы
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackTranslucent
-
-Используйте blackTranslucent statusbar (светлый текст, на темном фоне).
-
- StatusBar.styleBlackTranslucent();
-
-
-## Поддерживаемые платформы
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackOpaque
-
-Используйте blackOpaque statusbar (светлый текст, на темном фоне).
-
- StatusBar.styleBlackOpaque();
-
-
-## Поддерживаемые платформы
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByName
-
-На iOS 7 когда StatusBar.statusBarOverlaysWebView присвоено значение false, можно задать цвет фона для объекта statusbar по имени цвета.
-
- StatusBar.backgroundColorByName("red");
-
-
-Имена поддерживаемых цветов являются:
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-## Поддерживаемые платформы
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByHexString
-
-Задает цвет фона для объекта statusbar, шестнадцатеричная строка.
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-Также поддерживаются свойства CSS стенографию.
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-
-На iOS 7 когда StatusBar.statusBarOverlaysWebView присвоено значение false, можно задать цвет фона для объекта statusbar, шестнадцатеричная строка (#RRGGBB).
-
-На WP7 и WP8 также можно указать значения как #AARRGGBB, где AA — это альфа-значение
-
-## Поддерживаемые платформы
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.hide
-
-Скройте строку состояния statusbar.
-
- StatusBar.hide();
-
-
-## Поддерживаемые платформы
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.show
-
-Показывает строку состояния statusbar.
-
- StatusBar.show();
-
-
-## Поддерживаемые платформы
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.isVisible
-
-Чтение это свойство, чтобы увидеть, если statusbar является видимым или нет.
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-## Поддерживаемые платформы
-
-* iOS
-* Android
-* Windows Phone 7
-* Windows Phone 8 \ No newline at end of file
diff --git a/plugins/org.apache.cordova.statusbar/doc/zh/index.md b/plugins/org.apache.cordova.statusbar/doc/zh/index.md
deleted file mode 100644
index f2eaadd0..00000000
--- a/plugins/org.apache.cordova.statusbar/doc/zh/index.md
+++ /dev/null
@@ -1,238 +0,0 @@
-<!---
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT 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.statusbar
-
-# StatusBar
-
-> `StatusBar`物件提供了一些功能,自訂的 iOS 和 Android 狀態列。
-
-## 首選項
-
-#### config.xml
-
-* **StatusBarOverlaysWebView**(布林值,預設值為 true)。在 iOS 7,使狀態列覆蓋或不覆蓋 web 視圖在啟動時。
-
- <preference name="StatusBarOverlaysWebView" value="true" />
-
-
-* **StatusBarBackgroundColor**(顏色十六進位字串,預設值為 #000000)。在 iOS 7,通過一個十六進位字串 (#RRGGBB) 在啟動時設置狀態列的背景色。
-
- <preference name="StatusBarBackgroundColor" value="#000000" />
-
-
-* **狀態列**(狀態列樣式,預設值為 lightcontent)。在 iOS 7,設置的狀態橫條圖樣式。可用的選項預設,lightcontent,blacktranslucent,blackopaque。
-
- <preference name="StatusBarStyle" value="lightcontent" />
-
-
-## 在啟動時隱藏
-
-在運行時期間,你可以使用 StatusBar.hide 函數下面,但如果你想要顯示狀態列隱藏在應用程式啟動時,你必須修改你的應用程式的 Info.plist 檔。
-
-添加編輯這兩個屬性,如果不存在。 將**"狀態列最初隱藏"**設置為**"YES"**和**"視圖基於控制器的狀態列外觀"**設置為**"否"**。 如果您手動編輯它沒有 Xcode,鍵和值是:
-
- <key>UIStatusBarHidden</key>
- <true/>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
-
-
-## 方法
-
-* StatusBar.overlaysWebView
-* StatusBar.styleDefault
-* StatusBar.styleLightContent
-* StatusBar.styleBlackTranslucent
-* StatusBar.styleBlackOpaque
-* StatusBar.backgroundColorByName
-* StatusBar.backgroundColorByHexString
-* StatusBar.hide
-* StatusBar.show
-
-## 屬性
-
-* StatusBar.isVisible
-
-## 許可權
-
-#### config.xml
-
- <feature name="StatusBar">
- <param name="ios-package" value="CDVStatusBar" onload="true" />
- </feature>
-
-
-# StatusBar.overlaysWebView
-
-在 iOS 7,使狀態列覆蓋或不覆蓋 web 視圖。
-
- StatusBar.overlaysWebView(true);
-
-
-## 描述
-
-在 iOS 7,設置為 false,使狀態列出現像 iOS 6。設置的樣式和背景的顏色,以適應使用其他函數。
-
-## 支援的平臺
-
-* iOS
-
-## 快速的示例
-
- StatusBar.overlaysWebView(true);
- StatusBar.overlaysWebView(false);
-
-
-# StatusBar.styleDefault
-
-使用預設狀態列 (淺色背景深色文本)。
-
- StatusBar.styleDefault() ;
-
-
-## 支援的平臺
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleLightContent
-
-使用 lightContent 狀態列 (光文本,為深色的背景)。
-
- StatusBar.styleLightContent();
-
-
-## 支援的平臺
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackTranslucent
-
-使用 blackTranslucent 狀態列 (光文本,為深色的背景)。
-
- StatusBar.styleBlackTranslucent();
-
-
-## 支援的平臺
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.styleBlackOpaque
-
-使用 blackOpaque 狀態列 (光文本,為深色的背景)。
-
- StatusBar.styleBlackOpaque();
-
-
-## 支援的平臺
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByName
-
-在 iOS 7,當你將 StatusBar.statusBarOverlaysWebView 設置為 false,你可以設置狀態列的背景顏色由顏色名稱。
-
- StatusBar.backgroundColorByName("red");
-
-
-支援的顏色名稱是:
-
- black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown
-
-
-## 支援的平臺
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.backgroundColorByHexString
-
-由十六進位字串設置狀態列的背景色。
-
- StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-此外支援 CSS 速記屬性。
-
- StatusBar.backgroundColorByHexString("#333"); // => #333333
- StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB
-
-
-在 iOS 7,當你將 StatusBar.statusBarOverlaysWebView 設置為 false,你可以設置狀態列的背景顏色由十六進位字串 (#RRGGBB)。
-
-WP7 和 WP8 您還可以指定值為 #AARRGGBB,其中 AA 是 Alpha 值
-
-## 支援的平臺
-
-* iOS
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.hide
-
-隱藏狀態列。
-
- StatusBar.hide();
-
-
-## 支援的平臺
-
-* iOS
-* 安卓系統
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.show
-
-顯示狀態列。
-
- StatusBar.show();
-
-
-## 支援的平臺
-
-* iOS
-* 安卓系統
-* Windows Phone 7
-* Windows Phone 8
-
-# StatusBar.isVisible
-
-讀取此屬性,以看看是否狀態列是可見的或不。
-
- if (StatusBar.isVisible) {
- // do something
- }
-
-
-## 支援的平臺
-
-* iOS
-* 安卓系統
-* Windows Phone 7
-* Windows Phone 8 \ No newline at end of file