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 21:14:41 UTC

[07/11] git commit: CB-6773cordova-plugin-splashscreen documentation translation: cordova-plugin-splashscreen

CB-6773cordova-plugin-splashscreen documentation translation: cordova-plugin-splashscreen


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/commit/829dbcc8
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/tree/829dbcc8
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/diff/829dbcc8

Branch: refs/heads/master
Commit: 829dbcc8198e7a6b2d6911ab0c5b57e58d7da662
Parents: ae7daf4
Author: ldeluca <ld...@us.ibm.com>
Authored: Wed May 28 13:15:40 2014 -0400
Committer: ldeluca <ld...@us.ibm.com>
Committed: Wed May 28 13:15:40 2014 -0400

----------------------------------------------------------------------
 doc/zh/index.md | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/blob/829dbcc8/doc/zh/index.md
----------------------------------------------------------------------
diff --git a/doc/zh/index.md b/doc/zh/index.md
index bd6eba7..eae0a07 100644
--- a/doc/zh/index.md
+++ b/doc/zh/index.md
@@ -19,17 +19,17 @@
 
 # org.apache.cordova.splashscreen
 
-這個外掛程式顯示和隱藏在應用程式啟動期間的初始螢幕。
+这个插件显示和隐藏在应用程序启动期间的初始屏幕。
 
-## 安裝
+## 安装
 
     cordova plugin add org.apache.cordova.splashscreen
     
 
-## 支援的平臺
+## 支持的平台
 
-*   亞馬遜火 OS
-*   Android 系統
+*   亚马逊火 OS
+*   Android 系统
 *   黑莓 10
 *   iOS
 *   Windows Phone 7 和 8
@@ -42,30 +42,30 @@
 
 ### Android 的怪癖
 
-您需要在您的 config.xml 中添加下列優先選項
+您需要在您的 config.xml 中添加下列优先选项
 
 `<preference name="splashscreen" value="foo" />`
 
-美孚在哪裡的閃屏檔的名稱。最好是 9 修補程式檔。請確保您的 splashcreen 檔添加到相應的資料夾下的 res/xml 目錄。
+美孚在哪里的闪屏文件的名称。最好是 9 修补程序文件。请确保您的 splashcreen 文件添加到相应的文件夹下的 res/xml 目录。
 
-Android 系統,也可以編輯您的專案主要的 java 檔。您必須添加第二個參數表示一個時間延遲到你 super.loadUrl。
+Android 系统,也可以编辑您的项目主要的 java 文件。您必须添加第二个参数表示一个时间延迟到你 super.loadUrl。
 
 `super.loadUrl(Config.getStartUrl(), 10000);`
 
 ## splashscreen.hide
 
-解雇的初始螢幕。
+搁置的splash屏幕。
 
     navigator.splashscreen.hide();
     
 
 ### 黑莓 10 怪癖
 
-`config.xml`檔的 `AutoHideSplashScreen` 設置必須為`false`.
+`config.xml`文件的 `AutoHideSplashScreen` 设置必须为`false`.
 
 ### iOS 怪癖
 
-`config.xml`檔的 `AutoHideSplashScreen` 設置必須為 `false` 。 若要延遲兩秒鐘隱藏的閃屏,添加如下所示在計時器 `deviceready` 事件處理常式:
+`config.xml`文件的 `AutoHideSplashScreen`必须设置为`false` 。 若要延迟两秒钟隐藏的闪屏,在`deviceready` 事件处理程序中添加一个如下所示的计时器 :
 
         setTimeout(function() {
             navigator.splashscreen.hide();
@@ -74,11 +74,11 @@ Android 系統,也可以編輯您的專案主要的 java 檔。您必須添加
 
 ## splashscreen.show
 
-顯示初始螢幕。
+显示splash屏幕。
 
     navigator.splashscreen.show();
     
 
-您的應用程式不能調用 `navigator.splashscreen.show()` 直到應用程式已啟動和 `deviceready` 觸發了事件。 但因為通常的閃屏為了是可見的在您的應用程式啟動之前,似乎要打敗閃屏的目的。 提供一些配置在 `config.xml` 自動將 `show` 的初始螢幕,您的應用程式啟動後立即和它在之前已完全開始收到 `deviceready` 事件。 做這種配置的詳細資訊,請參閱[圖示和閃屏][1]。 出於此原因,它是不太可能你需要調用 `navigator.splashscreen.show()` ,使初始螢幕可見為應用程式啟動。
+您的应用程序不能调用 `navigator.splashscreen.show()` 直到应用程序已启动和 `deviceready` 触发了事件。 但因为通常的闪屏为了是可见的在您的应用程序启动之前,似乎要打败闪屏的目的。 提供一些配置在 `config.xml` 自动将 `show` 的初始屏幕,您的应用程序启动后立即和它在之前已完全开始收到 `deviceready` 事件。 做这种配置的详细信息,请参阅[图标和闪屏][1]。 出于此原因,它是不太可能你需要调用 `navigator.splashscreen.show()` ,使初始屏幕可见为应用程序启动。
 
  [1]: http://cordova.apache.org/docs/en/edge/config_ref_images.md.html
\ No newline at end of file