feat(seed-saving): per-crop 'how to save this seed' guidance
A bundled, curated knowledge layer — the differentiator of a serious seed app. For a variety's crop it shows how the plant reproduces and what it takes to keep the variety true: life cycle, pollination (self/cross + insect/wind), isolation distance, how many plants to save from, dry/wet processing, a difficulty pill, and a short tip — all in human words. - assets/catalog/seed_saving.json: curated public-domain data (Seed to Seed / Seed Savers), keyed by botanical FAMILY (defaults) with per-species/genus OVERRIDES that win — so e.g. Vicia faba is correctly insect-cross-pollinated despite the selfing Fabaceae default, and maize is wind-pollinated with a large population. Notes are locale-keyed (es/en), extensible to any language — a starter set, not a ceiling. - domain/seed_saving.dart (pure): enums + SeedSavingGuide (merge, note fallback) + SeedSavingData.guideFor (species → genus → family). - data/seed_saving_catalog.dart: loads the asset once into an in-memory singleton (no DB table, no migration); injector loads it at startup. - VarietyDetail gains (from the linked species — the reliable key, vs the editable category); detail screen shows a _SeedSavingView when a guide resolves. - i18n seedSaving block (labels + enum values + params) in en/es/pt/ast. - Tests: domain lookup/merge, the real asset's key corrections, and the detail section shows/hides. 314 suite tests green; analyze clean.
This commit is contained in:
parent
4ebfdca2fd
commit
4bb94db3e0
19 changed files with 954 additions and 2 deletions
|
|
@ -1,4 +1,30 @@
|
|||
{
|
||||
"seedSaving": {
|
||||
"title": "Guardar la so semiente",
|
||||
"subtitle": "Lo que fai falta pa caltener la variedá fiel",
|
||||
"lifeCycle": "Ciclu",
|
||||
"cycleAnnual": "Añal",
|
||||
"cycleBiennial": "Bienal — da semiente el 2.u añu",
|
||||
"cyclePerennial": "Perenne",
|
||||
"pollination": "Polinización",
|
||||
"pollSelf": "Autopolinízase",
|
||||
"pollCross": "Crúciase con otres",
|
||||
"pollMixed": "Autopolinízase, pero crúciase dacuando",
|
||||
"byInsect": "por inseutos",
|
||||
"byWind": "col vientu",
|
||||
"isolation": "Xébrala",
|
||||
"isolationRange": "{min}–{max} m d'otres variedaes",
|
||||
"isolationSingle": "{min} m d'otres variedaes",
|
||||
"plants": "Guarda de delles plantes",
|
||||
"plantsValue": "D'a lo menos {n} plantes",
|
||||
"processing": "Cómo llimpiala",
|
||||
"procDry": "Semiente seca (mayar)",
|
||||
"procWet": "Semiente húmeda (fermentar y llavar)",
|
||||
"difficulty": "Dificultá",
|
||||
"diffEasy": "Fácil",
|
||||
"diffMedium": "Media",
|
||||
"diffHard": "Difícil"
|
||||
},
|
||||
"calendar": {
|
||||
"title": "Esti mes",
|
||||
"filterChip": "Esti mes",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue