rhymix/modules/message/lang/en.php
Kijin Sung 76fdcea292 Add helpful error messages to 3 most common error types
최근 커뮤니티 검색에서 가장 자주 발견되는 에러 타입 3가지:
  - 문자열에 따옴표 안 씀
  - stdClass 정의 안 함
  - 배열이 아닌 것에 배열 함수 사용
2023-08-08 01:12:12 +09:00

8 lines
1.2 KiB
PHP

<?php
$lang->message = 'Display Errors';
$lang->about_skin = 'You may select skins for error messages.';
$lang->msg_administrator_login = 'Administrator Login';
$lang->error_help['baseobject'] = 'Object → BaseObject conversion is required in a third-party program. Please fix it by consulting the file name and line number shown above.';
$lang->error_help['undef_constant'] = 'This error occurs because of missing &quot;quotes&quot;. This syntax was often used in the past, but it is not allowed in recent versions of PHP. Please fix the incorrect syntax by consulting the file name and line number shown above.';
$lang->error_help['undef_object'] = 'This code is trying to add an attribute to an undefined object. This coding style was often used in the past, but it is not allowed in recent versions of PHP. Please fix the incorrect code by consulting the file name and line number shown above.';
$lang->error_help['not_array'] = 'This code is trying to use an array function on something that is not an array. This coding style was often used in the past, but it is not allowed in recent versions of PHP. Please fix the incorrect code by consulting the file name and line number shown above.';