validation.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <?php
  2. return [
  3. 'accepted' => ':attribute을(를) 동의해야 합니다.',
  4. 'accepted_if' => ':attribute을(를) :other이(가) :value이면 동의해야 합니다.',
  5. 'active_url' => ':attribute은(는) 유효한 URL이 아닙니다.',
  6. 'after' => ':attribute은(는) :date 이후 날짜여야 합니다.',
  7. 'after_or_equal' => ':attribute은(는) :date 이후 날짜이거나 같은 날짜여야 합니다.',
  8. 'alpha' => ':attribute은(는) 문자만 포함할 수 있습니다.',
  9. 'alpha_dash' => ':attribute은(는) 문자, 숫자, 대쉬(-), 밑줄(_)만 포함할 수 있습니다.',
  10. 'alpha_num' => ':attribute은(는) 문자와 숫자만 포함할 수 있습니다.',
  11. 'array' => ':attribute은(는) 배열이어야 합니다.',
  12. 'before' => ':attribute은(는) :date 이전 날짜여야 합니다.',
  13. 'before_or_equal' => ':attribute은(는) :date 이전 날짜이거나 같은 날짜여야 합니다.',
  14. 'between' => [
  15. 'array' => ':attribute의 항목 수는 :min에서 :max 개의 항목이 있어야 합니다.',
  16. 'file' => ':attribute의 용량은 :min에서 :max 킬로바이트 사이여야 합니다.',
  17. 'numeric' => ':attribute의 값은 :min에서 :max 사이여야 합니다.',
  18. 'string' => ':attribute의 길이는 :min에서 :max 문자 사이여야 합니다.',
  19. ],
  20. 'boolean' => ':attribute은(는) true 또는 false 이어야 합니다.',
  21. 'confirmed' => ':attribute 확인 항목이 일치하지 않습니다.',
  22. 'current_password' => '패스워드가 일치하지 않습니다.',
  23. 'date' => ':attribute은(는) 유효한 날짜가 아닙니다.',
  24. 'date_equals' => ':attribute은(는) :date과(와) 같은날짜여야합니다.',
  25. 'date_format' => ':attribute이(가) :format 형식과 일치하지 않습니다.',
  26. 'declined' => ':attribute은(는) 거부되어야 합니다.',
  27. 'declined_if' => ':other이(가) :value일때 :attribute은(는) 거부되어야 합니다.',
  28. 'different' => ':attribute와(과) :other은(는) 서로 달라야 합니다.',
  29. 'digits' => ':attribute은(는) :digits 자리 숫자여야 합니다.',
  30. 'digits_between' => ':attribute은(는) :min에서 :max 자리 사이여야 합니다.',
  31. 'dimensions' => ':attribute은(는) 올바르지 않는 이미지 크기입니다.',
  32. 'distinct' => ':attribute 필드에 중복된 값이 있습니다.',
  33. 'email' => ':attribute은(는) 유효한 이메일 주소여야 합니다.',
  34. 'ends_with' => ':attribute은(는) 다음 중 하나로 끝나야 합니다: :values.',
  35. 'enum' => ':attribute의 값이 잘못되었습니다.',
  36. 'exists' => ':attribute이(가) 존재하지 않습니다.',
  37. 'file' => ':attribute은(는) 파일이어야 합니다.',
  38. 'filled' => ':attribute 필드는 값이 있어야 합니다.',
  39. 'gt' => [
  40. 'array' => ':attribute의 항목 수는 :value개 보다 많아야 합니다.',
  41. 'file' => ':attribute의 용량은 :value킬로바이트보다 커야 합니다.',
  42. 'numeric' => ':attribute의 값은 :value보다 커야 합니다.',
  43. 'string' => ':attribute의 길이는 :value보다 길어야 합니다.',
  44. ],
  45. 'gte' => [
  46. 'array' => ':attribute의 항목 수는 :value개 보다 같거나 많아야 합니다.',
  47. 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 커야 합니다.',
  48. 'numeric' => ':attribute의 값은 :value보다 같거나 커야 합니다.',
  49. 'string' => ':attribute의 길이는 :value보다 같거나 길어야 합니다.',
  50. ],
  51. 'image' => ':attribute은(는) 이미지여야 합니다.',
  52. 'in' => '선택된 :attribute은(는) 올바르지 않습니다.',
  53. 'in_array' => ':attribute 필드는 :other에 존재하지 않습니다.',
  54. 'integer' => ':attribute은(는) 정수여야 합니다.',
  55. 'ip' => ':attribute은(는) 유효한 IP 주소여야 합니다.',
  56. 'ipv4' => ':attribute은(는) 유효한 IPv4 주소여야 합니다.',
  57. 'ipv6' => ':attribute은(는) 유효한 IPv6 주소여야 합니다.',
  58. 'json' => ':attribute은(는) JSON 문자열이어야 합니다.',
  59. 'lt' => [
  60. 'array' => ':attribute의 항목 수는 :value개 보다 작아야 합니다.',
  61. 'file' => ':attribute의 용량은 :value킬로바이트보다 작아야 합니다.',
  62. 'numeric' => ':attribute의 값은 :value보다 작아야 합니다.',
  63. 'string' => ':attribute의 길이는 :value보다 짧아야 합니다.',
  64. ],
  65. 'lte' => [
  66. 'array' => ':attribute의 항목 수는 :value개 보다 같거나 작아야 합니다.',
  67. 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 작아야 합니다.',
  68. 'numeric' => ':attribute의 값은 :value보다 같거나 작아야 합니다.',
  69. 'string' => ':attribute의 길이는 :value보다 같거나 짧아야 합니다.',
  70. ],
  71. 'mac_address' => ':attribute은(는) 올바른 MAC 주소가 아닙니다.',
  72. 'max' => [
  73. 'array' => ':attribute은(는) :max개보다 많을 수 없습니다.',
  74. 'file' => ':attribute은(는) :max킬로바이트보다 클 수 없습니다.',
  75. 'numeric' => ':attribute은(는) :max보다 클 수 없습니다.',
  76. 'string' => ':attribute은(는) :max자보다 클 수 없습니다.',
  77. ],
  78. 'mimes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.',
  79. 'mimetypes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.',
  80. 'min' => [
  81. 'array' => ':attribute은(는) 최소한 :min개의 항목이 있어야 합니다.',
  82. 'file' => ':attribute은(는) 최소한 :min킬로바이트이어야 합니다.',
  83. 'numeric' => ':attribute은(는) 최소한 :min이어야 합니다.',
  84. 'string' => ':attribute은(는) 최소한 :min자이어야 합니다.',
  85. ],
  86. 'multiple_of' => ':attribute 는 :value 의 배수여야 합니다.',
  87. 'not_in' => '선택된 :attribute이(가) 올바르지 않습니다.',
  88. 'not_regex' => ':attribute의 형식이 올바르지 않습니다.',
  89. 'numeric' => ':attribute은(는) 숫자여야 합니다.',
  90. 'password' => '비밀번호가 잘못되었습니다.',
  91. 'present' => ':attribute 필드가 있어야 합니다.',
  92. 'prohibited' => ':attribute (은)는 금지되어 있습니다.',
  93. 'prohibited_if' => ':attribute (은)는 :other 이(가) :value 인 경우 금지되어 있습니다.',
  94. 'prohibited_unless' => ':attribute (은)는 :other 이(가) :value 이(가) 아닌 경우 금지되어 있습니다.',
  95. 'prohibits' => ':attribute (은)는 :other 을(를) 금지합니다.',
  96. 'regex' => ':attribute 형식이 올바르지 않습니다.',
  97. 'required' => ':attribute 필드는 필수입니다.',
  98. 'required_array_keys' => 'The :attribute field must contain entries for: :values.',
  99. 'required_if' => ':other이(가) :value 일 때 :attribute 필드는 필수입니다.',
  100. 'required_unless' => ':other이(가) :values에 없다면 :attribute 필드는 필수입니다.',
  101. 'required_with' => ':values이(가) 있는 경우 :attribute 필드는 필수입니다.',
  102. 'required_with_all' => ':values이(가) 모두 있는 경우 :attribute 필드는 필수입니다.',
  103. 'required_without' => ':values이(가) 없는 경우 :attribute 필드는 필수입니다.',
  104. 'required_without_all' => ':values이(가) 모두 없는 경우 :attribute 필드는 필수입니다.',
  105. 'same' => ':attribute와(과) :other은(는) 일치해야 합니다.',
  106. 'size' => [
  107. 'array' => ':attribute은(는) :size개의 항목을 포함해야 합니다.',
  108. 'file' => ':attribute은(는) :size킬로바이트여야 합니다.',
  109. 'numeric' => ':attribute은(는) :size (이)여야 합니다.',
  110. 'string' => ':attribute은(는) :size자여야 합니다.',
  111. ],
  112. 'starts_with' => ':attribute은(는) :values 중 하나로 시작해야 합니다.',
  113. 'string' => ':attribute은(는) 문자열이어야 합니다.',
  114. 'timezone' => ':attribute은(는) 올바른 시간대 이어야 합니다.',
  115. 'unique' => ':attribute은(는) 이미 사용 중입니다.',
  116. 'uploaded' => ':attribute을(를) 업로드하지 못했습니다.',
  117. 'url' => ':attribute은(는) 형식은 올바르지 않습니다.',
  118. 'uuid' => ':attribute은(는) 유효한UUID여야합니다.',
  119. 'attributes' => [
  120. 'address' => '주소',
  121. 'age' => '나이',
  122. 'amount' => 'Amount',
  123. 'area' => 'Area',
  124. 'available' => 'Available',
  125. 'birthday' => 'Birthday',
  126. 'body' => '몸',
  127. 'city' => '도시',
  128. 'content' => '내용',
  129. 'country' => '나라',
  130. 'created_at' => 'Created At',
  131. 'creator' => 'Creator',
  132. 'current_password' => 'Current Password',
  133. 'date' => '날짜',
  134. 'date_of_birth' => 'Date Of Birth',
  135. 'day' => '일',
  136. 'deleted_at' => 'Deleted At',
  137. 'description' => '상세설명',
  138. 'district' => 'District',
  139. 'duration' => 'Duration',
  140. 'email' => '이메일',
  141. 'excerpt' => '발췌',
  142. 'filter' => 'Filter',
  143. 'first_name' => '이름',
  144. 'gender' => '성별',
  145. 'group' => 'Group',
  146. 'hour' => '시',
  147. 'image' => 'Image',
  148. 'last_name' => '성',
  149. 'lesson' => 'Lesson',
  150. 'line_address_1' => 'Line Address 1',
  151. 'line_address_2' => 'Line Address 2',
  152. 'message' => '메시지',
  153. 'middle_name' => 'Middle Name',
  154. 'minute' => '분',
  155. 'mobile' => '모바일',
  156. 'month' => '월',
  157. 'name' => '이름',
  158. 'national_code' => 'National Code',
  159. 'number' => 'Number',
  160. 'password' => '비밀번호',
  161. 'password_confirmation' => '비밀번호 확인',
  162. 'phone' => '전화번호',
  163. 'photo' => '사진',
  164. 'postal_code' => 'Postal Code',
  165. 'price' => '가격',
  166. 'province' => 'Province',
  167. 'recaptcha_response_field' => 'Recaptcha Response Field',
  168. 'remember' => 'Remember',
  169. 'restored_at' => 'Restored At',
  170. 'result_text_under_image' => 'Result Text Under Image',
  171. 'role' => '규칙',
  172. 'second' => '초',
  173. 'sex' => '성별',
  174. 'short_text' => 'Short Text',
  175. 'size' => 'Size',
  176. 'state' => 'State',
  177. 'street' => 'Street',
  178. 'student' => 'Student',
  179. 'subject' => '주제',
  180. 'teacher' => 'Teacher',
  181. 'terms' => '약관',
  182. 'test_description' => 'Test Description',
  183. 'test_locale' => 'Test Locale',
  184. 'test_name' => 'Test Name',
  185. 'text' => 'Text',
  186. 'time' => '시간',
  187. 'title' => '제목',
  188. 'updated_at' => 'Updated At',
  189. 'username' => '유저네임',
  190. 'year' => '년',
  191. ],
  192. 'custom' => [
  193. 'attribute-name' => [
  194. 'rule-name' => '사용자 지정 메세지',
  195. ],
  196. ],
  197. ];