From: a. bellenir Date: Wed, 22 Aug 2018 15:33:55 +0000 (-0400) Subject: LP#1788417: boolean fields should say 'Yes'/'No' instead of true/false X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3100c328934dcc2b83ea90039294048d4b26c09b;p=evergreen%2Ftadl.git LP#1788417: boolean fields should say 'Yes'/'No' instead of true/false boolean fields on egGrid use tt2-translated strings for "Yes" and "No" instead of letting the browser translate the values 'true' and 'false' (in accordance with the prophecy of XUL) Signed-off-by: a. bellenir Signed-off-by: Jason Stephenson Signed-off-by: Chris Sharp --- diff --git a/Open-ILS/src/templates/staff/base_js.tt2 b/Open-ILS/src/templates/staff/base_js.tt2 index 98650a7cd3..a2c6ff53ee 100644 --- a/Open-ILS/src/templates/staff/base_js.tt2 +++ b/Open-ILS/src/templates/staff/base_js.tt2 @@ -155,6 +155,8 @@ UpUp.start({ s.PAGE_TITLE_DYNAMIC_AND_CONTEXT = "[% l('[_1] - [_2]', '{{dynamic}}', '{{context}}') %]"; s.CONFIRM_LONG_RUNNING_ACTION_MSG = "[% l('This action might take a while to complete. Continue?') %]"; s.CONFIRM_LONG_RUNNING_ACTION_ALL_ROWS_TITLE = "[% l('Are you sure you want to load ALL items?') %]"; + s.YES = "[% l('Yes') %]"; + s.NO = "[% l('No') %]"; }]); diff --git a/Open-ILS/web/js/ui/default/staff/services/grid.js b/Open-ILS/web/js/ui/default/staff/services/grid.js index 3f7aba30d4..f2b577c2de 100644 --- a/Open-ILS/web/js/ui/default/staff/services/grid.js +++ b/Open-ILS/web/js/ui/default/staff/services/grid.js @@ -2182,11 +2182,10 @@ angular.module('egGridMod', /** * Translates bare IDL object values into display values. * 1. Passes dates through the angular date filter - * 2. Translates bools to Booleans so the browser can display translated - * value. (Though we could manually translate instead..) + * 2. Converts bools to translated Yes/No strings * Others likely to follow... */ -.filter('egGridValueFilter', ['$filter','egCore', function($filter,egCore) { +.filter('egGridValueFilter', ['$filter','egCore', 'egStrings', function($filter,egCore,egStrings) { function traversePath(obj,path) { var list = path.split('.'); for (var part in path) { @@ -2204,11 +2203,11 @@ angular.module('egGridMod', case 't' : case '1' : // legacy case true: - return ''+true; + return egStrings.YES; case 'f' : case '0' : // legacy case false: - return ''+false; + return egStrings.NO; // value may be null, '', etc. default : return ''; }