$MSG_FAQ";
$MSG_HELP_HUSTOJ=" Please give us a Star @HUSTOJ Github!";
$MSG_HELP_SPJ="search hustoj special judgefor more details";
$MSG_HELP_BALLOON_SCHOOL="School Field of the Printer/Balloon privileged Accout, will be used as filter in task list.";
$MSG_HRLP_BACKUP_DATABASE="Backup Database , TestData and Pictures to the 0 problem testdata directory";
$MSG_HELP_LEFT_EMPTY="If you don't want to modify, please left this empty.";
$MSG_HELP_LOCAL_EMPTY="Left empty for local problem.";
$MSG_WARNING_LOGIN_FROM_DIFF_IP="Login from a diffrent ip ";
$MSG_WARNING_DURING_EXAM_NOT_ALLOWED=" during exam is not allowed ";
$MSG_WARNING_ACCESS_DENIED="I am sorry, You could not view this message! Because it's not belong to you, or Administrator won't show you.";
$MSG_WARNING_USER_ID_SHORT="User ID should be NO less than 3 chars !";
$MSG_WARNING_PASSWORD_SHORT="Password should be NO less than 6 chars !";
$MSG_WARNING_REPEAT_PASSWORD_DIFF="The second password is different with the first one !";
$MSG_LOSTPASSWORD_MAILBOX="Input the Code sended to your email (Trash Box )";
$MSG_LOSTPASSWORD_WILLBENEW="if it's correct, it will be the new password";
//discuss.php
$MSG_LAST_REPLY="Last";
$MSG_REPLY_COUNTS="Counts";
$MSG_REPLY_NUMBER="Number";
$MSG_QUESTION="Question";
$MSG_NO_QUESTIONS="No questions";
$MSG_REGISTER_QUESTION="Register";
$MSG_WRITE_QUESTION="Question";
$MSG_REGISTERED="Registered";
$MSG_BLOCKED="Blocked";
$MSG_REPLY="Reply";
$MSG_REGISTER_REPLY="Reply";
$MSG_DISABLE="Disable";
$MSG_LOCK="Lock";
$MSG_RESUME="Resume";
$MSG_DISCUSS_DELETE="Delete";
$MSG_DISCUSS_NOTICE="Notice";
$MSG_DISCUSS_NOTE="Note";
$MSG_DISCUSS_NORMAL="Normal";
// template/../reinfo.php
$MSG_A_NOT_ALLOWED_SYSTEM_CALL="Use the operating system calls prohibited by the system to see if you have unauthorized access to resources such as files or processes. If you are a system administrator and confirm that there is no problem with the submitted answer and the test data has no problem, you can send'RE' to the WeChat official account onlinejudge, view the solution.";
$MSG_SEGMETATION_FAULT="Check whether the array is out of bounds, the pointer is abnormal, and the memory area that should not be accessed is accessed.";
$MSG_FLOATING_POINT_EXCEPTION="Floating point error, check for division by zero.";
$MSG_BUFFER_OVERFLOW_DETECTED="Buffer overflow, check whether the string length exceeds the array.";
$MSG_PROCESS_KILLED="The process is killed because of memory or time, check whether there is an infinite loop.";
$MSG_ALARM_CLOCK="The process was killed due to time. Check whether there is an infinite loop. This error is equivalent to timeout TLE.";
$MSG_CALLID_20="The array may be out of bounds, check the relationship between the amount of data described in the title and the size of the applied array.";
$MSG_ARRAY_INDEX_OUT_OF_BOUNDS_EXCEPTION="Check if the array is out of bounds.";
$MSG_STRING_INDEX_OUT_OF_BOUNDS_EXCEPTION="The character subscript of the string is out of range, check the parameters of subString, charAt and other methods.";
$MSG_WRONG_OUTPUT_TYPE_EXCEPTION="Are you using an number as a char? Did you print out any Non-printable characters?";
$MSG_NON_ZERO_RETURN="Do NOT return non-zero value in your main() function , or system will regard it as an error. ";
$MSG_EXPECTED="Expected Output";
$MSG_YOURS="Your Output";
$MSG_FILENAME="Filename";
$MSG_SIZE="Size";
// template/../ceinfo.php
$MSG_ERROR_EXPLAIN="Expain";
$MSG_SYSTEM_OUT_PRINT="The usage of System.out.print in Java is different from that of C language printf, please try System.out.format";
$MSG_NO_SUCH_FILE_OR_DIRECTORY="The server is a Linux system and cannot use non-standard header files unique to Windows.";
$MSG_NOT_A_STATEMENT="Check the matching of braces {}, eclipse sorts the code shortcut key Ctrl+Shift+F";
$MSG_EXPECTED_CLASS_INTERFACE_ENUM="Please do not place java functions (methods) outside the class declaration, pay attention to the ending position of the braces }";
$MSG_SUBMIT_JAVA_AS_C_LANG="Please do not submit java program as C language.";
$MSG_DOES_NOT_EXIST_PACKAGE="Check spelling, such as: the system object System starts with a capital S";
$MSG_POSSIBLE_LOSS_OF_PRECISION="Assignment will lose precision, check the data type, if it is correct, you can use coercive type conversion.";
$MSG_INCOMPATIBLE_TYPES="Different types of data in Java cannot be assigned to each other, and integers cannot be used as Boolean values.";
$MSG_ILLEGAL_START_OF_EXPRESSION="String should be surrounded by English double quotation marks (\\\")";
$MSG_CANNOT_FIND_SYMBOL="Misspelling or missing objects required to call the function such as println() need to call System.out";
$MSG_EXPECTED_SEMICOLON="The semicolon is missing.";
$MSG_DECLARED_JAVA_FILE_NAMED="Java must use public class Main.";
$MSG_EXPECTED_WILDCARD_CHARACTER_AT_END_OF_INPUT="The code is not over, missing matching brackets or semicolons, check whether all the codes are selected when copying.";
$MSG_INVALID_CONVERSION="The implicit type conversion is invalid, try to use explicit coercion such as (int *)malloc(....)";
$MSG_NO_RETURN_TYPE_IN_MAIN="In the C++ standard, the main function must have a return value.";
$MSG_NOT_DECLARED_IN_SCOPE="The variable has not been declared, check for spelling errors!";
// reinfo.php friendly hints
$MSG_RUNTIME_GENERIC_ERROR="An unspecified runtime error occurred. Check boundary conditions, empty inputs, and edge cases.";
$MSG_FORBIDDEN_SYSCALL="A forbidden system call was used. Check if you tried to access files, network, or processes directly.";
$MSG_HINT_TLE="Time Limit Exceeded (TLE). Common causes: high algorithm complexity (e.g. O(n²) when n ≤ 10⁵), infinite loops, slow I/O. Use scanf/printf or faster I/O.";
$MSG_HINT_MLE="Memory Limit Exceeded (MLE). Common causes: oversized arrays, deep recursion, unreleased memory.";
$MSG_HINT_OLE="Output Limit Exceeded (OLE). Common causes: infinite output loops, missing newlines, leftover debug prints.";
$MSG_RAW_ERROR="View raw error information";
$MSG_RESULT_BANNER="Verdict";
$MSG_QUICK_ACTIONS="Quick actions";
$MSG_RESUBMIT="Resubmit";
$MSG_VIEW_SOURCE="View my code";
$MSG_VIEW_PROBLEM="View problem";
$MSG_DOWNLOAD_DATA="Download test data";
$MSG_FRIENDLY_EXPLAIN="Error explanation";
$MSG_DEDUP_HINT="Collapsed %d duplicate test cases";
$MSG_AI_REVIEW_DESC="Analyzing your code and verdict";
$MSG_DEDUP_GROUP="%s: %s (in %d test cases)";
// Additional RE patterns
$MSG_STACK_SMASHING_DETECTED="Stack smashing detected. Usually means an out-of-bounds write into a stack buffer. Check char arrays and loop write bounds.";
$MSG_TERMINATE_CALLED="C++ exception was thrown but not caught (terminate called after throwing). Check that all throw statements are wrapped in try/catch.";
$MSG_NULL_POINTER_EXCEPTION="NullPointerException. A method or field was called on an uninitialized object.";
$MSG_NUMBER_FORMAT_EXCEPTION="NumberFormatException. Failed to parse a non-numeric string as a number. Check your input parsing.";
$MSG_CLASS_CAST_EXCEPTION="ClassCastException. Tried to cast an object to an incompatible type.";
$MSG_NEGATIVE_ARRAY_SIZE_EXCEPTION="NegativeArraySizeException. The array size computed to a negative value.";
$MSG_PYTHON_TRACEBACK="Python raised an exception. The traceback below shows the call stack — read from bottom to top to find the origin.";
$MSG_PYTHON_RECURSION_ERROR="RecursionError: maximum recursion depth exceeded. Consider converting to iteration or raising the limit.";
$MSG_PYTHON_INDENTATION_ERROR="IndentationError. Python uses indentation for code blocks. Check for mixed tabs/spaces.";
$MSG_PYTHON_ZERO_DIVISION="ZeroDivisionError.";
$MSG_PYTHON_NAME_ERROR="NameError. Used an undefined name (variable or function). Check spelling and imports.";
$MSG_GO_PANIC="Go panic — usually out-of-bounds access, nil pointer, or failed type assertion.";
$MSG_ABORTED_CORE_DUMPED="Aborted. Usually caused by a failed assert or std::terminate.";
$MSG_MAIN_MUST_RETURN_INT="In the standard C language, the return value type of the main function must be int, and the use of void in teaching materials and VC is a non-standard usage.";
$MSG_PRINTF_NOT_DECLARED_IN_SCOPE="The printf function is called without a declaration, and check whether the or header file is imported.";
$MSG_IGNOREING_RETURN_VALUE="Warning: Ignore the return value of the function, it may be that the function is used incorrectly or the return value is not considered abnormal.";
$MSG_NOT_DECLARED_INT64="__int64 is not declared. The __int64 in Microsoft VC is not supported in standard C/C++, please use long long to declare 64-bit variables.";
$MSG_EXPECTED_SEMICOLON_BEFORE="The semicolon is missing from the previous line.";
$MSG_UNDECLARED_NAME="Variables must be declared before they are used, or they may be spelled incorrectly. Pay attention to case sensitivity.";
$MSG_SCANF_NOT_DECLARED_IN_SCOPE="The scanf function is called without being declared, and check whether the or header file is imported.";
$MSG_MEMSET_NOT_DECLARED_IN_SCOPE="The memset function is called without being declared, and check whether the or header file is imported.";
$MSG_MALLOC_NOT_DECLARED_IN_SCOPE="The malloc function is called without being declared, and check whether the or header file is imported.";
$MSG_PUTS_NOT_DECLARED_IN_SCOPE="The puts function is called without being declared, and check whether the or header file is imported.";
$MSG_GETS_NOT_DECLARED_IN_SCOPE="The gets function is called without being declared, and check whether the or header file is imported.";
$MSG_STRING_NOT_DECLARED_IN_SCOPE="The string function is called without being declared, and check whether the or header file is imported.";
$MSG_NO_TYPE_IMPORT_IN_C_CPP="Don't submit Java language programs as C/C++, please choose the language type before submitting.";
$MSG_ASM_UNDECLARED="It is not allowed to embed assembly language code in C/C++.";
$MSG_REDEFINITION_OF="The function or variable is repeatedly defined, and see if the code is pasted multiple times.";
$MSG_EXPECTED_DECLARATION_OR_STATEMENT="The program does not seem to be finished. Check if the code is missing when copying and pasting.";
$MSG_UNUSED_VARIABLE="Warning: Variables are not used after declaration. Check for spelling errors and misuse variables with similar names.";
$MSG_IMPLICIT_DECLARTION_OF_FUNCTION="Function implicit declaration, check whether the correct header file is imported. Or the function with the specified name required by the title is missing.";
$MSG_ARGUMENTS_ERROR_IN_FUNCTION="The number of parameters provided in the function call is incorrect. Check whether the wrong parameters are used.";
$MSG_EXPECTED_BEFORE_NAMESPACE="Don't submit C++ language program as C, please choose the language type before submitting.";
$MSG_STRAY_PROGRAM="Chinese spaces, punctuation, etc. cannot appear in the program other than comments and character strings. Please close the Chinese input method when writing a program. Please do not use the code copied from the Internet.";
$MSG_DIVISION_BY_ZERO="Division by zero will cause a floating point overflow.";
$MSG_CANNOT_BE_USED_AS_A_FUNCTION="Variables cannot be used as functions. Check for duplicates of variable and function names, or spelling errors.";
$MSG_CANNOT_FIND_TYPE="The format description of scanf/printf is inconsistent with the following parameter list. Check whether there is more or less address character \\\"&\\\", or it may be a spelling error.";
$MSG_JAVA_CLASS_ERROR="Java language submission can only have one public class, and the class name must be Main, please do not use public keywords for other classes.";
$MSG_EXPECTED_BRACKETS_TOKEN="Missing closing brackets";
$MSG_NOT_FOUND_SYMBOL="Use an undefined function or variable, check whether the spelling is wrong, do not use a non-existent function, Java call methods usually need to give the object name such as list1.add(...). Java method calls are sensitive to parameter types, such as: cannot pass an integer (int) to a method that accepts a string object (String).";
$MSG_NEED_CLASS_INTERFACE_ENUM="Keyword is missing, it should be declared as class, interface or enum.";
$MSG_CLASS_SYMBOL_ERROR="To use the examples on the textbook, you must submit the relevant code and remove the public keyword.";
$MSG_INVALID_METHOD_DECLARATION="Only the method with the same class name is the constructor, and the return value type is not written. If you change the class name to Main, please also change the name of the constructor.";
$MSG_EXPECTED_AMPERSAND_TOKEN="Don't submit C++ language program as C, please choose the language type before submitting.";
$MSG_DECLARED_FUNCTION_ORDER="Please pay attention to the order of the declaration of functions and methods. The declaration of another method cannot appear in one method.";
$MSG_NEED_SEMICOLON="The line marked above lacks a semicolon at the end.";
$MSG_EXTRA_TOKEN_AT_END_OF_INCLUDE="The include statement must be on its own line and cannot be placed on the same line as the following statement";
$MSG_INT_HAS_NEXT="hasNext() should be changed to nextInt()";
$MSG_UNTERMINATED_COMMENT="The comment is not over, please check whether the ending character \\\"*/\\\" corresponding to \\\"/*\\\" is correct";
$MSG_EXPECTED_BRACES_TOKEN="Function declaration lacks parentheses (), such as int main() written as int main";
$MSG_REACHED_END_OF_FILE_1="Check whether the submitted source code is not copied intact, or the closing brace is missing.";
$MSG_SUBSCRIPT_ERROR="Cannot perform subscript access to non-array or pointer variables";
$MSG_EXPECTED_PERCENT_TOKEN="The format part of scanf needs to be enclosed in double quotes";
$MSG_EXPECTED_EXPRESSION_TOKEN="The parameter or expression is not finished";
$MSG_EXPECTED_BUT="Wrong punctuation or symbols.";
$MSG_REDEFINITION_MAIN="This question may be an additional code question. Please review the question again to see the meaning of the question. Do not submit the main function defined by the system, but submit a function in the specified format.";
$MSG_IOSTREAM_ERROR="Please do not submit C++ programs as C.";
$MSG_EXPECTED_UNQUALIFIED_ID_TOKEN="Pay attention to whether the semicolon is missing after the array declaration.";
$MSG_REACHED_END_OF_FILE_2="Missing braces at the end of the program.";
$MSG_INVALID_SYMBOL="Check if Chinese punctuation or spaces are used.";
$MSG_DECLARED_FILE_NAMED="The public class in OJ can only be Main.";
$MSG_EXPECTED_IDENTIFIER="It may not have declare a variable name or missing parentheses when declaring a variable.";
$MSG_VARIABLY_MODIFIED="Variables cannot be used for array size. Variables cannot be used as the dimension size of global arrays in C language, including const variables.";
$MSG_FUNCTION_GETS_REMOVIED="The function std::gets is removed from C++14, use fgets to replace it. Or add #define gets(S) fgets(S,sizeof(S),stdin)";
$MSG_PROBLEM_USED_IN="This problem is used in private contest";
$MSG_MAIL_CAN_ONLY_BETWEEN_TEACHER_AND_STUDENT="Mails can only be sent between teachers and student, not between students.";
$MSG_COPY_USER_LIST_FROM_CONTEST="Copy user list from a history contest... ";
$MSG_REFRESH_PRIVILEGE="Refresh Privilege";
$MSG_SAVED_DATE="Saved Date";
$MSG_PROBLEM_STATUS="Problem Status";
$MSG_NEW_CONTEST="New Contest";
$MSG_AVAILABLE="Available";
$MSG_NEW_PROBLEM_LIST="NewProblemList";
$MSG_DELETE="Delete";
$MSG_EDIT="Edit";
$MSG_TEST_DATA="TestData";
$MSG_CHECK_TO="Batch Operation";
//bbcode.php
$MSG_TOTAL="Total";
$MSG_NUMBER_OF_PROBLEMS="Problems";
$MSG_GLOBAL="Global ";
$MSG_THIS_CONTEST="This Contest's ";
$MSG_SUBMIT_RECORD="Submit Record";
$MSG_RETURN_CONTEST="Return to contest";
$MSG_COPY="Copy";
$MSG_SUCCESS="Success";
$MSG_FAIL="Fail";
$MSG_TEXT_COMPARE="Text Compare";
$MSG_JUDGE_STYLE="Judge Style";
// reinfo.php
$MSG_ERROR_INFO="Runtime information";
$MSG_INFO_EXPLAINATION="Explaination";
// ceinfo.php
$MSG_COMPILE_INFO="Compile information";
$MSG_SOURCE_CODE="Source code";
//contest.php
$MSG_Contest_Pending="Pending";
$MSG_Server_Time="Server Current Time";
$MSG_Contest_Infomation="Contest Information";
// sourcecompare.php
$MSG_Source_Compare="Source Code Comparation";
$MSG_BACK="Return to Last Page";
$MSG_NEXT_PAGE="Next Page";
$MSG_PREV_PAGE="Prev Page";
//email
$MSG_SYS_WARN="System Warning!";
$MSG_IS_ROBOT="could be a robot , verify and disable it !";
//SaaS friendly
$MSG_TEMPLATE="Template";
$MSG_FRIENDLY_LEVEL="Friendly Level";
$MSG_FRIENDLY_L0="Not friendly at all";
$MSG_FRIENDLY_L1="Using UTC+8 TimeZone";
$MSG_FRIENDLY_L2="Using Chinese UI";
$MSG_FRIENDLY_L3="Show differ,No Verify Code";
$MSG_FRIENDLY_L4="Using mail,Code auto share";
$MSG_FRIENDLY_L5="Allow test running";
$MSG_FRIENDLY_L6="Keep long login";
$MSG_FRIENDLY_L7="Enable discus";
$MSG_FRIENDLY_L8="Allow download test data";
$MSG_FRIENDLY_L9="Allow guest to submit";