Calendar (WIP)
This commit is contained in:
parent
9d3f9e9c60
commit
79a0aeb1b8
24 changed files with 613 additions and 231 deletions
|
|
@ -1,12 +1,13 @@
|
|||
use std::{borrow::Borrow, fs::File, sync::LazyLock};
|
||||
|
||||
use common::utils;
|
||||
use ron::de::from_reader;
|
||||
use serde::Deserialize;
|
||||
use strum::EnumCount;
|
||||
use strum_macros::EnumCount;
|
||||
use tracing::{event, Level};
|
||||
|
||||
use crate::{consts, utils};
|
||||
use crate::consts;
|
||||
|
||||
#[derive(Debug, Clone, EnumCount, Deserialize)]
|
||||
pub enum Sentence {
|
||||
|
|
@ -109,6 +110,10 @@ pub enum Sentence {
|
|||
RecipeIngredientQuantity,
|
||||
RecipeIngredientUnit,
|
||||
RecipeIngredientComment,
|
||||
RecipeDeleteConfirmation,
|
||||
RecipeGroupDeleteConfirmation,
|
||||
RecipeStepDeleteConfirmation,
|
||||
RecipeIngredientDeleteConfirmation,
|
||||
|
||||
// View Recipe.
|
||||
RecipeOneServing,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue