2008-10-14 02:26:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
global $lang;
|
|
|
|
|
|
|
|
$lang['en_US']['MultiForm']['BACK'] = 'Back';
|
2008-10-18 00:43:02 +02:00
|
|
|
$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'
|
|
|
|
);
|
2008-10-14 02:26:57 +02:00
|
|
|
|
|
|
|
?>
|