mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
MINOR Added language master table
This commit is contained in:
parent
64c15d68dc
commit
56589dd426
0
lang/_manifest_exclude
Normal file
0
lang/_manifest_exclude
Normal file
51
lang/en_US.php
Normal file
51
lang/en_US.php
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
<?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'
|
||||||
|
);
|
||||||
|
$lang['en_US']['Subsite']['db_DefaultSite'] = array(
|
||||||
|
'DefaultSite',
|
||||||
|
50,
|
||||||
|
'Name of the object property, mainly used for automatically generating forms'
|
||||||
|
);
|
||||||
|
$lang['en_US']['Subsite']['db_Domain'] = array(
|
||||||
|
'Domain',
|
||||||
|
50,
|
||||||
|
'Name of the object property, mainly used for automatically generating forms'
|
||||||
|
);
|
||||||
|
$lang['en_US']['Subsite']['db_IsPublic'] = array(
|
||||||
|
'IsPublic',
|
||||||
|
50,
|
||||||
|
'Name of the object property, mainly used for automatically generating forms'
|
||||||
|
);
|
||||||
|
$lang['en_US']['Subsite']['db_RedirectURL'] = array(
|
||||||
|
'RedirectURL',
|
||||||
|
50,
|
||||||
|
'Name of the object property, mainly used for automatically generating forms'
|
||||||
|
);
|
||||||
|
$lang['en_US']['Subsite']['db_Subdomain'] = array(
|
||||||
|
'Subdomain',
|
||||||
|
50,
|
||||||
|
'Name of the object property, mainly used for automatically generating forms'
|
||||||
|
);
|
||||||
|
$lang['en_US']['Subsite']['db_Theme'] = array(
|
||||||
|
'Theme',
|
||||||
|
50,
|
||||||
|
'Name of the object property, mainly used for automatically generating forms'
|
||||||
|
);
|
||||||
|
$lang['en_US']['Subsite']['db_Title'] = array(
|
||||||
|
'Title',
|
||||||
|
50,
|
||||||
|
'Name of the object property, mainly used for automatically generating forms'
|
||||||
|
);
|
||||||
|
|
||||||
|
?>
|
Loading…
Reference in New Issue
Block a user