Index: /nutchez-0.2/src/test/client_install
===================================================================
--- /nutchez-0.2/src/test/client_install	(revision 190)
+++ /nutchez-0.2/src/test/client_install	(revision 191)
@@ -53,35 +53,35 @@
 # 檢查執行這個程式的是否為root權限
 check_root
-read
+read -p "continue.."
 
 # 查出此主機的作業系統,以及版本
 check_systemInfo
-read
+read -p "continue.."
 
 # 安裝需要的套件 (目前只支援 deb 套件的系統自動安裝，yum或其他套件系統的則必須手動安裝)
 # 需要套件名稱 ssh, expect, dialog 
 install_packages
-read
+read -p "continue.."
 
 # 檢查之前是否有安裝NutchEz
 # 目前先檢查是否有/opt/nutchez 這個資料夾即可
 check_nez_installed
-read
+read -p "continue.."
 
 # 檢查是否有安裝sun java ,並檢查是否為jdk 1.6 以上版本
 check_sunJava
-read
+read -p "continue.."
 
 # 檢查是否有安裝openssh, openssh-server
 check_ssh
-read
+read -p "continue.."
 
 # 檢查是否有安裝dialog
 check_dialog
-read
+read -p "continue.."
 
 # 新增nutchuser 帳號時用 Nutchuser_Passwd 當密碼
 creat_nutchuser_account
-read
+read -p "continue.."
 
 # scp nutchuser@master_ip:~ 把.ssh/目錄複製下來
@@ -89,15 +89,16 @@
 # 此步驟若無法連到 master 則跳出
 scp_master_nutchuser_sshkey $Master_IP_Address
-read
+read -p "continue.."
 
 # 用scp 複製 master 的設定與安裝資料
 # 目前僅需做到能無礙的複製遠端的/opt/nutchez/到local的/opt/
 scp_packages $Master_IP_Address
-read
+read -p "continue.."
 
 # 安裝及啟動
 install_nutch_package
-read
+read -p "continue.."
 
 # 回覆 Hostname 和 IP 給 Master Server
 recall_hostname_ip $Master_IP_Address
+read -p "continue.."
Index: /nutchez-0.2/src/test/client_install_func.sh
===================================================================
--- /nutchez-0.2/src/test/client_install_func.sh	(revision 190)
+++ /nutchez-0.2/src/test/client_install_func.sh	(revision 191)
@@ -29,5 +29,5 @@
 . lang_en_US_client_install
 # if locale is zh then source chinese
-echo $lang | grep 'zh' && source lang_zh_TW_nutchez
+echo $lang | grep 'zh' >> /dev/null && source lang_zh_TW_client_install
 
 # Ask language
