Fixed newly introduced I18N *sigh*
authordjfiander <djfiander@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 15 Jul 2008 01:05:57 +0000 (01:05 +0000)
committerdjfiander <djfiander@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 15 Jul 2008 01:05:57 +0000 (01:05 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@10038 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/web/oilsweb/oilsweb/templates/oils/default/common/jubgrid.html

index 87ca68e..7ebefce 100644 (file)
@@ -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},
         ]]
     }];