From a3eafab2b4435a8f00877b30f87989dc614ae99f Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 11 Mar 2013 20:53:55 -0400 Subject: [PATCH] Bug 7596 - System prefs editor JS contains untranslatable English string Content-Type: text/plain; charset="utf-8" There is one stray instance of an untranslatable string in preferences.js. This patch replaces it with a variable which is now defined in the preferences template. To test, open the system preferences editor and change any setting. You should see the usual "Saved preference " message. To test that error strings are now translatable, run "perl translate update " from misc/translator, then check if the affected strings shows up in the po file. Signed-off-by: Liz Rea Tested both, all ok. --- .../intranet-tmpl/prog/en/js/pages/preferences.js | 2 +- .../prog/en/modules/admin/preferences.tt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js b/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js index 96e9e99..8fe6369 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js @@ -21,7 +21,7 @@ KOHA.Preferences = { modified_prefs.each(function(){ var modified_pref = $(this).attr("id"); modified_pref = modified_pref.replace("pref_",""); - msg += 'Saved preference '+modified_pref+'\n'; + msg += ""+ MSG_SAVED_PREFERENCE + " " + modified_pref + "\n"; }); humanMsg.displayAlert(msg); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt index ebb9d8c..04ebe76 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt @@ -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"); -- 1.7.9.5