texts.php (6095B)
1 <?php 2 3 /** 4 * Texts used in the application. 5 * These texts are used via Text::get('FEEDBACK_USERNAME_ALREADY_TAKEN'). 6 * Could be extended to i18n etc. 7 */ 8 return array( 9 "FEEDBACK_UNKNOWN_ERROR" => "Unknown error occurred!", 10 "FEEDBACK_DELETED" => "Your account has been deleted.", 11 "FEEDBACK_ACCOUNT_SUSPENDED" => "Account Suspended for ", 12 "FEEDBACK_ACCOUNT_SUSPENSION_DELETION_STATUS" => "This user's suspension / deletion status has been edited.", 13 "FEEDBACK_PASSWORD_WRONG_3_TIMES" => "You have typed in a wrong password 3 or more times already. Please wait 30 seconds to try again.", 14 "FEEDBACK_ACCOUNT_NOT_ACTIVATED_YET" => "Your account is not activated yet. Please click on the confirm link in the mail.", 15 "FEEDBACK_USERNAME_OR_PASSWORD_WRONG" => "The username or password is incorrect. Please try again.", 16 "FEEDBACK_USER_DOES_NOT_EXIST" => "This user does not exist.", 17 "FEEDBACK_LOGIN_FAILED" => "Login failed.", 18 "FEEDBACK_LOGIN_FAILED_3_TIMES" => "Login failed 3 or more times already. Please wait 30 seconds to try again.", 19 "FEEDBACK_USERNAME_FIELD_EMPTY" => "Username field was empty.", 20 "FEEDBACK_PASSWORD_FIELD_EMPTY" => "Password field was empty.", 21 "FEEDBACK_USERNAME_OR_PASSWORD_FIELD_EMPTY" => "Username or password field was empty.", 22 "FEEDBACK_USERNAME_EMAIL_FIELD_EMPTY" => "Username / email field was empty.", 23 "FEEDBACK_EMAIL_FIELD_EMPTY" => "Email field was empty.", 24 "FEEDBACK_EMAIL_AND_PASSWORD_FIELDS_EMPTY" => "Email and password fields were empty.", 25 "FEEDBACK_USERNAME_SAME_AS_OLD_ONE" => "Sorry, that username is the same as your current one. Please choose another one.", 26 "FEEDBACK_USERNAME_ALREADY_TAKEN" => "Sorry, that username is already taken. Please choose another one.", 27 "FEEDBACK_USER_EMAIL_ALREADY_TAKEN" => "Sorry, that email is already in use. Please choose another one.", 28 "FEEDBACK_USERNAME_CHANGE_SUCCESSFUL" => "Your username has been changed successfully.", 29 "FEEDBACK_USERNAME_AND_PASSWORD_FIELD_EMPTY" => "Username and password fields were empty.", 30 "FEEDBACK_USERNAME_DOES_NOT_FIT_PATTERN" => "Username does not fit the name pattern: only a-Z and numbers are allowed, 2 to 64 characters.", 31 "FEEDBACK_EMAIL_DOES_NOT_FIT_PATTERN" => "Sorry, your chosen email does not fit into the email naming pattern.", 32 "FEEDBACK_EMAIL_SAME_AS_OLD_ONE" => "Sorry, that email address is the same as your current one. Please choose another one.", 33 "FEEDBACK_EMAIL_CHANGE_SUCCESSFUL" => "Your email address has been changed successfully.", 34 "FEEDBACK_CAPTCHA_WRONG" => "The entered captcha security characters were wrong.", 35 "FEEDBACK_PASSWORD_REPEAT_WRONG" => "Password and password repeat are not the same.", 36 "FEEDBACK_PASSWORD_TOO_SHORT" => "Password has a minimum length of 6 characters.", 37 "FEEDBACK_USERNAME_TOO_SHORT_OR_TOO_LONG" => "Username cannot be shorter than 2 or longer than 64 characters.", 38 "FEEDBACK_ACCOUNT_SUCCESSFULLY_CREATED" => "Your account has been created successfully and we have sent you an email. Please click the VERIFICATION LINK within that mail.", 39 "FEEDBACK_VERIFICATION_MAIL_SENDING_FAILED" => "Sorry, we could not send you an verification mail. Your account has NOT been created.", 40 "FEEDBACK_ACCOUNT_CREATION_FAILED" => "Sorry, your registration failed. Please go back and try again.", 41 "FEEDBACK_VERIFICATION_MAIL_SENDING_ERROR" => "Verification mail could not be sent due to: ", 42 "FEEDBACK_VERIFICATION_MAIL_SENDING_SUCCESSFUL" => "A verification mail has been sent successfully.", 43 "FEEDBACK_ACCOUNT_ACTIVATION_SUCCESSFUL" => "Activation was successful! You can now log in.", 44 "FEEDBACK_ACCOUNT_ACTIVATION_FAILED" => "Sorry, no such id/verification code combination here...", 45 "FEEDBACK_AVATAR_UPLOAD_SUCCESSFUL" => "Avatar upload was successful.", 46 "FEEDBACK_AVATAR_UPLOAD_WRONG_TYPE" => "Only JPEG and PNG files are supported.", 47 "FEEDBACK_AVATAR_UPLOAD_TOO_SMALL" => "Avatar source file's width/height is too small. Needs to be 100x100 pixel minimum.", 48 "FEEDBACK_AVATAR_UPLOAD_TOO_BIG" => "Avatar source file is too big. 5 Megabyte is the maximum.", 49 "FEEDBACK_AVATAR_FOLDER_DOES_NOT_EXIST_OR_NOT_WRITABLE" => "Avatar folder does not exist or is not writable. Please change this via chmod 775 or 777.", 50 "FEEDBACK_AVATAR_IMAGE_UPLOAD_FAILED" => "Something went wrong with the image upload.", 51 "FEEDBACK_AVATAR_IMAGE_DELETE_SUCCESSFUL" => "You successfully deleted your avatar.", 52 "FEEDBACK_AVATAR_IMAGE_DELETE_NO_FILE" => "You don't have a custom avatar.", 53 "FEEDBACK_AVATAR_IMAGE_DELETE_FAILED" => "Something went wrong while deleting your avatar.", 54 "FEEDBACK_PASSWORD_RESET_TOKEN_FAIL" => "Could not write token to database.", 55 "FEEDBACK_PASSWORD_RESET_TOKEN_MISSING" => "No password reset token.", 56 "FEEDBACK_PASSWORD_RESET_MAIL_SENDING_ERROR" => "Password reset mail could not be sent due to: ", 57 "FEEDBACK_PASSWORD_RESET_MAIL_SENDING_SUCCESSFUL" => "A password reset mail has been sent successfully.", 58 "FEEDBACK_PASSWORD_RESET_LINK_EXPIRED" => "Your reset link has expired. Please use the reset link within one hour.", 59 "FEEDBACK_PASSWORD_RESET_COMBINATION_DOES_NOT_EXIST" => "Username/Verification code combination does not exist.", 60 "FEEDBACK_PASSWORD_RESET_LINK_VALID" => "Password reset validation link is valid. Please change the password now.", 61 "FEEDBACK_PASSWORD_CHANGE_SUCCESSFUL" => "Password successfully changed.", 62 "FEEDBACK_PASSWORD_CHANGE_FAILED" => "Sorry, your password changing failed.", 63 "FEEDBACK_PASSWORD_NEW_SAME_AS_CURRENT" => "New password is the same as the current password.", 64 "FEEDBACK_PASSWORD_CURRENT_INCORRECT" => "Current password entered was incorrect.", 65 "FEEDBACK_ACCOUNT_TYPE_CHANGE_SUCCESSFUL" => "Account type change successful", 66 "FEEDBACK_ACCOUNT_TYPE_CHANGE_FAILED" => "Account type change failed", 67 "FEEDBACK_NOTE_CREATION_FAILED" => "Note creation failed.", 68 "FEEDBACK_NOTE_EDITING_FAILED" => "Note editing failed.", 69 "FEEDBACK_NOTE_DELETION_FAILED" => "Note deletion failed.", 70 "FEEDBACK_COOKIE_INVALID" => "Your remember-me-cookie is invalid.", 71 "FEEDBACK_COOKIE_LOGIN_SUCCESSFUL" => "You were successfully logged in via the remember-me-cookie.", 72 );