mirror of
https://github.com/e107inc/e107.git
synced 2025-08-19 04:41:53 +02:00
11 lines
416 B
PHP
11 lines
416 B
PHP
<?php
|
|
|
|
// Always use the format LAN_PLUGIN_{FOLDER}_{TYPE} to prevent conflicts. In this case "_BLANK" is the folder.
|
|
// This should contain the LANs used in the plugin.xml file.
|
|
|
|
return [
|
|
'LAN_PLUGIN__BLANK_NAME' => "Blank Plugin",
|
|
'LAN_PLUGIN__BLANK_DIZ' => "A Blank Plugin to help you get started in plugin development. More details can be added here.",
|
|
'LAN_PLUGIN__BLANK_LINK' => "Blank Link",
|
|
];
|