mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
16 lines
392 B
PHP
16 lines
392 B
PHP
|
<?php
|
||
|
|
||
|
global $lang;
|
||
|
|
||
|
$lang['en_US']['Subsite']['PLURALNAME'] = array(
|
||
|
'Subsits',
|
||
|
50,
|
||
|
'Pural name of the object, used in dropdowns and to generally identify a collection of this object in the interface'
|
||
|
);
|
||
|
$lang['en_US']['Subsite']['SINGULARNAME'] = array(
|
||
|
'Subsite',
|
||
|
50,
|
||
|
'Singular name of the object, used in dropdowns and to generally identify a single object in the interface'
|
||
|
);
|
||
|
|
||
|
?>
|