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 <preference name>" message.
To test that error strings are now translatable, run "perl translate
update <lang>" from misc/translator, then check if the affected strings shows
up in the po file.
---
koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js | 2 +-
koha-tmpl/intranet-tmpl/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 += '<strong>Saved preference '+modified_pref+'</strong>\n';
+ msg += "<strong>"+ MSG_SAVED_PREFERENCE + " " + modified_pref +
"</strong>\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.10.4
_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/