mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
28 lines
1004 B
PHP
28 lines
1004 B
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']['PLURALNAME'] = array(
|
|
'Multi Form Sessions',
|
|
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']['SINGULARNAME'] = array(
|
|
'Multi Form Session',
|
|
50,
|
|
'Singular name of the object, used in dropdowns and to generally identify a single object in the interface'
|
|
);
|
|
$lang['en_US']['MultiFormStep']['PLURALNAME'] = array(
|
|
'Multi Form Steps',
|
|
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']['SINGULARNAME'] = array(
|
|
'Multi Form Step',
|
|
50,
|
|
'Singular name of the object, used in dropdowns and to generally identify a single object in the interface'
|
|
);
|