Issues (446)

src/translations/en/recipe.php (11 issues)

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
The tag in position 1 should be the @copyright tag
Loading history...
9
 * @copyright Copyright (c) 2017 nystudio107
0 ignored issues
show
@copyright tag must contain a year and the name of the copyright holder
Loading history...
10
 */
0 ignored issues
show
PHP version not specified
Loading history...
Missing @category tag in file comment
Loading history...
Missing @package tag in file comment
Loading history...
Missing @author tag in file comment
Loading history...
Missing @license tag in file comment
Loading history...
11
12
/**
0 ignored issues
show
Missing short description in doc comment
Loading history...
13
 * @author    nystudio107
0 ignored issues
show
Tag value for @author tag indented incorrectly; expected 2 spaces but found 4
Loading history...
14
 * @package   Recipe
0 ignored issues
show
Tag value for @package tag indented incorrectly; expected 1 spaces but found 3
Loading history...
15
 * @since     1.0.0
0 ignored issues
show
Tag value for @since tag indented incorrectly; expected 3 spaces but found 5
Loading history...
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