Fixed  "All templates saved successfully", text hard coded

Allan

Well-known member
When edit template, the texte "All templates saved successfully" is hard coded.
PS: French language by default.

hard_coded.webp
 
template_edit.js:

Code:
ajaxSaveSuccess: function(ajaxData, textStatus)
  {
  if (XenForo.hasResponseError(ajaxData))
  {
    return false;
  }
  XenForo.alert('All templates saved successfully.', 'Success!', 1000);
 
Top Bottom