Add cooking.csv

This commit is contained in:
Markus Fleschutz 2021-05-25 19:11:55 +02:00
parent adf11212b5
commit 48039f761b
7 changed files with 48 additions and 6 deletions

View File

@ -1,4 +1,4 @@
Abbreviation,Description
Abbreviation,Definition
AB,Air Base
AC,Aircraft
ACAS,Airborne Collision Avoidance System

1 Abbreviation Description Definition
2 AB Air Base
3 AC Aircraft
4 ACAS Airborne Collision Avoidance System

View File

@ -1,4 +1,4 @@
Abbreviation,Description
Abbreviation,Definition
API,Application Programming Interface
ASCII,American Standard Code for Information Interchange
CPU,Central Processing Unit

1 Abbreviation Description Definition
2 API Application Programming Interface
3 ASCII American Standard Code for Information Interchange
4 CPU Central Processing Unit

42
Data/Abbr/cooking.csv Normal file
View File

@ -0,0 +1,42 @@
Abbreviation,Definition
btl,Bottle
c,Cup
C,Cups
DF,Dairy free
doz,dozen
dp,drop
fl oz,Fluid ounce
fl ozs,Fluid ounces
g,Grams
gal,Gallons
gals,Gallons
GF,Gluten free
kg,Kilograms
L,Litres
l,Litres
lb,Pound
lbs,Pounds
lg,large
lge,large
md,medium
med,medium
mg,Milligrams
ml,Millilitres
NRV,Nutrient Reference Value
oz,Ounce
ozs,Ounces
pers,person(s)
pn,Pinch
pt,Pint
pts,Pints
qt,Quart
qts,Quarts
RI,Reference Intake
serv,serving
sm,small
srv,serving
Tbsp,Tablespoon
tsp,Teaspoon
VG,vegetarian
VN,Vegan
WF,Wheat free
1 Abbreviation Definition
2 btl Bottle
3 c Cup
4 C Cups
5 DF Dairy free
6 doz dozen
7 dp drop
8 fl oz Fluid ounce
9 fl ozs Fluid ounces
10 g Grams
11 gal Gallons
12 gals Gallons
13 GF Gluten free
14 kg Kilograms
15 L Litres
16 l Litres
17 lb Pound
18 lbs Pounds
19 lg large
20 lge large
21 md medium
22 med medium
23 mg Milligrams
24 ml Millilitres
25 NRV Nutrient Reference Value
26 oz Ounce
27 ozs Ounces
28 pers person(s)
29 pn Pinch
30 pt Pint
31 pts Pints
32 qt Quart
33 qts Quarts
34 RI Reference Intake
35 serv serving
36 sm small
37 srv serving
38 Tbsp Tablespoon
39 tsp Teaspoon
40 VG vegetarian
41 VN Vegan
42 WF Wheat free

View File

@ -1,4 +1,4 @@
Abbreviation,Description
Abbreviation,Definition
PR,per the rectum
pr,per the rectum
PT,prothrombin time

1 Abbreviation Description Definition
2 PR per the rectum
3 pr per the rectum
4 PT prothrombin time

View File

@ -1,4 +1,4 @@
Abbreviation,Description
Abbreviation,Definition
0D,obvious deed
1AM,Air Mechanic 1st Class
1D,One-Dimensional

1 Abbreviation,Description Abbreviation,Definition
2 0D,obvious deed
3 1AM,Air Mechanic 1st Class
4 1D,One-Dimensional

View File

@ -1,4 +1,4 @@
Abbreviation,Description
Abbreviation,Definition
8va,Octave up
ad lib,Ad Libitum (“freely”)
afl,Alto flute

1 Abbreviation Description Definition
2 8va Octave up
3 ad lib Ad Libitum (“freely”)
4 afl Alto flute

View File

@ -19,7 +19,7 @@ try {
foreach($Row in $Table) {
if ($Row.Abbreviation -eq $Abbreviation) {
$Filename = (get-item "$File").Name
"$($Row.Abbreviation) = $($Row.Description) (in $Filename)"
"$($Row.Abbreviation) = $($Row.Definition) (in $Filename)"
$FoundOne = $true
}
}