Issues (223)

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

1
<?php
2
/**
3
 * Code Field plugin for Craft CMS
4
 *
5
 * Provides a Code Field that has a full-featured code editor with syntax highlighting & autocomplete
6
 *
7
 * @link      https://nystudio107.com
0 ignored issues
show
The tag in position 1 should be the @copyright tag
Loading history...
8
 * @copyright Copyright (c) 2022 nystudio107
0 ignored issues
show
@copyright tag must contain a year and the name of the copyright holder
Loading history...
9
 */
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...
10
11
/**
0 ignored issues
show
Missing short description in doc comment
Loading history...
12
 * @author    nystudio107
0 ignored issues
show
Tag value for @author tag indented incorrectly; expected 2 spaces but found 4
Loading history...
13
 * @package   CodeField
0 ignored issues
show
Tag value for @package tag indented incorrectly; expected 1 spaces but found 3
Loading history...
14
 * @since     4.0.0
0 ignored issues
show
Tag value for @since tag indented incorrectly; expected 3 spaces but found 5
Loading history...
15
 */
16
return [
17
    'The text that will be shown if the code field is empty.' => 'The text that will be shown if the code field is empty.',
18
    'Available Languages' => 'Available Languages',
19
    'Visual Studio Dark' => 'Visual Studio Dark',
20
    '{name} plugin loaded' => '{name} plugin loaded',
21
    'Code Field Theme' => 'Code Field Theme',
22
    'High Contrast Dark' => 'High Contrast Dark',
23
    'Code' => 'Code',
24
    'This is not valid JSON' => 'This is not valid JSON',
25
    'Code Field Default Language' => 'Code Field Default Language',
26
    'Language' => 'Language',
27
    'Is not a string.' => 'Is not a string.',
28
    'Placeholder Text' => 'Placeholder Text',
29
    'The languages that should be listed in the language selector dropdown menu.' => 'The languages that should be listed in the language selector dropdown menu.',
30
    'Visual Studio Light' => 'Visual Studio Light',
31
    'Single Line Code Field' => 'Single Line Code Field',
32
    'Show Language Dropdown with Field' => 'Show Language Dropdown with Field',
33
    'Font Size' => 'Font Size',
34
    'Code Folding' => 'Code Folding',
35
    'Monaco Editor Settings Override' => 'Monaco Editor Settings Override',
36
    'Line Numbers' => 'Line Numbers',
37
    'The font size to use for the Code Field editor.' => 'The font size to use for the Code Field editor.',
38
    'The language to use for the Code Field editor.' => 'The language to use for the Code Field editor.',
39
    'The theme to use for the Code Field editor.' => 'The theme to use for the Code Field editor.',
40
    'Auto' => 'Auto',
41
    'CodeData failed validation: ' => 'CodeData failed validation: ',
42
    'Default Value' => 'Default Value',
43
    'The default value of the Code Field.' => 'The default value of the Code Field.',
44
    'JSON blob of Monaco [EditorOptions](https://microsoft.github.io/monaco-editor/typedoc/interfaces/editor.IEditorOptions.html) that will override the default settings.' => 'JSON blob of Monaco [EditorOptions](https://microsoft.github.io/monaco-editor/typedoc/interfaces/editor.IEditorOptions.html) that will override the default settings.',
45
    'The default value the Code Field will be populated with.' => 'The default value the Code Field will be populated with.',
46
];
47