1 | <?php |
||
2 | /** |
||
3 | * Recipe plugin for Craft CMS 3.x |
||
4 | * |
||
5 | * A comprehensive recipe FieldType for Craft CMS that includes metric/imperial |
||
6 | * conversion, portion calculation, and JSON-LD microdata support |
||
7 | * |
||
8 | * @link https://nystudio107.com |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
9 | * @copyright Copyright (c) 2017 nystudio107 |
||
0 ignored issues
–
show
|
|||
10 | */ |
||
0 ignored issues
–
show
|
|||
11 | |||
12 | /** |
||
0 ignored issues
–
show
|
|||
13 | * @author nystudio107 |
||
0 ignored issues
–
show
|
|||
14 | * @package Recipe |
||
0 ignored issues
–
show
|
|||
15 | * @since 1.0.0 |
||
0 ignored issues
–
show
|
|||
16 | */ |
||
17 | return [ |
||
18 | 'Recipe' => 'Recipe', |
||
19 | 'Review' => 'Review', |
||
20 | '{name} plugin loaded' => '{name} plugin loaded', |
||
21 | 'Error rendering template string -> {error}' => 'Error rendering template string -> {error}', |
||
22 | 'Error rendering `{template}` -> {error}' => 'Error rendering `{template}` -> {error}', |
||
23 | 'API Application Key' => 'API Application Key', |
||
24 | 'Failed to generate nutritional information for {count} entries.' => 'Failed to generate nutritional information for {count} entries.', |
||
25 | 'API credentials do not exist in plugin settings.' => 'API credentials do not exist in plugin settings.', |
||
26 | 'An application ID for the Edamam Nutrition Analysis API.' => 'An application ID for the Edamam Nutrition Analysis API.', |
||
27 | 'No entries found in the section with handle `{handle}`.' => 'No entries found in the section with handle `{handle}`.', |
||
28 | 'A section handle must be provided using --section.' => 'A section handle must be provided using --section.', |
||
29 | 'Generating nutritional information for {count} entries...' => 'Generating nutritional information for {count} entries...', |
||
30 | 'The [Edamam Nutrition Analysis API]({url}) can be used to fetch nutritional information from your ingredients.' => 'The [Edamam Nutrition Analysis API]({url}) can be used to fetch nutritional information from your ingredients.', |
||
31 | 'A field handle must be provided using --field.' => 'A field handle must be provided using --field.', |
||
32 | 'Successfully generated nutritional information for {count} entries.' => 'Successfully generated nutritional information for {count} entries.', |
||
33 | ]; |
||
34 |