Record germination tests on a lot and surface the result. - GerminationEntry model with a derived rate (germinated / sample). VarietyLot carries its tests (most-recent first) and exposes latestGerminationRate. - VarietyRepository.addGerminationTest; watchVariety now also re-emits on germination-test changes, so the detail refreshes live. - Detail UI: each lot shows a germination % badge and a grass action that opens a sheet listing past tests and adding a new one (germinated + sample size). i18n strings (ES/EN). Tests: derived-rate + reactivity at the repository, and a widget test for the record-test → badge flow. Full suite: 35 passing, 0 skipped.
382 lines
9.9 KiB
Dart
382 lines
9.9 KiB
Dart
///
|
|
/// Generated file. Do not edit.
|
|
///
|
|
// coverage:ignore-file
|
|
// ignore_for_file: type=lint, unused_import
|
|
// dart format off
|
|
|
|
part of 'strings.g.dart';
|
|
|
|
// Path: <root>
|
|
typedef TranslationsEn = Translations; // ignore: unused_element
|
|
class Translations with BaseTranslations<AppLocale, Translations> {
|
|
/// Returns the current translations of the given [context].
|
|
///
|
|
/// Usage:
|
|
/// final t = Translations.of(context);
|
|
static Translations of(BuildContext context) => InheritedLocaleData.of<AppLocale, Translations>(context).translations;
|
|
|
|
/// You can call this constructor and build your own translation instance of this locale.
|
|
/// Constructing via the enum [AppLocale.build] is preferred.
|
|
Translations({Map<String, Node>? overrides, PluralResolver? cardinalResolver, PluralResolver? ordinalResolver, TranslationMetadata<AppLocale, Translations>? meta})
|
|
: assert(overrides == null, 'Set "translation_overrides: true" in order to enable this feature.'),
|
|
$meta = meta ?? TranslationMetadata(
|
|
locale: AppLocale.en,
|
|
overrides: overrides ?? {},
|
|
cardinalResolver: cardinalResolver,
|
|
ordinalResolver: ordinalResolver,
|
|
) {
|
|
$meta.setFlatMapFunction(_flatMapFunction);
|
|
}
|
|
|
|
/// Metadata for the translations of <en>.
|
|
@override final TranslationMetadata<AppLocale, Translations> $meta;
|
|
|
|
/// Access flat map
|
|
dynamic operator[](String key) => $meta.getTranslation(key);
|
|
|
|
late final Translations _root = this; // ignore: unused_field
|
|
|
|
Translations $copyWith({TranslationMetadata<AppLocale, Translations>? meta}) => Translations(meta: meta ?? this.$meta);
|
|
|
|
// Translations
|
|
late final Translations$app$en app = Translations$app$en.internal(_root);
|
|
late final Translations$common$en common = Translations$common$en.internal(_root);
|
|
late final Translations$inventory$en inventory = Translations$inventory$en.internal(_root);
|
|
late final Translations$quickAdd$en quickAdd = Translations$quickAdd$en.internal(_root);
|
|
late final Translations$detail$en detail = Translations$detail$en.internal(_root);
|
|
late final Translations$germination$en germination = Translations$germination$en.internal(_root);
|
|
late final Translations$editVariety$en editVariety = Translations$editVariety$en.internal(_root);
|
|
late final Translations$addLot$en addLot = Translations$addLot$en.internal(_root);
|
|
late final Translations$quantityKind$en quantityKind = Translations$quantityKind$en.internal(_root);
|
|
}
|
|
|
|
// Path: app
|
|
class Translations$app$en {
|
|
Translations$app$en.internal(this._root);
|
|
|
|
final Translations _root; // ignore: unused_field
|
|
|
|
// Translations
|
|
|
|
/// en: 'Tanemaki'
|
|
String get title => 'Tanemaki';
|
|
}
|
|
|
|
// Path: common
|
|
class Translations$common$en {
|
|
Translations$common$en.internal(this._root);
|
|
|
|
final Translations _root; // ignore: unused_field
|
|
|
|
// Translations
|
|
|
|
/// en: 'Save'
|
|
String get save => 'Save';
|
|
|
|
/// en: 'Cancel'
|
|
String get cancel => 'Cancel';
|
|
|
|
/// en: 'Delete'
|
|
String get delete => 'Delete';
|
|
|
|
/// en: 'Edit'
|
|
String get edit => 'Edit';
|
|
}
|
|
|
|
// Path: inventory
|
|
class Translations$inventory$en {
|
|
Translations$inventory$en.internal(this._root);
|
|
|
|
final Translations _root; // ignore: unused_field
|
|
|
|
// Translations
|
|
|
|
/// en: 'Inventory'
|
|
String get title => 'Inventory';
|
|
|
|
/// en: 'Search seeds'
|
|
String get searchHint => 'Search seeds';
|
|
|
|
/// en: 'No seeds yet. Tap + to add your first.'
|
|
String get empty => 'No seeds yet. Tap + to add your first.';
|
|
|
|
/// en: 'Uncategorized'
|
|
String get uncategorized => 'Uncategorized';
|
|
}
|
|
|
|
// Path: quickAdd
|
|
class Translations$quickAdd$en {
|
|
Translations$quickAdd$en.internal(this._root);
|
|
|
|
final Translations _root; // ignore: unused_field
|
|
|
|
// Translations
|
|
|
|
/// en: 'Add a seed'
|
|
String get title => 'Add a seed';
|
|
|
|
/// en: 'Name'
|
|
String get labelField => 'Name';
|
|
|
|
/// en: 'Give it a name'
|
|
String get labelRequired => 'Give it a name';
|
|
|
|
/// en: 'Add photo'
|
|
String get addPhoto => 'Add photo';
|
|
|
|
/// en: 'How much?'
|
|
String get quantity => 'How much?';
|
|
|
|
/// en: 'Add more…'
|
|
String get more => 'Add more…';
|
|
|
|
/// en: 'Save'
|
|
String get save => 'Save';
|
|
|
|
/// en: 'Cancel'
|
|
String get cancel => 'Cancel';
|
|
}
|
|
|
|
// Path: detail
|
|
class Translations$detail$en {
|
|
Translations$detail$en.internal(this._root);
|
|
|
|
final Translations _root; // ignore: unused_field
|
|
|
|
// Translations
|
|
|
|
/// en: 'This seed is no longer here.'
|
|
String get notFound => 'This seed is no longer here.';
|
|
|
|
/// en: 'Lots'
|
|
String get lots => 'Lots';
|
|
|
|
/// en: 'No lots yet.'
|
|
String get noLots => 'No lots yet.';
|
|
|
|
/// en: 'Also known as'
|
|
String get names => 'Also known as';
|
|
|
|
/// en: 'Notes'
|
|
String get notes => 'Notes';
|
|
|
|
/// en: 'Add lot'
|
|
String get addLot => 'Add lot';
|
|
|
|
/// en: 'Delete this seed?'
|
|
String get deleteConfirm => 'Delete this seed?';
|
|
|
|
/// en: 'Year {year}'
|
|
String year({required Object year}) => 'Year ${year}';
|
|
|
|
/// en: 'Year unknown'
|
|
String get noYear => 'Year unknown';
|
|
}
|
|
|
|
// Path: germination
|
|
class Translations$germination$en {
|
|
Translations$germination$en.internal(this._root);
|
|
|
|
final Translations _root; // ignore: unused_field
|
|
|
|
// Translations
|
|
|
|
/// en: 'Germination'
|
|
String get title => 'Germination';
|
|
|
|
/// en: 'Add test'
|
|
String get add => 'Add test';
|
|
|
|
/// en: 'Sample size'
|
|
String get sampleSize => 'Sample size';
|
|
|
|
/// en: 'Germinated'
|
|
String get germinated => 'Germinated';
|
|
|
|
/// en: 'No germination tests yet.'
|
|
String get none => 'No germination tests yet.';
|
|
|
|
/// en: '{percent}%'
|
|
String result({required Object percent}) => '${percent}%';
|
|
}
|
|
|
|
// Path: editVariety
|
|
class Translations$editVariety$en {
|
|
Translations$editVariety$en.internal(this._root);
|
|
|
|
final Translations _root; // ignore: unused_field
|
|
|
|
// Translations
|
|
|
|
/// en: 'Edit seed'
|
|
String get title => 'Edit seed';
|
|
|
|
/// en: 'Name'
|
|
String get name => 'Name';
|
|
|
|
/// en: 'Category'
|
|
String get category => 'Category';
|
|
|
|
/// en: 'Notes'
|
|
String get notes => 'Notes';
|
|
|
|
/// en: 'Species (from catalog)'
|
|
String get species => 'Species (from catalog)';
|
|
|
|
/// en: 'Search a species…'
|
|
String get speciesHint => 'Search a species…';
|
|
}
|
|
|
|
// Path: addLot
|
|
class Translations$addLot$en {
|
|
Translations$addLot$en.internal(this._root);
|
|
|
|
final Translations _root; // ignore: unused_field
|
|
|
|
// Translations
|
|
|
|
/// en: 'Add lot'
|
|
String get title => 'Add lot';
|
|
|
|
/// en: 'Harvest year'
|
|
String get year => 'Harvest year';
|
|
|
|
/// en: 'Quantity'
|
|
String get quantity => 'Quantity';
|
|
}
|
|
|
|
// Path: quantityKind
|
|
class Translations$quantityKind$en {
|
|
Translations$quantityKind$en.internal(this._root);
|
|
|
|
final Translations _root; // ignore: unused_field
|
|
|
|
// Translations
|
|
|
|
/// en: 'a few'
|
|
String get aFew => 'a few';
|
|
|
|
/// en: 'some'
|
|
String get some => 'some';
|
|
|
|
/// en: 'plenty'
|
|
String get plenty => 'plenty';
|
|
|
|
/// en: 'a handful'
|
|
String get handful => 'a handful';
|
|
|
|
/// en: 'a pinch'
|
|
String get pinch => 'a pinch';
|
|
|
|
/// en: 'a jar'
|
|
String get jar => 'a jar';
|
|
|
|
/// en: 'a packet'
|
|
String get packet => 'a packet';
|
|
|
|
/// en: 'a cob'
|
|
String get cob => 'a cob';
|
|
|
|
/// en: 'a head'
|
|
String get head => 'a head';
|
|
|
|
/// en: 'a pod'
|
|
String get pod => 'a pod';
|
|
|
|
/// en: 'an ear'
|
|
String get ear => 'an ear';
|
|
|
|
/// en: 'a fruit'
|
|
String get fruit => 'a fruit';
|
|
|
|
/// en: 'a bulb'
|
|
String get bulb => 'a bulb';
|
|
|
|
/// en: 'a tuber'
|
|
String get tuber => 'a tuber';
|
|
|
|
/// en: 'a seed head'
|
|
String get seedHead => 'a seed head';
|
|
|
|
/// en: 'a bunch'
|
|
String get bunch => 'a bunch';
|
|
|
|
/// en: 'grams'
|
|
String get grams => 'grams';
|
|
|
|
/// en: 'count'
|
|
String get count => 'count';
|
|
}
|
|
|
|
/// The flat map containing all translations for locale <en>.
|
|
/// Only for edge cases! For simple maps, use the map function of this library.
|
|
///
|
|
/// The Dart AOT compiler has issues with very large switch statements,
|
|
/// so the map is split into smaller functions (512 entries each).
|
|
extension on Translations {
|
|
dynamic _flatMapFunction(String path) {
|
|
return switch (path) {
|
|
'app.title' => 'Tanemaki',
|
|
'common.save' => 'Save',
|
|
'common.cancel' => 'Cancel',
|
|
'common.delete' => 'Delete',
|
|
'common.edit' => 'Edit',
|
|
'inventory.title' => 'Inventory',
|
|
'inventory.searchHint' => 'Search seeds',
|
|
'inventory.empty' => 'No seeds yet. Tap + to add your first.',
|
|
'inventory.uncategorized' => 'Uncategorized',
|
|
'quickAdd.title' => 'Add a seed',
|
|
'quickAdd.labelField' => 'Name',
|
|
'quickAdd.labelRequired' => 'Give it a name',
|
|
'quickAdd.addPhoto' => 'Add photo',
|
|
'quickAdd.quantity' => 'How much?',
|
|
'quickAdd.more' => 'Add more…',
|
|
'quickAdd.save' => 'Save',
|
|
'quickAdd.cancel' => 'Cancel',
|
|
'detail.notFound' => 'This seed is no longer here.',
|
|
'detail.lots' => 'Lots',
|
|
'detail.noLots' => 'No lots yet.',
|
|
'detail.names' => 'Also known as',
|
|
'detail.notes' => 'Notes',
|
|
'detail.addLot' => 'Add lot',
|
|
'detail.deleteConfirm' => 'Delete this seed?',
|
|
'detail.year' => ({required Object year}) => 'Year ${year}',
|
|
'detail.noYear' => 'Year unknown',
|
|
'germination.title' => 'Germination',
|
|
'germination.add' => 'Add test',
|
|
'germination.sampleSize' => 'Sample size',
|
|
'germination.germinated' => 'Germinated',
|
|
'germination.none' => 'No germination tests yet.',
|
|
'germination.result' => ({required Object percent}) => '${percent}%',
|
|
'editVariety.title' => 'Edit seed',
|
|
'editVariety.name' => 'Name',
|
|
'editVariety.category' => 'Category',
|
|
'editVariety.notes' => 'Notes',
|
|
'editVariety.species' => 'Species (from catalog)',
|
|
'editVariety.speciesHint' => 'Search a species…',
|
|
'addLot.title' => 'Add lot',
|
|
'addLot.year' => 'Harvest year',
|
|
'addLot.quantity' => 'Quantity',
|
|
'quantityKind.aFew' => 'a few',
|
|
'quantityKind.some' => 'some',
|
|
'quantityKind.plenty' => 'plenty',
|
|
'quantityKind.handful' => 'a handful',
|
|
'quantityKind.pinch' => 'a pinch',
|
|
'quantityKind.jar' => 'a jar',
|
|
'quantityKind.packet' => 'a packet',
|
|
'quantityKind.cob' => 'a cob',
|
|
'quantityKind.head' => 'a head',
|
|
'quantityKind.pod' => 'a pod',
|
|
'quantityKind.ear' => 'an ear',
|
|
'quantityKind.fruit' => 'a fruit',
|
|
'quantityKind.bulb' => 'a bulb',
|
|
'quantityKind.tuber' => 'a tuber',
|
|
'quantityKind.seedHead' => 'a seed head',
|
|
'quantityKind.bunch' => 'a bunch',
|
|
'quantityKind.grams' => 'grams',
|
|
'quantityKind.count' => 'count',
|
|
_ => null,
|
|
};
|
|
}
|
|
}
|