mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
16 lines
256 B
PHP
16 lines
256 B
PHP
|
<?php
|
||
|
|
||
|
global $lang;
|
||
|
|
||
|
$lang['en_US']['LeftAndMain']['HELLO'] = array(
|
||
|
'Site content',
|
||
|
100,
|
||
|
'Menu title'
|
||
|
);
|
||
|
$lang['en_US']['LeftAndMain']['FILESIMAGES'] = array(
|
||
|
'Files & Images',
|
||
|
100
|
||
|
);
|
||
|
$lang['en_US']['LeftAndMain']['NEWSLETTERS'] = 'Newsletters';
|
||
|
|
||
|
?>
|