mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<?php
|
|
|
|
global $lang;
|
|
|
|
$lang['en_US']['MultiForm']['BACK'] = 'Back';
|
|
$lang['en_US']['MultiForm']['NEXT'] = 'Next';
|
|
$lang['en_US']['MultiForm']['SUBMIT'] = 'Submit';
|
|
$lang['en_US']['MultiFormSession']['db_Hash'] = array(
|
|
'Hash',
|
|
50,
|
|
'Name of the object property, e.g. used for automatically generating forms'
|
|
);
|
|
$lang['en_US']['MultiFormSession']['db_IsComplete'] = array(
|
|
'IsComplete',
|
|
50,
|
|
'Name of the object property, e.g. used for automatically generating forms'
|
|
);
|
|
$lang['en_US']['MultiFormSession']['has_many_FormSteps'] = array(
|
|
'FormSteps',
|
|
50,
|
|
'Name of an object relation, e.g. used for automatically generating forms'
|
|
);
|
|
$lang['en_US']['MultiFormSession']['plural_name'] = array(
|
|
'',
|
|
50,
|
|
'Pural name of the object, used in dropdowns and to generally identify a collection of this object in the interface'
|
|
);
|
|
$lang['en_US']['MultiFormSession']['singular_name'] = array(
|
|
'',
|
|
50,
|
|
'Singular name of the object, used in dropdowns and to generally identify a single object in the interface'
|
|
);
|
|
$lang['en_US']['MultiFormStep']['db_Data'] = array(
|
|
'Data',
|
|
50,
|
|
'Name of the object property, e.g. used for automatically generating forms'
|
|
);
|
|
$lang['en_US']['MultiFormStep']['plural_name'] = array(
|
|
'',
|
|
50,
|
|
'Pural name of the object, used in dropdowns and to generally identify a collection of this object in the interface'
|
|
);
|
|
$lang['en_US']['MultiFormStep']['singular_name'] = array(
|
|
'',
|
|
50,
|
|
'Singular name of the object, used in dropdowns and to generally identify a single object in the interface'
|
|
);
|
|
|
|
?>
|