請恕我雞蛋裡挑骨頭!Mac 寫:phpBB 2.0.18 升級至 phpBB 2.0.19 步驟
這是我的翻譯代碼: 選擇全部
$lang['Login_attempts_exceeded'] = '你的登入嘗試次數已經到達上限 (%s 次). 你必須等待 %s 分鐘之後才能再次登入.'; $lang['Please_remove_install_contrib'] = '請確保 install/ 和 contrib/ 這兩個目錄都已經刪除';~Mac代碼: 選擇全部
// // Login attempts configuration // $lang['Max_login_attempts'] = '可容許的登入嘗試次數'; $lang['Max_login_attempts_explain'] = '允許會員嘗試登入討論版的次數.'; $lang['Login_reset_time'] = '登入封鎖期限'; $lang['Login_reset_time_explain'] = '當會員達到了登入的嘗試次數後, 在此鎖定期限�]分鐘)過期之前, 會員將被暫時禁止登入.';
翻了一下英語系語言檔, 發現升級時新增語言, 裡頭用字" exceeded" 或" exceeding"
個人以為, 翻做" 超過" 或" 超過了" 應該比較符合原意.
也就是說, Mac 大大的語譯部份, 可以調整如下:
#
#-----[ FIND ]-----
#
代碼: 選擇全部
$lang['Login_attempts_exceeded'] = '你的登入嘗試次數已經到達上限 (%s 次). 你必須等待 %s 分鐘之後才能再次登入.';
#-----[ REPLACE WITH ]-----
#
代碼: 選擇全部
$lang['Login_attempts_exceeded'] = '你的登入嘗試次數已經超過上限 (%s 次). 你必須等待 %s 分鐘之後才能再次登入.';
#-----[ FIND ]-----
#
代碼: 選擇全部
$lang['Login_reset_time_explain'] = '當會員達到了登入的嘗試次數後, 在此鎖定期限�]分鐘)過期之前, 會員將被暫時禁止登入.';
#-----[ REPLACE WITH ]-----
#
代碼: 選擇全部
$lang['Login_reset_time_explain'] = '當會員超過了可容許的登入嘗試次數後, 在此鎖定期限�]分鐘)內, 會員將被暫時禁止登入.';




