View | Details | Raw Unified | Return to bug 7596
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js (-1 / +1 lines)
Lines 21-27 KOHA.Preferences = { Link Here
21
        modified_prefs.each(function(){
21
        modified_prefs.each(function(){
22
            var modified_pref = $(this).attr("id");
22
            var modified_pref = $(this).attr("id");
23
            modified_pref = modified_pref.replace("pref_","");
23
            modified_pref = modified_pref.replace("pref_","");
24
            msg += '<strong>Saved preference '+modified_pref+'</strong>\n';
24
            msg += "<strong>"+ MSG_SAVED_PREFERENCE + " " + modified_pref + "</strong>\n";
25
        });
25
        });
26
        humanMsg.displayAlert(msg);
26
        humanMsg.displayAlert(msg);
27
27
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt (-1 / +1 lines)
Lines 17-22 Link Here
17
    var search_jumped = [% IF ( search_jumped ) %]true[% ELSE %]false[% END %];
17
    var search_jumped = [% IF ( search_jumped ) %]true[% ELSE %]false[% END %];
18
    var MSG_NOTHING_TO_SAVE = _("Nothing to save");
18
    var MSG_NOTHING_TO_SAVE = _("Nothing to save");
19
    var MSG_SAVING = _("Saving...");
19
    var MSG_SAVING = _("Saving...");
20
    var MSG_SAVED_PREFERENCE = _("Saved preference");
20
    var MSG_MODIFIED = _("modified");
21
    var MSG_MODIFIED = _("modified");
21
    var MSG_MADE_CHANGES = _("You have made changes to system preferences.");
22
    var MSG_MADE_CHANGES = _("You have made changes to system preferences.");
22
    var MSG_CLICK_TO_EXPAND = _("Click to expand this section");
23
    var MSG_CLICK_TO_EXPAND = _("Click to expand this section");
23
- 

Return to bug 7596