|
Lines 241-259
Link Here
|
| 241 |
checked_out: _("Checked out"), |
241 |
checked_out: _("Checked out"), |
| 242 |
local_use: _("On-site checkout"), |
242 |
local_use: _("On-site checkout"), |
| 243 |
in_transit: _("In transit"), |
243 |
in_transit: _("In transit"), |
| 244 |
lost: _("Lost"), |
244 |
lost: _("Lost (all)"), |
| 245 |
...Object.fromEntries( |
245 |
...Object.fromEntries( |
| 246 |
[...av_lost].map(([k, v]) => [`lost-${k}`, `⤷ ${v}`]) |
246 |
[...av_lost].map(([k, v]) => [`lost-${k}`, `⤷ ${v}`]) |
| 247 |
), |
247 |
), |
| 248 |
withdrawn: _("Withdrawn"), |
248 |
withdrawn: _("Withdrawn (all)"), |
| 249 |
...Object.fromEntries( |
249 |
...Object.fromEntries( |
| 250 |
[...av_withdrawn].map(([k, v]) => [`withdrawn-${k}`, `⤷ ${v}`]) |
250 |
[...av_withdrawn].map(([k, v]) => [`withdrawn-${k}`, `⤷ ${v}`]) |
| 251 |
), |
251 |
), |
| 252 |
damaged:_("Damaged"), |
252 |
damaged:_("Damaged (all)"), |
| 253 |
...Object.fromEntries( |
253 |
...Object.fromEntries( |
| 254 |
[...av_damaged].map(([k, v]) => [`damaged-${k}`, `⤷ ${v}`]) |
254 |
[...av_damaged].map(([k, v]) => [`damaged-${k}`, `⤷ ${v}`]) |
| 255 |
), |
255 |
), |
| 256 |
not_for_loan: _("Not for loan"), |
256 |
not_for_loan: _("Not for loan (all)"), |
| 257 |
...Object.fromEntries( |
257 |
...Object.fromEntries( |
| 258 |
[...av_not_for_loan].map(([k, v]) => [`not_for_loan-${k}`, `⤷ ${v}`]) |
258 |
[...av_not_for_loan].map(([k, v]) => [`not_for_loan-${k}`, `⤷ ${v}`]) |
| 259 |
), |
259 |
), |
| 260 |
- |
|
|