|
Lines 245-263
Link Here
|
| 245 |
in_transit: _("In transit"), |
245 |
in_transit: _("In transit"), |
| 246 |
lost: _("Lost"), |
246 |
lost: _("Lost"), |
| 247 |
...Object.fromEntries( |
247 |
...Object.fromEntries( |
| 248 |
[...av_lost].map(([k, v]) => [`lost-${k}`, `* ${v}`]) |
248 |
[...av_lost].map(([k, v]) => [`lost-${k}`, `⤷ ${v}`]) |
| 249 |
), |
249 |
), |
| 250 |
withdrawn: _("Withdrawn"), |
250 |
withdrawn: _("Withdrawn"), |
| 251 |
...Object.fromEntries( |
251 |
...Object.fromEntries( |
| 252 |
[...av_withdrawn].map(([k, v]) => [`withdrawn-${k}`, `* ${v}`]) |
252 |
[...av_withdrawn].map(([k, v]) => [`withdrawn-${k}`, `⤷ ${v}`]) |
| 253 |
), |
253 |
), |
| 254 |
damaged:_("Damaged"), |
254 |
damaged:_("Damaged"), |
| 255 |
...Object.fromEntries( |
255 |
...Object.fromEntries( |
| 256 |
[...av_damaged].map(([k, v]) => [`damaged-${k}`, `* ${v}`]) |
256 |
[...av_damaged].map(([k, v]) => [`damaged-${k}`, `⤷ ${v}`]) |
| 257 |
), |
257 |
), |
| 258 |
not_for_loan: _("Not for loan"), |
258 |
not_for_loan: _("Not for loan"), |
| 259 |
...Object.fromEntries( |
259 |
...Object.fromEntries( |
| 260 |
[...av_not_for_loan].map(([k, v]) => [`not_for_loan-${k}`, `* ${v}`]) |
260 |
[...av_not_for_loan].map(([k, v]) => [`not_for_loan-${k}`, `⤷ ${v}`]) |
| 261 |
), |
261 |
), |
| 262 |
on_hold: _("On hold"), |
262 |
on_hold: _("On hold"), |
| 263 |
recalled: _("Recalled"), |
263 |
recalled: _("Recalled"), |
| 264 |
- |
|
|