forked from mealie-recipes/mealie
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Seed support for plural units (mealie-recipes#3933)
Co-authored-by: Hayden <[email protected]>
- Loading branch information
1 parent
f4b2321
commit 3f92220
Showing
3 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,141 @@ | ||
{ | ||
"teaspoon": { | ||
"name": "teaspoon", | ||
"plural_name": "teaspoons", | ||
"description": "", | ||
"abbreviation": "tsp" | ||
}, | ||
"tablespoon": { | ||
"name": "tablespoon", | ||
"plural_name": "tablespoons", | ||
"description": "", | ||
"abbreviation": "tbsp" | ||
}, | ||
"cup": { | ||
"name": "cup", | ||
"plural_name": "cups", | ||
"description": "", | ||
"abbreviation": "cup" | ||
"abbreviation": "c" | ||
}, | ||
"fluid-ounce": { | ||
"name": "fluid ounce", | ||
"plural_name": "fluid ounces", | ||
"description": "", | ||
"abbreviation": "fl oz" | ||
}, | ||
"pint": { | ||
"name": "pint", | ||
"plural_name": "pints", | ||
"description": "", | ||
"abbreviation": "pt" | ||
}, | ||
"quart": { | ||
"name": "quart", | ||
"plural_name": "quarts", | ||
"description": "", | ||
"abbreviation": "qt" | ||
}, | ||
"gallon": { | ||
"name": "gallon", | ||
"plural_name": "gallons", | ||
"description": "", | ||
"abbreviation": "gal" | ||
}, | ||
"milliliter": { | ||
"name": "milliliter", | ||
"plural_name": "milliliters", | ||
"description": "", | ||
"abbreviation": "ml" | ||
}, | ||
"liter": { | ||
"name": "liter", | ||
"plural_name": "liters", | ||
"description": "", | ||
"abbreviation": "l" | ||
}, | ||
"pound": { | ||
"name": "pound", | ||
"plural_name": "pounds", | ||
"description": "", | ||
"abbreviation": "lb" | ||
"abbreviation": "lb", | ||
"plural_abbreviation": "lbs" | ||
}, | ||
"ounce": { | ||
"name": "ounce", | ||
"plural_name": "ounces", | ||
"description": "", | ||
"abbreviation": "oz" | ||
}, | ||
"gram": { | ||
"name": "gram", | ||
"plural_name": "grams", | ||
"description": "", | ||
"abbreviation": "g" | ||
}, | ||
"kilogram": { | ||
"name": "kilogram", | ||
"plural_name": "kilograms", | ||
"description": "", | ||
"abbreviation": "kg" | ||
}, | ||
"milligram": { | ||
"name": "milligram", | ||
"plural_name": "milligrams", | ||
"description": "", | ||
"abbreviation": "mg" | ||
}, | ||
"splash": { | ||
"name": "splash", | ||
"plural_name": "splashes", | ||
"description": "", | ||
"abbreviation": "" | ||
}, | ||
"dash": { | ||
"name": "dash", | ||
"plural_name": "dashes", | ||
"description": "", | ||
"abbreviation": "" | ||
}, | ||
"serving": { | ||
"name": "serving", | ||
"plural_name": "servings", | ||
"description": "", | ||
"abbreviation": "" | ||
}, | ||
"head": { | ||
"name": "head", | ||
"plural_name": "heads", | ||
"description": "", | ||
"abbreviation": "" | ||
}, | ||
"clove": { | ||
"name": "clove", | ||
"plural_name": "cloves", | ||
"description": "", | ||
"abbreviation": "" | ||
}, | ||
"can": { | ||
"name": "can", | ||
"plural_name": "cans", | ||
"description": "", | ||
"abbreviation": "" | ||
}, | ||
"bunch": { | ||
"name": "bunch", | ||
"plural_name": "bunches", | ||
"description": "", | ||
"abbreviation": "" | ||
}, | ||
"pack": { | ||
"name": "pack", | ||
"plural_name": "packs", | ||
"description": "", | ||
"abbreviation": "" | ||
}, | ||
"pinch": { | ||
"name": "pinch", | ||
"plural_name": "pinches", | ||
"description": "", | ||
"abbreviation": "" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters