You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

41 lines
2.2 KiB

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