[open-ils-commits] r10038 -
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon Jul 14 21:05:58 EDT 2008
Author: djfiander
Date: 2008-07-14 21:05:57 -0400 (Mon, 14 Jul 2008)
New Revision: 10038
Modified:
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common/jubgrid.html
Log:
Fixed newly introduced I18N *sigh*
Modified: branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common/jubgrid.html
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common/jubgrid.html 2008-07-15 00:43:42 UTC (rev 10037)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common/jubgrid.html 2008-07-15 01:05:57 UTC (rev 10038)
@@ -53,16 +53,16 @@
}
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 @@
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},
]]
}];
More information about the open-ils-commits
mailing list