1<?php 2 3$lang['e_unknowntype'] = 'Unknown type "%s"'; 4$lang['e_unknownaction'] = 'Unknown action "%s"'; 5$lang['e_missingargs'] = 'Not enough arguments for %s %s'; 6$lang['e_noaction'] = 'No action defined - where should the data be sent to?'; 7$lang['e_mail'] = 'Something went wrong with sending that data'; 8$lang['e_unknownconstraint'] = 'Unknown field constraint %s'; 9$lang['e_labelpage'] = 'Labelpage %s not found'; 10 11$lang['e_required'] = '"%s" is required'; 12$lang['e_match'] = '"%s" wasn\'t filled in correctly. %s'; 13$lang['checkagainst'] = '(Checked against /%s/i)'; 14$lang['e_email'] = '"%s" needs to be a valid email address.'; 15$lang['e_numeric'] = '"%s" needs to be a number.'; 16$lang['e_date'] = '"%s" needs to be a valid date in the format dd-mm-yyyy.'; 17$lang['e_time'] = '"%s" needs to be a valid time in the format (h)h:mm(:ss).'; 18$lang['e_user'] = '"%s" needs to be the name of an existing user.'; 19$lang['e_users'] = '"%s" needs to be a comma-separated list of names of existing users.'; 20$lang['e_min'] = '"%s" needs to be greater than %s.'; 21$lang['e_max'] = '"%s" needs to be less than %s.'; 22 23$lang['e_pagename'] = 'Missing pagename.'; 24$lang['e_pageexists'] = 'The page "%s" exists already. Please choose a different pagename.'; 25$lang['e_template'] = 'Could not read template "%s". Maybe it doesn\'t exist or you have no read permissions?'; 26$lang['e_denied'] = 'You are not allowed to create this page, maybe you forgot to log in?'; 27 28$lang['mailsubject'] = 'Form data submitted at %s'; 29$lang['mailintro'] = 'The following data was submitted on %s.'; 30 31$lang['mail_thanks'] = 'Your data was sent successfully. Thank you.'; 32$lang['template_thanks'] = 'The page has been created, follow the link to open it.'; 33 34$lang['summary'] = 'Created from the form at %s'; 35 36$lang['attachmentMailEmpty'] = '(file not submitted)'; 37$lang['attachmentMailToLarge'] = '(file too large for mail attachment)'; 38$lang['attachmentMailToLarge_userinfo'] = 'file "%s" too large for mail attachment (>%s) (mail was sent nevertheless)'; 39 40$lang['submit'] = 'Submit'; 41