2016-01-27 107 views
0

我翻譯一個項目,以我自己的語言,但我找不到,我應該翻譯了jQuery英語翻譯

的按鈕「是」,「否」和「取消」例如,該行創建了一個彈出當用戶想註銷:

function logout(){ 
    jQueryConfirmWithTitle('Are you sure you want to logout?', 'Confirm logout',function() {logoff(false);}); 
}; 

function logoff(timeOut) { 
    $('#logoffTimeout').val(timeOut ? 'true' : 'false'); 
    $('#logoffForm').submit(); 
}; 

哪裏應該去的jQuery的那些標準字符串的郵件翻譯?

編輯: 由於@MikeC指出,這不是我認爲是jQuery的功能,所以我看起來更深入這個函數,並找到它在哪裏宣佈。

function jQueryConfirmWithTitle(confirmText, titleText, callbackOnYes) { 
    jQueryConfirmWithYesNoCallback(confirmText, titleText, callbackOnYes, function() {}); 
} 

function jQueryConfirmWithYesNoCallback(confirmText, titleText, callbackOnYes, callbackOnNo) { 
    var dlgConfirm = $('#dlgConfirm'); 
    dlgConfirm.empty().html('<p style="font-size: 1.0em;">'+confirmText+'</p>'); 
    dlgConfirm.dialog({ 
     modal: true, 
     title: titleText, 
     buttons: { 
      Yes: function() { 
       $(this).dialog("close"); 
       callbackOnYes(); 
      }, 
      No: function() { 
       $(this).dialog("close"); 
       callbackOnNo(); 
      } 
     }, 
     open: function() { $(".ui-dialog-titlebar-close").hide(); } 
    }); 
} 
+2

'jQueryConfirmWithTitle'是一個非標準的jQuery函數。意思是,我們無法確定文本的設置位置。 –

+0

你用什麼庫或方法創建彈出窗口?因爲@Mike評論這不是一個jQuery函數。 – kpucha

+0

如何翻譯'你確定要退出嗎?'?你有沒有像tr = {'hu'這樣的散列:{'你確定要註銷嗎?':'Biztos,hogy ki akarszlépni?'}}?我想你是。首先翻譯你需要的jquery字符串以相同的方式。然後向我們展示那部分代碼(添加到問題中)。 – Gavriel

回答