Merge branch 'bug_7596' into 3.12-master
This commit is contained in:
commit
deb77c1e54
2 changed files with 2 additions and 1 deletions
|
@ -21,7 +21,7 @@ KOHA.Preferences = {
|
|||
modified_prefs.each(function(){
|
||||
var modified_pref = $(this).attr("id");
|
||||
modified_pref = modified_pref.replace("pref_","");
|
||||
msg += '<strong>Saved preference '+modified_pref+'</strong>\n';
|
||||
msg += "<strong>"+ MSG_SAVED_PREFERENCE + " " + modified_pref + "</strong>\n";
|
||||
});
|
||||
humanMsg.displayAlert(msg);
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
var search_jumped = [% IF ( search_jumped ) %]true[% ELSE %]false[% END %];
|
||||
var MSG_NOTHING_TO_SAVE = _("Nothing to save");
|
||||
var MSG_SAVING = _("Saving...");
|
||||
var MSG_SAVED_PREFERENCE = _("Saved preference");
|
||||
var MSG_MODIFIED = _("modified");
|
||||
var MSG_MADE_CHANGES = _("You have made changes to system preferences.");
|
||||
var MSG_CLICK_TO_EXPAND = _("Click to expand this section");
|
||||
|
|
Loading…
Reference in a new issue