View | Details | Raw Unified | Return to bug 32312
Collapse All | Expand All

(-)a/Koha/Database/Columns.pm (-37 / +47 lines)
Lines 197-248 sub columns { Link Here
197
            "zipcode"                     => __("ZIP/Postal code"),
197
            "zipcode"                     => __("ZIP/Postal code"),
198
        },
198
        },
199
        items => {
199
        items => {
200
            "barcode"                           => __("Barcode"),
201
            "biblioitemnumber"                  => __("Biblioitem number (internal)"),
200
            "biblioitemnumber"                  => __("Biblioitem number (internal)"),
202
            "biblionumber"                      => __("Biblio number (internal)"),
201
            "barcode"                           => __("Barcode"),
203
            "booksellerid"                      => __("Source of acquisition"),
204
            "ccode"                             => __("Collection"),
205
            "cn_sort"                           => __("Koha normalized classification for sorting"),
206
            "cn_source"                         => __("Source of classification / shelving scheme"),
207
            "coded_location_qualifier"          => __("Coded location qualifier"),
208
            "copynumber"                        => __("Copy number"),
209
            "damaged_on"                        => __("Damaged on"),
210
            "damaged"                           => __("Damaged status"),
211
            "dateaccessioned"                   => __("Date acquired"),
202
            "dateaccessioned"                   => __("Date acquired"),
203
            "booksellerid"                      => __("Source of acquisition"),
204
            "homebranch"                        => __("Permanent library"),
205
            "price"                             => __("Price"),
206
            "replacementprice"                  => __("Replacement price"),
207
            "replacementpricedate"              => __("Price effective from"),
212
            "datelastborrowed"                  => __("Date last checked out"),
208
            "datelastborrowed"                  => __("Date last checked out"),
213
            "datelastseen"                      => __("Date last seen"),
209
            "datelastseen"                      => __("Date last seen"),
214
            "deleted_on"                        => __("Date of deletion"),
210
            "stack"                             => __("Shelving control number"),
215
            "enumchron"                         => __("Serial enumeraton/chronology"),
211
            "notforloan"                        => __("Not for loan"),
216
            "exclude_from_local_holds_priority" => __("Exclude from local holds priority"),
212
            "damaged"                           => __("Damaged status"),
217
            "holdingbranch"                     => __("Current library"),
213
            "damaged_on"                        => __("Damaged on"),
218
            "homebranch"                        => __("Permanent library"),
219
            "issues"                            => __("Total checkouts"),
220
            "itemcallnumber"                    => __("Call number"),
221
            "itemlost_on"                       => __("Lost on"),
222
            "itemlost"                          => __("Lost status"),
214
            "itemlost"                          => __("Lost status"),
223
            "itemnotes_nonpublic"               => __("Internal note"),
215
            "itemlost_on"                       => __("Lost on"),
216
            "withdrawn"                         => __("Withdrawn status"),
217
            "withdrawn_on"                      => __("Withdrawn on"),
218
            "itemcallnumber"                    => __("Call number"),
219
            "coded_location_qualifier"          => __("Coded location qualifier"),
220
            "issues"                            => __("Total checkouts"),
221
            "renewals"                          => __("Total renewals"),
222
            "reserves"                          => __("Total holds"),
223
            "restricted"                        => __("Use restrictions"),
224
            "itemnotes"                         => __("Public note"),
224
            "itemnotes"                         => __("Public note"),
225
            "itemnumber"                        => __("Item number (internal)"),
225
            "itemnotes_nonpublic"               => __("Internal note"),
226
            "itype"                             => __("Koha item type"),
226
            "holdingbranch"                     => __("Current library"),
227
            "timestamp"                         => __("Timestamp"),
228
            "deleted_on"                        => __("Deleted on"),
227
            "location"                          => __("Shelving location"),
229
            "location"                          => __("Shelving location"),
230
            "permanent_location"                => __("Permanent shelving location"),
231
            "onloan"                            => __("Due date"),
232
            "cn_source"                         => __("Source of classification / shelving scheme"),
233
            "cn_sort"                           => __("Koha normalized classification for sorting"),
234
            "ccode"                             => __("Collection"),
228
            "materials"                         => __("Materials specified"),
235
            "materials"                         => __("Materials specified"),
236
            "uri"                               => __("Uniform Resource Identifier"),
237
            "itype"                             => __("Koha itemtype"),
229
            "more_subfields_xml"                => __("Additional subfields (XML)"),
238
            "more_subfields_xml"                => __("Additional subfields (XML)"),
230
            "new_status"                        => __("New status"),
239
            "enumchron"                         => __("Serial enumeraton/chronology"),
231
            "notforloan"                        => __("Not for loan"),
240
            "copynumber"                        => __("Copy number"),
232
            "onloan"                            => __("Due date"),
233
            "permanent_location"                => __("Permanent shelving location"),
234
            "price"                             => __("Price"),
235
            "renewals"                          => __("Total renewals"),
236
            "replacementprice"                  => __("Replacement price"),
237
            "replacementpricedate"              => __("Price effective from"),
238
            "reserves"                          => __("Total holds"),
239
            "restricted"                        => __("Use restrictions"),
240
            "stack"                             => __("Shelving control number"),
241
            "stocknumber"                       => __("Inventory number"),
241
            "stocknumber"                       => __("Inventory number"),
242
            "timestamp"                         => __("Timestamp"),
242
            "new_status"                        => __("New status"),
243
            "uri"                               => __("Uniform resource identifier"),
243
            "exclude_from_local_holds_priority" => __("Exclude from local holds priority"),
244
            "withdrawn_on"                      => __("Withdrawn on"),
244
        },
245
            "withdrawn"                         => __("Withdrawn status"),
245
        statistics => {
246
            "datetime"       => __("Statistics date and time"),
247
            "branch"         => __("Library"),
248
            "value"          => __("Value"),
249
            "type"           => __("Transaction type"),
250
            "other"          => __("SIP mode"),
251
            "itemnumber"     => __("Item number"),
252
            "itemtype"       => __("Koha item type"),
253
            "location"       => __("Shelving location"),
254
            "borrowernumber" => __("Borrower number"),
255
            "ccode"          => __("Collection"),
256
            "categorycode"   => __("Patron category"),
246
        },
257
        },
247
        biblio => {
258
        biblio => {
248
            "abstract"      => __("Abstract"),
259
            "abstract"      => __("Abstract"),
249
- 

Return to bug 32312