// // JS Language file for DCM Home // $Id$ // var Language = new Class({ Implements: [Events,Options], // // String syntax is styleId: "Helper Text" strings: { agencyHelper: "Agency Code should be two digits ( e.g. HUD's agency code is 86 )", actionDateHelper: "Action date should be in the format mm/dd/yyyy", commTimeHelper: "Communication Time should be in the format mm/dd/yyyy", granteeName: "This field is prepopulated from existing data. Users will not be able to edit this value.", dunsNumber: "This field is prepopulated from existing data. Users will not be able to edit this value." }, // // Don't have to edit anything below here if you // are just adding in language strings initialize:function() {}, // // Bread and butter getString: function( elementId ) { return( eval( "this.strings."+elementId ) ); } });