支付宝记账本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

285 lines
16 KiB

5 months ago
  1. <?php
  2. declare(strict_types=1);
  3. return [
  4. 'accepted' => '必須接受 :attribute。',
  5. 'accepted_if' => '當 :other 為 :value 時,:attribute 必須接受。',
  6. 'active_url' => ':attribute 不是有效的網址。',
  7. 'after' => ':attribute 必須要晚於 :date。',
  8. 'after_or_equal' => ':attribute 必須要等於 :date 或更晚。',
  9. 'alpha' => ':attribute 只能以字母組成。',
  10. 'alpha_dash' => ':attribute 只能以字母、數字、連接線(-)及底線(_)組成。',
  11. 'alpha_num' => ':attribute 只能以字母及數字組成。',
  12. 'any_of' => ':attribute個字段無效。',
  13. 'array' => ':attribute 必須為陣列。',
  14. 'ascii' => ':attribute 必須僅包含單字節字母數字字符和符號。',
  15. 'before' => ':attribute 必須要早於 :date。',
  16. 'before_or_equal' => ':attribute 必須要等於 :date 或更早。',
  17. 'between' => [
  18. 'array' => ':attribute: 必須有 :min - :max 個元素。',
  19. 'file' => ':attribute 必須介於 :min 至 :max KB 之間。',
  20. 'numeric' => ':attribute 必須介於 :min 至 :max 之間。',
  21. 'string' => ':attribute 必須介於 :min 至 :max 個字元之間。',
  22. ],
  23. 'boolean' => ':attribute 必須為布林值。',
  24. 'can' => ':attribute 欄位包含未經授權的值。',
  25. 'confirmed' => ':attribute 確認欄位的輸入不一致。',
  26. 'contains' => ':attribute 欄位缺少必要的值。',
  27. 'current_password' => '當前密碼不正確。',
  28. 'date' => ':attribute 不是有效的日期。',
  29. 'date_equals' => ':attribute 必須等於 :date。',
  30. 'date_format' => ':attribute 不符合 :format 的格式。',
  31. 'decimal' => ':attribute 必須有 :decimal 位小數。',
  32. 'declined' => ':attribute 必須拒絕。',
  33. 'declined_if' => '當 :other 為 :value 時,:attribute 必須拒絕。',
  34. 'different' => ':attribute 與 :other 必須不同。',
  35. 'digits' => ':attribute 必須是 :digits 位數字。',
  36. 'digits_between' => ':attribute 必須介於 :min 至 :max 位數字。',
  37. 'dimensions' => ':attribute 圖片尺寸不正確。',
  38. 'distinct' => ':attribute 已經存在。',
  39. 'doesnt_contain' => 'The :attribute field must not contain any of the following: :values.',
  40. 'doesnt_end_with' => ':attribute 不能以下列之一結尾::values。',
  41. 'doesnt_start_with' => ':attribute 不能以下列之一開頭::values。',
  42. 'email' => ':attribute 必須是有效的 E-mail。',
  43. 'ends_with' => ':attribute 結尾必須包含下列之一::values。',
  44. 'enum' => ':attribute 的值不正確。',
  45. 'exists' => ':attribute 不存在。',
  46. 'extensions' => ':attribute 欄位必須具有以下副檔名之一::values。',
  47. 'file' => ':attribute 必須是有效的檔案。',
  48. 'filled' => ':attribute 不能留空。',
  49. 'gt' => [
  50. 'array' => ':attribute 必須多於 :value 個元素。',
  51. 'file' => ':attribute 必須大於 :value KB。',
  52. 'numeric' => ':attribute 必須大於 :value。',
  53. 'string' => ':attribute 必須多於 :value 個字元。',
  54. ],
  55. 'gte' => [
  56. 'array' => ':attribute 必須多於或等於 :value 個元素。',
  57. 'file' => ':attribute 必須大於或等於 :value KB。',
  58. 'numeric' => ':attribute 必須大於或等於 :value。',
  59. 'string' => ':attribute 必須多於或等於 :value 個字元。',
  60. ],
  61. 'hex_color' => ':attribute 欄位必須是有效的十六進位顏色。',
  62. 'image' => ':attribute 必須是一張圖片。',
  63. 'in' => '所選擇的 :attribute 選項無效。',
  64. 'in_array' => ':attribute 沒有在 :other 中。',
  65. 'in_array_keys' => ':attribute個字段必須至少包含以下密鑰之一::values。',
  66. 'integer' => ':attribute 必須是一個整數。',
  67. 'ip' => ':attribute 必須是一個有效的 IP 位址。',
  68. 'ipv4' => ':attribute 必須是一個有效的 IPv4 位址。',
  69. 'ipv6' => ':attribute 必須是一個有效的 IPv6 位址。',
  70. 'json' => ':attribute 必須是正確的 JSON 字串。',
  71. 'list' => ':attribute 欄位必須是列表。',
  72. 'lowercase' => ':attribute 必須小寫。',
  73. 'lt' => [
  74. 'array' => ':attribute 必須少於 :value 個元素。',
  75. 'file' => ':attribute 必須小於 :value KB。',
  76. 'numeric' => ':attribute 必須小於 :value。',
  77. 'string' => ':attribute 必須少於 :value 個字元。',
  78. ],
  79. 'lte' => [
  80. 'array' => ':attribute 必須少於或等於 :value 個元素。',
  81. 'file' => ':attribute 必須小於或等於 :value KB。',
  82. 'numeric' => ':attribute 必須小於或等於 :value。',
  83. 'string' => ':attribute 必須少於或等於 :value 個字元。',
  84. ],
  85. 'mac_address' => ':attribute 必須是一個有效的 MAC 位址。',
  86. 'max' => [
  87. 'array' => ':attribute 最多有 :max 個元素。',
  88. 'file' => ':attribute 不能大於 :max KB。',
  89. 'numeric' => ':attribute 不能大於 :max。',
  90. 'string' => ':attribute 不能多於 :max 個字元。',
  91. ],
  92. 'max_digits' => ':attribute 不得超過 :max 位。',
  93. 'mimes' => ':attribute 必須為 :values 的檔案。',
  94. 'mimetypes' => ':attribute 必須為 :values 的檔案。',
  95. 'min' => [
  96. 'array' => ':attribute 至少有 :min 個元素。',
  97. 'file' => ':attribute 不能小於 :min KB。',
  98. 'numeric' => ':attribute 不能小於 :min。',
  99. 'string' => ':attribute 不能小於 :min 個字元。',
  100. ],
  101. 'min_digits' => ':attribute 必須至少有 :min 位數字。',
  102. 'missing' => '必須缺少 :attribute 欄位。',
  103. 'missing_if' => '當 :other 為 :value 時,必須缺少 :attribute 欄位。',
  104. 'missing_unless' => '必須缺少 :attribute 欄位,除非 :other 是 :value。',
  105. 'missing_with' => '存在 :values 時,必須缺少 :attribute 欄位。',
  106. 'missing_with_all' => '存在 :values 時,必須缺少 :attribute 欄位。',
  107. 'multiple_of' => '所選擇的 :attribute 必須為 :value 中的多個。',
  108. 'not_in' => '所選擇的 :attribute 選項無效。',
  109. 'not_regex' => ':attribute 的格式錯誤。',
  110. 'numeric' => ':attribute 必須為一個數字。',
  111. 'password' => [
  112. 'letters' => ':attribute 必須至少包含一個字母。',
  113. 'mixed' => ':attribute 必須至少包含一個大寫字母和一個小寫字母。',
  114. 'numbers' => ':attribute 必須至少包含一個數字。',
  115. 'symbols' => ':attribute 必須包含至少一個符號。',
  116. 'uncompromised' => '給定的 :attribute 已出現數據洩漏。請選擇不同的 :attribute。',
  117. ],
  118. 'present' => ':attribute 必須存在。',
  119. 'present_if' => '當 :other 等於 :value 時,必須存在 :attribute 個欄位。',
  120. 'present_unless' => '除非 :other 等於 :value,否則 :attribute 個欄位必須存在。',
  121. 'present_with' => '當 :values 存在時,:attribute 個欄位必須存在。',
  122. 'present_with_all' => '當存在 :values 時,必須存在 :attribute 個欄位。',
  123. 'prohibited' => ':attribute 欄位被禁止。',
  124. 'prohibited_if' => '当 :other 为 :value 时,:attribute 欄位被禁止。',
  125. 'prohibited_if_accepted' => ':attribute 欄位在 :other 被接受時不允許填寫。',
  126. 'prohibited_if_declined' => ':attribute 欄位在 :other 被拒絕時不允許填寫。',
  127. 'prohibited_unless' => ':attribute 欄位被禁止,除非 :other 在 :values 中。',
  128. 'prohibits' => ':attribute 欄位禁止包含 :other。',
  129. 'regex' => ':attribute 的格式錯誤。',
  130. 'required' => ':attribute 不能留空。',
  131. 'required_array_keys' => ':attribute 必須包含 :values 中的一個鍵。',
  132. 'required_if' => '當 :other 是 :value 時 :attribute 不能留空。',
  133. 'required_if_accepted' => '接受 :other 時需要 :attribute 欄位。',
  134. 'required_if_declined' => '拒絕 :other 時需要 :attribute 欄位。',
  135. 'required_unless' => '當 :other 不是 :values 時 :attribute 不能留空。',
  136. 'required_with' => '當 :values 出現時 :attribute 不能留空。',
  137. 'required_with_all' => '當 :values 出現時 :attribute 不能為空。',
  138. 'required_without' => '當 :values 未出現時,:attribute 不能留空。',
  139. 'required_without_all' => '當 :values 都不出現時 :attribute 不能留空。',
  140. 'same' => ':attribute 與 :other 必須相同。',
  141. 'size' => [
  142. 'array' => ':attribute 必須是 :size 個元素。',
  143. 'file' => ':attribute 的大小必須是 :size KB。',
  144. 'numeric' => ':attribute 的大小必須是 :size。',
  145. 'string' => ':attribute 必須是 :size 個字元。',
  146. ],
  147. 'starts_with' => ':attribute 開頭必須包含下列之一::values。',
  148. 'string' => ':attribute 必須是一個字串。',
  149. 'timezone' => ':attribute 必須是一個正確的時區值。',
  150. 'ulid' => ':attribute 必須是有效的 ULID。',
  151. 'unique' => ':attribute 已經存在。',
  152. 'uploaded' => ':attribute 上傳失敗。',
  153. 'uppercase' => ':attribute 必須大寫。',
  154. 'url' => ':attribute 的格式錯誤。',
  155. 'uuid' => ':attribute 必須是有效的 UUID。',
  156. 'attributes' => [
  157. 'address' => '地址',
  158. 'affiliate_url' => '附屬網址',
  159. 'age' => '年齡',
  160. 'amount' => '數量',
  161. 'announcement' => '公告',
  162. 'area' => '區域',
  163. 'audience_prize' => '觀眾獎',
  164. 'audience_winner' => 'audience winner',
  165. 'available' => '可用的',
  166. 'birthday' => '生日',
  167. 'body' => '身體',
  168. 'city' => '城市',
  169. 'company' => 'company',
  170. 'compilation' => '彙編',
  171. 'concept' => '概念',
  172. 'conditions' => '狀況',
  173. 'content' => '內容',
  174. 'contest' => 'contest',
  175. 'country' => '國家',
  176. 'cover' => '覆蓋',
  177. 'created_at' => '創建於',
  178. 'creator' => '創造者',
  179. 'currency' => '貨幣',
  180. 'current_password' => '當前密碼',
  181. 'customer' => '顧客',
  182. 'date' => '日期',
  183. 'date_of_birth' => '出生日期',
  184. 'dates' => '日期',
  185. 'day' => '天',
  186. 'deleted_at' => '刪除於',
  187. 'description' => '描述',
  188. 'display_type' => '顯示類型',
  189. 'district' => '區',
  190. 'duration' => '期間',
  191. 'email' => 'e-mail',
  192. 'excerpt' => '摘要',
  193. 'filter' => '篩選',
  194. 'finished_at' => '完成於',
  195. 'first_name' => '名',
  196. 'gender' => '性別',
  197. 'grand_prize' => '大獎',
  198. 'group' => '團體',
  199. 'hour' => '時',
  200. 'image' => '圖片',
  201. 'image_desktop' => '桌面影像',
  202. 'image_main' => '主圖',
  203. 'image_mobile' => '移動影像',
  204. 'images' => '圖片',
  205. 'is_audience_winner' => '是觀眾贏家',
  206. 'is_hidden' => '被隱藏',
  207. 'is_subscribed' => '已訂閱',
  208. 'is_visible' => '是可見的',
  209. 'is_winner' => '是贏家',
  210. 'items' => '專案',
  211. 'key' => '鑰匙',
  212. 'last_name' => '姓',
  213. 'lesson' => '課',
  214. 'line_address_1' => '行地址 1',
  215. 'line_address_2' => '行地址 2',
  216. 'login' => '登入',
  217. 'message' => '信息',
  218. 'middle_name' => '中間名字',
  219. 'minute' => '分',
  220. 'mobile' => '手機',
  221. 'month' => '月',
  222. 'name' => '名稱',
  223. 'national_code' => '國家代碼',
  224. 'number' => '數字',
  225. 'password' => '密碼',
  226. 'password_confirmation' => '確認密碼',
  227. 'phone' => '電話',
  228. 'photo' => '照片',
  229. 'portfolio' => '資料夾',
  230. 'postal_code' => '郵政編碼',
  231. 'preview' => '預覽',
  232. 'price' => '價格',
  233. 'product_id' => '產品編號',
  234. 'product_uid' => '產品UID',
  235. 'product_uuid' => '產品UUID',
  236. 'promo_code' => '促銷代碼',
  237. 'province' => '省',
  238. 'quantity' => '數量',
  239. 'reason' => '原因',
  240. 'recaptcha_response_field' => '重新驗證響應字段',
  241. 'referee' => '裁判',
  242. 'referees' => '裁判員',
  243. 'reject_reason' => '拒絕理由',
  244. 'remember' => '記住',
  245. 'restored_at' => '恢復於',
  246. 'result_text_under_image' => '圖片下方的結果文本',
  247. 'role' => '角色',
  248. 'rule' => '規則',
  249. 'rules' => '規則',
  250. 'second' => '秒',
  251. 'sex' => '性別',
  252. 'shipment' => '運輸',
  253. 'short_text' => '短文',
  254. 'size' => '大小',
  255. 'skills' => '技能',
  256. 'slug' => '蛞蝓',
  257. 'specialization' => '專業化',
  258. 'started_at' => '開始於',
  259. 'state' => '狀態',
  260. 'status' => '地位',
  261. 'street' => '街道',
  262. 'student' => '學生',
  263. 'subject' => '主題',
  264. 'tag' => '標籤',
  265. 'tags' => '標籤',
  266. 'teacher' => '老師',
  267. 'terms' => '條款',
  268. 'test_description' => '測試說明',
  269. 'test_locale' => '測試語言環境',
  270. 'test_name' => '測試名稱',
  271. 'text' => '文本',
  272. 'time' => '時間',
  273. 'title' => '標題',
  274. 'type' => '類型',
  275. 'updated_at' => '更新於',
  276. 'user' => '使用者',
  277. 'username' => '使用者名稱',
  278. 'value' => '價值',
  279. 'winner' => 'winner',
  280. 'work' => 'work',
  281. 'year' => '年',
  282. ],
  283. ];