From d76a87518cd72b3aeeac45522ece0ef73d753366 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 3 Feb 2011 10:58:10 -0500 Subject: [PATCH] Fix for Bug 5689 - System preference notifications are not translatable Content-Type: text/plain; charset="utf-8" Defining strings in the template so that they can be translated. --- .../intranet-tmpl/prog/en/js/pages/preferences.js | 14 +++++++------- .../prog/en/modules/admin/preferences.tmpl | 12 +++++++++--- 2 files changed, 16 insertions(+), 10 deletions(-) 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 cbf98b8..e7d84fd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js @@ -11,10 +11,10 @@ KOHA.Preferences = { Save: function ( form ) { data = $( form ).find( '.modified' ).serialize(); if ( !data ) { - humanMsg.displayAlert( 'Nothing to save' ); + humanMsg.displayAlert( MSG_NOTHING_TO_SAVE ); return; } - KOHA.AJAX.MarkRunning( $( form ).find( '.save-all' ), _( 'Saving...' ) ); + KOHA.AJAX.MarkRunning( $( form ).find( '.save-all' ), _( MSG_SAVING ) ); KOHA.AJAX.Submit( { data: data, url: '/cgi-bin/koha/svc/config/systempreferences/', @@ -38,7 +38,7 @@ $( document ).ready( function () { $( this ).addClass( 'modified' ); var name_cell = $( this ).parents( '.name-row' ).find( '.name-cell' ); if ( !name_cell.find( '.modified-warning' ).length ) - name_cell.append( '(modified)' ); + name_cell.append( '('+MSG_MODIFIED+')' ); KOHA.Preferences.Modified = true; } @@ -54,7 +54,7 @@ $( document ).ready( function () { window.onbeforeunload = function () { if ( KOHA.Preferences.Modified ) { - return _( "You have made changes to system preferences." ); + return MSG_MADE_CHANGES; } } @@ -73,16 +73,16 @@ $( document ).ready( function () { return false; } ).nextAll( 'textarea, input[type=submit]' ).hide().css( { opacity: 0 } ); - $("h3").attr("class","expanded").attr("title",_("Click to expand this section")); + $("h3").attr("class","expanded").attr("title",MSG_CLICK_TO_EXPAND); var collapsible = $(".collapsed,.expanded"); $(collapsible).toggle( function () { - $(this).addClass("collapsed").removeClass("expanded").attr("title",_("Click to expand this section")); + $(this).addClass("collapsed").removeClass("expanded").attr("title",MSG_CLICK_TO_EXPAND); $(this).next("table").hide(); }, function () { - $(this).addClass("expanded").removeClass("collapsed").attr("title",_("Click to collapse this section")); + $(this).addClass("expanded").removeClass("collapsed").attr("title",MSG_CLICK_TO_COLLAPSE); $(this).next("table").show(); } ); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tmpl index 3ae0281..06a0592 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tmpl @@ -6,15 +6,21 @@ /css/humanmsg.css" /> - - + + -- 1.7.3