Difference between revisions of "Global Food Preparation taxonomy"
Jump to navigation
Jump to search
(Created page with "<pre> fr:Micro-ondable, Microondable, fr:Ne pas micro-onder fr:Percer l'emballage de quelques trous fr:Décoller la languette </pre>") |
|||
(12 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Global Taxonomies]] | ||
+ | [[Category:Translations]] | ||
+ | << Back to [[Global taxonomies]] | ||
+ | <br><br> | ||
+ | |||
+ | == Current status == | ||
+ | Draft. Not live. | ||
+ | Related GitHub issue: https://github.com/openfoodfacts/openfoodfacts-server/issues/408 | ||
+ | == Taxonomy == | ||
+ | === Script === | ||
+ | |||
+ | The taxonomy is generated with this script: | ||
+ | |||
+ | <pre> | ||
+ | |||
+ | #!/usr/bin/perl -w | ||
+ | |||
+ | use strict; | ||
+ | |||
+ | my $entry_format = <<TXT | ||
+ | en:<i> minutes, <i>minutes, <i> min, <i>M, <i> | ||
+ | fr:<i> minutes, <i>min | ||
+ | numeric_minutes:en:<i> | ||
+ | TXT | ||
+ | ; | ||
+ | |||
+ | for (my $i = 1; $i <= 4 * 12; $i++) { | ||
+ | |||
+ | my $entry = $entry_format; | ||
+ | $entry =~ s/<i>/$i/g; | ||
+ | print $entry . "\n"; | ||
+ | } | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | == Duration == | ||
+ | ===Singular=== | ||
+ | <pre> | ||
+ | en:1 minute, 1minute | ||
+ | fr:1 minute, 1minute | ||
+ | |||
+ | en:1 hour, 1hour | ||
+ | fr:1 heure, 1heure | ||
+ | </pre> | ||
+ | |||
+ | |||
+ | ===Plural=== | ||
+ | <pre> | ||
+ | en:2 minutes, 2minutes | ||
+ | fr:2 minutes, 2minutes | ||
+ | |||
+ | en:2 hours, 2hours | ||
+ | fr:2 heures, 2heures | ||
+ | </pre> | ||
+ | |||
+ | == Pre-cooking instructions == | ||
<pre> | <pre> | ||
− | |||
− | |||
fr:Percer l'emballage de quelques trous | fr:Percer l'emballage de quelques trous | ||
+ | |||
fr:Décoller la languette | fr:Décoller la languette | ||
+ | </pre> | ||
+ | |||
+ | == Heat == | ||
+ | 180, 200°C or °F, 900W (for microwaves) | ||
+ | Rotating oven, regular oven | ||
+ | |||
+ | == Method== | ||
+ | <pre> | ||
+ | en:Microwavable | ||
+ | fr:Micro-ondable, Microondable | ||
+ | de:Mikrowellengeeignet | ||
+ | |||
+ | en:Unmicrowavable | ||
+ | fr:Ne pas micro-onder | ||
+ | de:Nicht Mikrowellengeeignet | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | == Cooking devices == | ||
+ | <pre> | ||
+ | fr:Micro-ondes, Four à micro-ondes | ||
+ | en:Microwave, Microwave oven | ||
+ | |||
+ | en:Oven | ||
+ | fr:Four | ||
+ | |||
+ | fr:Gril | ||
+ | |||
+ | fr:Poêle | ||
+ | |||
+ | fr:Wok | ||
+ | </pre> | ||
+ | |||
+ | == Duration and method == | ||
+ | |||
+ | <pre> | ||
+ | en:{{duration}} in {{device}} | ||
+ | fr:{{duration}} au {{device}} | ||
+ | |||
+ | en:Best cooked in {{device}} | ||
+ | fr:Meilleur cuit au {{device}} | ||
</pre> | </pre> |
Latest revision as of 14:36, 7 May 2024
<< Back to Global taxonomies
Current status
Draft. Not live. Related GitHub issue: https://github.com/openfoodfacts/openfoodfacts-server/issues/408
Taxonomy
Script
The taxonomy is generated with this script:
#!/usr/bin/perl -w use strict; my $entry_format = <<TXT en:<i> minutes, <i>minutes, <i> min, <i>M, <i> fr:<i> minutes, <i>min numeric_minutes:en:<i> TXT ; for (my $i = 1; $i <= 4 * 12; $i++) { my $entry = $entry_format; $entry =~ s/<i>/$i/g; print $entry . "\n"; }
Duration
Singular
en:1 minute, 1minute fr:1 minute, 1minute en:1 hour, 1hour fr:1 heure, 1heure
Plural
en:2 minutes, 2minutes fr:2 minutes, 2minutes en:2 hours, 2hours fr:2 heures, 2heures
Pre-cooking instructions
fr:Percer l'emballage de quelques trous fr:Décoller la languette
Heat
180, 200°C or °F, 900W (for microwaves) Rotating oven, regular oven
Method
en:Microwavable fr:Micro-ondable, Microondable de:Mikrowellengeeignet en:Unmicrowavable fr:Ne pas micro-onder de:Nicht Mikrowellengeeignet
Cooking devices
fr:Micro-ondes, Four à micro-ondes en:Microwave, Microwave oven en:Oven fr:Four fr:Gril fr:Poêle fr:Wok
Duration and method
en:{{duration}} in {{device}} fr:{{duration}} au {{device}} en:Best cooked in {{device}} fr:Meilleur cuit au {{device}}