/** * German label mappings for all Fischerei enums and status colors. */ // ===================================================== // Water Type Labels // ===================================================== export const WATER_TYPE_LABELS: Record = { fluss: 'Fluss', bach: 'Bach', see: 'See', teich: 'Teich', weiher: 'Weiher', kanal: 'Kanal', stausee: 'Stausee', baggersee: 'Baggersee', sonstige: 'Sonstige', }; // ===================================================== // Fish Age Class Labels // ===================================================== export const AGE_CLASS_LABELS: Record = { brut: 'Brut', soemmerlinge: 'Sömmerlinge', einsoemmerig: '1-sömmrig', zweisoemmerig: '2-sömmrig', dreisoemmerig: '3-sömmrig', vorgestreckt: 'Vorgestreckt', setzlinge: 'Setzlinge', laichfische: 'Laichfische', sonstige: 'Sonstige', }; // ===================================================== // Catch Book Status Labels // ===================================================== export const CATCH_BOOK_STATUS_LABELS: Record = { offen: 'Offen', eingereicht: 'Eingereicht', geprueft: 'Geprüft', akzeptiert: 'Akzeptiert', abgelehnt: 'Abgelehnt', }; // ===================================================== // Catch Book Status Colors (Badge variants) // ===================================================== export const CATCH_BOOK_STATUS_COLORS: Record = { offen: 'outline', eingereicht: 'secondary', geprueft: 'info', akzeptiert: 'default', abgelehnt: 'destructive', }; // ===================================================== // Verification Labels // ===================================================== export const VERIFICATION_LABELS: Record = { sehrgut: 'Sehr gut', gut: 'Gut', ok: 'OK', schlecht: 'Schlecht', falsch: 'Falsch', leer: 'Leer', }; // ===================================================== // Lease Payment Method Labels // ===================================================== export const LEASE_PAYMENT_LABELS: Record = { bar: 'Bar', lastschrift: 'Lastschrift', ueberweisung: 'Überweisung', }; // ===================================================== // Fish Gender Labels // ===================================================== export const FISH_GENDER_LABELS: Record = { maennlich: 'Männlich', weiblich: 'Weiblich', unbekannt: 'Unbekannt', }; // ===================================================== // Fish Size Category Labels // ===================================================== export const SIZE_CATEGORY_LABELS: Record = { gross: 'Groß', mittel: 'Mittel', klein: 'Klein', };