From: djfiander Date: Tue, 15 Jul 2008 01:05:57 +0000 (+0000) Subject: Fixed newly introduced I18N *sigh* X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5fb68d6e8de0bdef5e15bce3baa7152e980dfbd0;p=Evergreen.git Fixed newly introduced I18N *sigh* git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@10038 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common/jubgrid.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common/jubgrid.html index 87ca68e9c0..7ebefce01e 100644 --- a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common/jubgrid.html +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common/jubgrid.html @@ -53,16 +53,16 @@ pointing to the JUB model (and store) that you have created. } JUBGrid.jubGridLayout = [{ cells: [[ - {name: '${_(ID)}', field: 'id'}, - {name: '${_(Title)}', width: "auto", get:JUBGrid.getJUBTitle}, - {name: '${_(Author)}', get:JUBGrid.getJUBAuthor}, - {name: '${_(ISBN)}', get:JUBGrid.getJUBIsbn}, + {name: '${_("ID")}', field: 'id'}, + {name: '${_("Title")}', width: "auto", get:JUBGrid.getJUBTitle}, + {name: '${_("Author")}', get:JUBGrid.getJUBAuthor}, + {name: '${_("ISBN")}', get:JUBGrid.getJUBIsbn}, {name: '${_("Pubdate")}', get:JUBGrid.getJUBPubdate}, {name: '${_("Price")}', get:JUBGrid.getJUBPrice}, - {name: '${_(Vendor)}', get:JUBGrid.getProvider}, - {name: '${_(# Copies)}', field: 'item_count'}, - {name: '${_(State)}', field: 'state'}, - {name: '${_(PO)}', get:JUBGrid.getPO} + {name: '${_("Vendor")}', get:JUBGrid.getProvider}, + {name: '${_("No. Copies")}', field: 'item_count'}, + {name: '${_("State")}', field: 'state'}, + {name: '${_("PO")}', get:JUBGrid.getPO} ]] }]; @@ -94,16 +94,16 @@ pointing to the JUB model (and store) that you have created. JUBGrid.jubDetailGridLayoutReadOnly = [{ cells: [[ - {name:'${_(ID)}', field:"id"}, - {name:'${_(Fund)}', field:"fund", + {name:'${_("ID")}', field:"id"}, + {name:'${_("Fund")}', field:"fund", get:JUBGrid.getLIDFundCode, }, - {name:'${_(Branch)}', field:"owning_lib", + {name:'${_("Branch")}', field:"owning_lib", get:JUBGrid.getLIDLibName, }, - {name:"Barcode", field:"barcode", width:'auto'}, - {name:"Call Number", field:"cn_label", width:'auto'}, - {name:"Shelving Location", field:"location", + {name:'${_("Barcode")}', field:"barcode", width:'auto'}, + {name:'${_("Call Number")}', field:"cn_label", width:'auto'}, + {name:'${_("Shelving Location")}', field:"location", width:'auto', get:JUBGrid.getCopyLocation}, ]] }];