<?php
/**
* snippets/eform/english.inc.php
* English language file for eForm
* local revision: $Id: english.inc.php,v 1.2 2006/11/22 14:47:54 jelle Exp $
*/
$_lang["ef_thankyou_message"] = "<h3>Thank You!</h3><p>Your information was successfully submitted.</p>";
$_lang["ef_no_doc"] = "Document or chunk not found for template id=";
//$_lang["ef_no_chunk"] = ""; //deprecated
//$_lang["ef_validation_message"] = "<strong>Some errors were detected in your form:</strong><br />";
$_lang["ef_validation_message"] = "<div class=\"errors\"><strong>Some errors were detected in your form:</strong><br />[+ef_wrapper+]</div>"; //changed
$_lang['ef_rule_passed'] = 'Passed using rule [+rule+] (input="[+input+]").';
$_lang['ef_rule_failed'] = '<span style="color:red;">Failed</span> using rule [+rule+] (input="[+input+]")';
$_lang["ef_required_message"] = " The following required field(s) are missing: {fields}<br />";
$_lang['ef_error_list_rule'] = 'Error in validating form field! #LIST rule declared but no list values Found: ';
$_lang["ef_invalid_number"] = " is not a valid number";
$_lang["ef_invalid_date"] = " is not a valid date";
$_lang["ef_invalid_email"] = " is not a valid email address";
$_lang["ef_upload_exceeded"] = " has exceeded maximum upload limit.";
$_lang["ef_upload_error"] = ": error in uploading file."; //NEW
$_lang["ef_failed_default"] = "Incorrect value";
$_lang["ef_failed_vericode"] = "Invalid verification code.";
$_lang["ef_failed_range"] = "Value not in permitted range";
$_lang["ef_failed_list"] = "Value not in list of permitted values";
$_lang["ef_failed_eval"] = "Value did not validate";
$_lang["ef_failed_ereg"] = "Value did not validate";
$_lang["ef_failed_upload"] = "Incorrect file type.";
$_lang["ef_error_validation_rule"] = "Validation rule not recognized";
$_lang["ef_error_filter_rule"] = "Text filter not recognized";
$_lang["ef_tamper_attempt"] = "Tampering attempt detected!";
$_lang["ef_error_formid"] = "Invalid Form Id number or name.";
$_lang["ef_debug_info"] = "Debug info: ";
$_lang["ef_is_own_id"] = "<span class=\"ef-form-error\">Form template set to id of page containing snippet call! You can not have the form in the same document as the snippet call.</span> id=";
$_lang["ef_sql_no_result"] = " silently passed validation. <span style=\"color:red;\"> SQL returned no result!</span> ";
$_lang['ef_regex_error'] = 'error in regular expression ';
$_lang['ef_debug_warning'] = '<p style="color:red;"><span style="font-size:1.5em;font-weight:bold;">WARNING - DEBUGGING IS ON</span> <br />Make sure you turn debugging off before making this form live!</p>';
$_lang['ef_mail_abuse_subject'] = 'Potential email form abuse detected for form id';
$_lang['ef_mail_abuse_message'] = '<p>A form on your website may have been the subject of an email injection attempt. The details of the posted values are printed below. Suspected text has been embedded in \[..]\ tags. </p>';
$_lang['ef_mail_abuse_error'] = '<strong>Invalid or insecure entries were detected in your form</strong>.';
$_lang['ef_eval_deprecated'] = "The #EVAL rule is deprecated and may not work in future versions. Use #FUNCTION instead.";
$_lang['ef_multiple_submit'] = "<p>This form was already submitted succesfully. There is no need to submit your information multiple times.</p>";
$_lang['ef_submit_time_limit'] = "<p>This form was already submitted succesfully. Re-submission of the form is disabled for ".($submitLimit/60)." minutes.</p>";
$_lang['ef_version_error'] = "<strong>WARNING!</strong> The version of the eForm snippet (version: $version) is different from the included eForm file (version: $fileVersion). Please make sure you use the same version for both.";
$_lang['ef_thousands_separator'] = ''; //leave empty to use (php) locale, only needed if you want to overide locale setting!
$_lang['ef_date_format'] = '%d-%b-%Y %H:%M:%S';
$_lang['ef_mail_error'] = 'Mailer was unable to send mail';
?>