ENHANCEMENT Updated entities and added german translation for multiform

This commit is contained in:
Ingo Schommer 2008-10-17 22:43:02 +00:00
parent 4da79449f8
commit 2bd8f5a7b5
2 changed files with 73 additions and 2 deletions

31
lang/de_DE.php Normal file
View File

@ -0,0 +1,31 @@
<?php
/**
* German (Germany) language pack
* @package modules: multiform
* @subpackage i18n
*/
i18n::include_locale_file('modules: multiform', 'en_US');
global $lang;
if(array_key_exists('de_DE', $lang) && is_array($lang['de_DE'])) {
$lang['de_DE'] = array_merge($lang['en_US'], $lang['de_DE']);
} else {
$lang['de_DE'] = $lang['en_US'];
}
$lang['de_DE']['MultiForm']['BACK'] = 'Zurück';
$lang['de_DE']['MultiForm']['NEXT'] = 'Weiter';
$lang['de_DE']['MultiForm']['SUBMIT'] = 'Absenden';
$lang['de_DE']['MultiFormSession']['db_Hash'] = 'Hash';
$lang['de_DE']['MultiFormSession']['db_IsComplete'] = 'Abgeschlossen?';
$lang['de_DE']['MultiFormSession']['has_many_FormSteps'] = 'Formularschritte';
$lang['de_DE']['MultiFormSession']['plural_name'] = 'Multi-Formulare';
$lang['de_DE']['MultiFormSession']['singular_name'] = 'Multi-Formular';
$lang['de_DE']['MultiFormStep']['db_Data'] = 'Daten';
$lang['de_DE']['MultiFormStep']['plural_name'] = 'Multi-Formular-Schritte';
$lang['de_DE']['MultiFormStep']['singular_name'] = 'Multi-Formular-Schritt';
?>

View File

@ -2,8 +2,48 @@
global $lang;
$lang['en_US']['MultiForm']['SUBMIT'] = 'Submit';
$lang['en_US']['MultiForm']['NEXT'] = 'Next';
$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'
);
?>