You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by vi...@apache.org on 2015/02/27 19:47:48 UTC

cordova-plugin-console git commit: CB-8438 cordova-plugin-console documentation translation: cordova-plugin-console

Repository: cordova-plugin-console
Updated Branches:
  refs/heads/master 669d6ca4e -> 8e7be2893


CB-8438 cordova-plugin-console documentation translation: cordova-plugin-console


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/commit/8e7be289
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/tree/8e7be289
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/diff/8e7be289

Branch: refs/heads/master
Commit: 8e7be2893a3c1b6e47122c641ff77c45a3102aeb
Parents: 669d6ca
Author: Victor Sosa <vi...@apache.org>
Authored: Fri Feb 27 12:47:39 2015 -0600
Committer: Victor Sosa <vi...@apache.org>
Committed: Fri Feb 27 12:47:39 2015 -0600

----------------------------------------------------------------------
 doc/de/index.md | 12 +++++++++++-
 doc/es/index.md | 10 +++++++++-
 doc/fr/index.md | 10 +++++++++-
 doc/it/index.md | 10 ++++++++++
 doc/ja/index.md | 12 +++++++++++-
 doc/ko/index.md | 10 ++++++++++
 doc/pl/index.md | 10 ++++++++++
 doc/zh/index.md | 12 +++++++++++-
 8 files changed, 81 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/8e7be289/doc/de/index.md
----------------------------------------------------------------------
diff --git a/doc/de/index.md b/doc/de/index.md
index 07c8317..cca4896 100644
--- a/doc/de/index.md
+++ b/doc/de/index.md
@@ -21,6 +21,16 @@
 
 Dieses Plugin stellt sicher, dass der Befehl console.log() so hilfreich ist, wie er sein kann. Es fügt zusätzliche Funktion für iOS, Ubuntu, Windows Phone 8 und Windows 8 hinzu. Teilweise kann es vorkommen, dass der Befehl console.log() nicht korrekt erkannt wird, und es zu Fehlern bzw. zu nicht angezeigten Logs in der Console kommt. Wenn Sie mit der derzeitigen Funktionsweise zufrieden sind, kann es sein, dass Sie dieses Plugin nicht benötigen.
 
+Dieses Plugin wird ein global-`console`-Objekt definiert.
+
+Obwohl das Objekt im globalen Gültigkeitsbereich ist, stehen Features von diesem Plugin nicht bis nach dem `deviceready`-Ereignis.
+
+    document.addEventListener("deviceready", onDeviceReady, false);
+    function onDeviceReady() {
+        console.log("console.log works well");
+    }
+    
+
 ## Installation
 
     cordova plugin add org.apache.cordova.console
@@ -28,4 +38,4 @@ Dieses Plugin stellt sicher, dass der Befehl console.log() so hilfreich ist, wie
 
 ### Android Eigenarten
 
-Auf einigen anderen Plattformen als Android reagiert der Befehl console.log ("1", "2", "3") auf mehrere Befehle. In diesem Fall 1, 2 und 3. Android wird jedoch nur auf das erste Argument (1) reagieren. Nachfolgende Argumente zu console.log() (2 und 3) werden ignoriert. Dafür ist aber nicht dieses Plugin verantwortlich! Es ist eine Limitierung die von Android kommt und nicht von diesem Plugin beeinflusst werden kann.
\ No newline at end of file
+Auf einigen Plattformen als Android fungieren console.log() auf mehrere Argumente wie console.log ("1", "2", "3"). Android wird jedoch nur auf das erste Argument fungieren. Nachfolgende Argumente zu console.log() werden ignoriert. Dieses Plugin ist nicht die Verantwortung dafür, es ist eine Einschränkung von Android selbst.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/8e7be289/doc/es/index.md
----------------------------------------------------------------------
diff --git a/doc/es/index.md b/doc/es/index.md
index 610dab3..bdd524e 100644
--- a/doc/es/index.md
+++ b/doc/es/index.md
@@ -21,9 +21,17 @@
 
 Este plugin es para asegurarse de que console.log() es tan útil como puede ser. Añade función adicional para iOS, Windows Phone 8, Ubuntu y Windows 8. Si estás contento con cómo funciona console.log() para ti, entonces probablemente no necesitas este plugin.
 
+Este plugin define un global `console` objeto.
+
+Aunque el objeto está en el ámbito global, características proporcionadas por este plugin no están disponibles hasta después de la `deviceready` evento.
+
+    document.addEventListener ("deviceready", onDeviceReady, false);
+    function onDeviceReady() {console.log ("console.log funciona bien");}
+    
+
 ## Instalación
 
-    cordova plugin add org.apache.cordova.console
+    Cordova plugin agregar org.apache.cordova.console
     
 
 ### Rarezas Android

http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/8e7be289/doc/fr/index.md
----------------------------------------------------------------------
diff --git a/doc/fr/index.md b/doc/fr/index.md
index bde950e..3d53b53 100644
--- a/doc/fr/index.md
+++ b/doc/fr/index.md
@@ -21,9 +21,17 @@
 
 Ce plugin est destiné à faire en sorte que console.log() est aussi utile que possible. Il ajoute une fonction supplémentaire pour iOS, Ubuntu, Windows Phone 8 et Windows 8. Si vous êtes satisfait du fonctionnement de console.log() pour vous, alors vous avez probablement pas besoin ce plugin.
 
+Ce plugin définit un global `console` objet.
+
+Bien que l'objet est dans la portée globale, les fonctions offertes par ce plugin ne sont pas disponibles jusqu'après la `deviceready` événement.
+
+    document.addEventListener (« deviceready », onDeviceReady, false) ;
+    function onDeviceReady() {console.log ("console.log fonctionne bien");}
+    
+
 ## Installation
 
-    cordova plugin add org.apache.cordova.console
+    Cordova plugin ajouter org.apache.cordova.console
     
 
 ### Quirks Android

http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/8e7be289/doc/it/index.md
----------------------------------------------------------------------
diff --git a/doc/it/index.md b/doc/it/index.md
index f80a637..0dba2a2 100644
--- a/doc/it/index.md
+++ b/doc/it/index.md
@@ -21,6 +21,16 @@
 
 Questo plugin è intesa a garantire che console.log() è tanto utile quanto può essere. Aggiunge una funzione aggiuntiva per iOS, Ubuntu, Windows 8 e Windows Phone 8. Se sei soddisfatto di come console.log() funziona per voi, quindi probabilmente non è necessario questo plugin.
 
+Questo plugin definisce un oggetto globale `console`.
+
+Sebbene l'oggetto sia in ambito globale, funzionalità fornite da questo plugin non sono disponibili fino a dopo l'evento `deviceready`.
+
+    document.addEventListener("deviceready", onDeviceReady, false);
+    function onDeviceReady() {
+        console.log("console.log works well");
+    }
+    
+
 ## Installazione
 
     cordova plugin add org.apache.cordova.console

http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/8e7be289/doc/ja/index.md
----------------------------------------------------------------------
diff --git a/doc/ja/index.md b/doc/ja/index.md
index f8a39c5..2197841 100644
--- a/doc/ja/index.md
+++ b/doc/ja/index.md
@@ -21,6 +21,16 @@
 
 このプラグインは、その console.log() がすることができます便利なことを確認するものです。 それは、iOS、Ubuntu、Windows Phone 8 および Windows 8 の追加関数を追加します。 場合はあなたのための console.log() の作品に満足しているし、おそらく必要はありませんこのプラグイン。
 
+このプラグインでは、グローバル ・ `console` オブジェクトを定義します。
+
+オブジェクトは、グローバル スコープでですが、このプラグインによって提供される機能は、`deviceready` イベントの後まで使用できません。
+
+    document.addEventListener("deviceready", onDeviceReady, false);
+    function onDeviceReady() {
+        console.log("console.log works well");
+    }
+    
+
 ## インストール
 
     cordova plugin add org.apache.cordova.console
@@ -28,4 +38,4 @@
 
 ### Android の癖
 
-アンドロイド以外のいくつかのプラットフォームで console.log() は console.log (「1」、「2」、「3」) など、複数の引数に動作します。 しかし、アンドロイドは、最初の引数でのみ動作します。 Console.log() に後続の引数は無視されます。 このプラグインが原因ではない、それは Android の自体の制限です。
\ No newline at end of file
+アンドロイド以外のいくつかのプラットフォームで console.log() は console.log (「1」、「2」、「3」) など、複数の引数に動作します。 しかし、アンドロイドは、最初の引数でのみ動作します。 console.log() に後続の引数は無視されます。 このプラグインが原因ではない、それは Android の自体の制限です。
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/8e7be289/doc/ko/index.md
----------------------------------------------------------------------
diff --git a/doc/ko/index.md b/doc/ko/index.md
index b07b2d6..9b4d80c 100644
--- a/doc/ko/index.md
+++ b/doc/ko/index.md
@@ -21,6 +21,16 @@
 
 이 플러그인을 console.log()로 수 유용 되도록 의미입니다. IOS, 우분투, Windows Phone 8 및 윈도우 8에 대 한 추가 기능을 추가 하 고 합니다. Console.log() 당신을 위해 작동 하는 어떻게 행복 한 경우에, 그때 당신은 아마 필요 하지 않습니다이 플러그인.
 
+이 플러그인 글로벌 `console` 개체를 정의합니다.
+
+개체가 전역 범위에 있지만,이 플러그인에 의해 제공 되는 기능 하지 사용할 수 있습니다까지 `deviceready` 이벤트 후.
+
+    document.addEventListener("deviceready", onDeviceReady, false);
+    function onDeviceReady() {
+        console.log("console.log works well");
+    }
+    
+
 ## 설치
 
     cordova plugin add org.apache.cordova.console

http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/8e7be289/doc/pl/index.md
----------------------------------------------------------------------
diff --git a/doc/pl/index.md b/doc/pl/index.md
index 9260d59..d4e89d1 100644
--- a/doc/pl/index.md
+++ b/doc/pl/index.md
@@ -21,6 +21,16 @@
 
 Ten plugin jest przeznaczona do zapewnienia, że console.log() jest tak przydatne, jak to może być. To dodaje dodatkową funkcję dla iOS, Ubuntu, Windows Phone 8 i Windows 8. Jeśli jesteś zadowolony z jak console.log() pracuje dla Ciebie, wtedy prawdopodobnie nie potrzebują tej wtyczki.
 
+Ten plugin definiuje obiekt globalny `console`.
+
+Mimo, że obiekt jest w globalnym zasięgu, funkcji oferowanych przez ten plugin nie są dostępne dopiero po turnieju `deviceready`.
+
+    document.addEventListener("deviceready", onDeviceReady, false);
+    function onDeviceReady() {
+        console.log("console.log works well");
+    }
+    
+
 ## Instalacja
 
     cordova plugin add org.apache.cordova.console

http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/8e7be289/doc/zh/index.md
----------------------------------------------------------------------
diff --git a/doc/zh/index.md b/doc/zh/index.md
index 5044563..ea1ddc4 100644
--- a/doc/zh/index.md
+++ b/doc/zh/index.md
@@ -21,6 +21,16 @@
 
 這個外掛程式是為了確保該 console.log() 是一樣有用,它可以是。 它將添加附加功能的 iOS、 Ubuntu,Windows Phone 8 和 Windows 8。 如果你是快樂與 console.log() 是如何為你工作,那麼可能不需要這個外掛程式。
 
+這個外掛程式定義了一個全域 `console` 物件。
+
+儘管物件是在全球範圍內,提供這個外掛程式的功能不可用直到 `deviceready` 事件之後。
+
+    document.addEventListener("deviceready", onDeviceReady, false);
+    function onDeviceReady() {
+        console.log("console.log works well");
+    }
+    
+
 ## 安裝
 
     cordova plugin add org.apache.cordova.console
@@ -28,4 +38,4 @@
 
 ### Android 的怪癖
 
-在一些非 Android 平臺上,console.log() 將作用於多個參數,如 console.log ("1"、"2"、"3")。 然而,Android 將僅在第一個參數上採取行動。 對 console.log() 的後續參數將被忽略。 這個外掛程式不是的原因,,它是安卓系統本身的限制。
\ No newline at end of file
+在一些平臺上除了 Android,console.log() 亦會根據多個參數,如 console.log ("1"、"2"、"3")。 然而,安卓系統只亦會根據第一個參數。 對 console.log() 的後續參數將被忽略。 這個外掛程式不是的原因,它是一個 android 作業系統本身的限制。
\ No newline at end of file


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