nystudio107 /
craft-richvariables
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * Rich Variables plugin for Craft CMS 3.x |
||
| 4 | * |
||
| 5 | * Allows you to easily use Craft Globals as variables in Rich Text fields |
||
| 6 | * |
||
| 7 | * @link https://nystudio107.com |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 8 | * @copyright Copyright (c) 2017 nystudio107 |
||
|
0 ignored issues
–
show
|
|||
| 9 | */ |
||
|
0 ignored issues
–
show
|
|||
| 10 | |||
| 11 | /** |
||
|
0 ignored issues
–
show
|
|||
| 12 | * @author nystudio107 |
||
|
0 ignored issues
–
show
|
|||
| 13 | * @package RichVariables |
||
|
0 ignored issues
–
show
|
|||
| 14 | * @since 1.0.0 |
||
|
0 ignored issues
–
show
|
|||
| 15 | */ |
||
| 16 | return [ |
||
| 17 | '{name} plugin loaded' => '{name} plugin loaded', |
||
| 18 | 'Use Icon for Menu' => 'Use Icon for Menu', |
||
| 19 | 'Controls whether the Rich Variables menu should display itself as an icon or text' => 'Controls whether the Rich Variables menu should display itself as an icon or text', |
||
| 20 | 'Choose the Globals Set that should be available for insertion into Rich Text fields' => 'Choose the Globals Set that should be available for insertion into Rich Text fields', |
||
| 21 | 'Globals Set' => 'Globals Set', |
||
| 22 | 'Manifest file not found at: {manifestPath}' => 'Manifest file not found at: {manifestPath}', |
||
| 23 | 'Module does not exist in the manifest: {moduleName}' => 'Module does not exist in the manifest: {moduleName}' |
||
| 24 | ]; |
||
| 25 |