This commit is contained in:
iVampireSP.com 2023-02-02 02:02:35 +08:00
parent 9e300d5875
commit e5f4ea309f
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132
14 changed files with 1612 additions and 102 deletions

56
lang/en.json Normal file
View File

@ -0,0 +1,56 @@
{
"(and :count more error)": "(and :count more error)",
"(and :count more errors)": "(and :count more errors)",
"A fresh verification link has been sent to your email address.": "A fresh verification link has been sent to your email address.",
"All rights reserved.": "All rights reserved.",
"Before proceeding, please check your email for a verification link.": "Before proceeding, please check your email for a verification link.",
"click here to request another": "click here to request another",
"Confirm Password": "Confirm Password",
"Dashboard": "Dashboard",
"Email Address": "Email Address",
"Forbidden": "Forbidden",
"Forgot Your Password?": "Forgot Your Password?",
"Go to page :page": "Go to page :page",
"Hello!": "Hello!",
"If you did not create an account, no further action is required.": "If you did not create an account, no further action is required.",
"If you did not receive the email": "If you did not receive the email",
"If you did not request a password reset, no further action is required.": "If you did not request a password reset, no further action is required.",
"If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser:": "If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser:",
"Login": "Login",
"Logout": "Logout",
"Name": "Name",
"Not Found": "Not Found",
"of": "of",
"Page Expired": "Page Expired",
"Pagination Navigation": "Pagination Navigation",
"Password": "Password",
"Payment Required": "Payment Required",
"Please click the button below to verify your email address.": "Please click the button below to verify your email address.",
"Please confirm your password before continuing.": "Please confirm your password before continuing.",
"Regards": "Regards",
"Register": "Register",
"Remember Me": "Remember Me",
"Reset Password": "Reset Password",
"Reset Password Notification": "Reset Password Notification",
"results": "results",
"Send Password Reset Link": "Send Password Reset Link",
"Server Error": "Server Error",
"Service Unavailable": "Service Unavailable",
"Showing": "Showing",
"The :attribute must contain at least one letter.": "The :attribute must contain at least one letter.",
"The :attribute must contain at least one number.": "The :attribute must contain at least one number.",
"The :attribute must contain at least one symbol.": "The :attribute must contain at least one symbol.",
"The :attribute must contain at least one uppercase and one lowercase letter.": "The :attribute must contain at least one uppercase and one lowercase letter.",
"The given :attribute has appeared in a data leak. Please choose a different :attribute.": "The given :attribute has appeared in a data leak. Please choose a different :attribute.",
"The given data was invalid.": "The given data was invalid.",
"This password reset link will expire in :count minutes.": "This password reset link will expire in :count minutes.",
"to": "to",
"Toggle navigation": "Toggle navigation",
"Too Many Requests": "Too Many Requests",
"Unauthorized": "Unauthorized",
"Verify Email Address": "Verify Email Address",
"Verify Your Email Address": "Verify Your Email Address",
"Whoops!": "Whoops!",
"You are logged in!": "You are logged in!",
"You are receiving this email because we received a password reset request for your account.": "You are receiving this email because we received a password reset request for your account."
}

View File

@ -1,20 +1,9 @@
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'failed' => 'These credentials do not match our records.',
'password' => 'The provided password is incorrect.',
'password' => 'The password is incorrect.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];

View File

@ -1,19 +1,8 @@
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You are free to change them to anything
| you want to customize your views to better match your application.
|
*/
'previous' => '&laquo; Previous',
'next' => 'Next &raquo;',
'previous' => '&laquo; Previous',
];

View File

@ -1,22 +1,11 @@
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are given by the password broker for a password update attempt
| has failed, such as for an invalid token or invalid new password.
|
*/
'reset' => 'Your password has been reset!',
'sent' => 'We have emailed your password reset link!',
'throttled' => 'Please wait before retrying.',
'token' => 'This password reset token is invalid.',
'user' => "We can't find a user with that email address.",
'user' => 'We can\'t find a user with that email address.',
];

View File

@ -1,27 +1,18 @@
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => 'The :attribute must be accepted.',
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
'active_url' => 'The :attribute is not a valid URL.',
'after' => 'The :attribute must be a date after :date.',
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
'alpha' => 'The :attribute must only contain letters.',
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
'alpha_num' => 'The :attribute must only contain letters and numbers.',
'alpha' => 'The :attribute may only contain letters.',
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
'alpha_num' => 'The :attribute may only contain letters and numbers.',
'array' => 'The :attribute must be an array.',
'ascii' => 'The :attribute must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute must be a date before :date.',
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
'between' => [
@ -36,6 +27,7 @@
'date' => 'The :attribute is not a valid date.',
'date_equals' => 'The :attribute must be a date equal to :date.',
'date_format' => 'The :attribute does not match the format :format.',
'decimal' => 'The :attribute must have :decimal decimal places.',
'declined' => 'The :attribute must be declined.',
'declined_if' => 'The :attribute must be declined when :other is :value.',
'different' => 'The :attribute and :other must be different.',
@ -50,7 +42,7 @@
'enum' => 'The selected :attribute is invalid.',
'exists' => 'The selected :attribute is invalid.',
'file' => 'The :attribute must be a file.',
'filled' => 'The :attribute field must have a value.',
'filled' => 'The :attribute field is required.',
'gt' => [
'array' => 'The :attribute must have more than :value items.',
'file' => 'The :attribute must be greater than :value kilobytes.',
@ -59,9 +51,9 @@
],
'gte' => [
'array' => 'The :attribute must have :value items or more.',
'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
'numeric' => 'The :attribute must be greater than or equal to :value.',
'string' => 'The :attribute must be greater than or equal to :value characters.',
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
'numeric' => 'The :attribute must be greater than or equal :value.',
'string' => 'The :attribute must be greater than or equal :value characters.',
],
'image' => 'The :attribute must be an image.',
'in' => 'The selected :attribute is invalid.',
@ -71,6 +63,7 @@
'ipv4' => 'The :attribute must be a valid IPv4 address.',
'ipv6' => 'The :attribute must be a valid IPv6 address.',
'json' => 'The :attribute must be a valid JSON string.',
'lowercase' => 'The :attribute must be lowercase.',
'lt' => [
'array' => 'The :attribute must have less than :value items.',
'file' => 'The :attribute must be less than :value kilobytes.',
@ -79,16 +72,16 @@
],
'lte' => [
'array' => 'The :attribute must not have more than :value items.',
'file' => 'The :attribute must be less than or equal to :value kilobytes.',
'numeric' => 'The :attribute must be less than or equal to :value.',
'string' => 'The :attribute must be less than or equal to :value characters.',
'file' => 'The :attribute must be less than or equal :value kilobytes.',
'numeric' => 'The :attribute must be less than or equal :value.',
'string' => 'The :attribute must be less than or equal :value characters.',
],
'mac_address' => 'The :attribute must be a valid MAC address.',
'max' => [
'array' => 'The :attribute must not have more than :max items.',
'file' => 'The :attribute must not be greater than :max kilobytes.',
'numeric' => 'The :attribute must not be greater than :max.',
'string' => 'The :attribute must not be greater than :max characters.',
'array' => 'The :attribute may not have more than :max items.',
'file' => 'The :attribute may not be greater than :max kilobytes.',
'numeric' => 'The :attribute may not be greater than :max.',
'string' => 'The :attribute may not be greater than :max characters.',
],
'max_digits' => 'The :attribute must not have more than :max digits.',
'mimes' => 'The :attribute must be a file of type: :values.',
@ -100,6 +93,11 @@
'string' => 'The :attribute must be at least :min characters.',
],
'min_digits' => 'The :attribute must have at least :min digits.',
'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute must be a multiple of :value.',
'not_in' => 'The selected :attribute is invalid.',
'not_regex' => 'The :attribute format is invalid.',
@ -123,7 +121,7 @@
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
'required_unless' => 'The :attribute field is required unless :other is in :values.',
'required_with' => 'The :attribute field is required when :values is present.',
'required_with_all' => 'The :attribute field is required when :values are present.',
'required_with_all' => 'The :attribute field is required when :values is present.',
'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => 'The :attribute field is required when none of :values are present.',
'same' => 'The :attribute and :other must match.',
@ -133,42 +131,86 @@
'numeric' => 'The :attribute must be :size.',
'string' => 'The :attribute must be :size characters.',
],
'starts_with' => 'The :attribute must start with one of the following: :values.',
'starts_with' => 'The :attribute must start with one of the following: :values',
'string' => 'The :attribute must be a string.',
'timezone' => 'The :attribute must be a valid timezone.',
'timezone' => 'The :attribute must be a valid zone.',
'ulid' => 'The :attribute must be a valid ULID.',
'unique' => 'The :attribute has already been taken.',
'uploaded' => 'The :attribute failed to upload.',
'url' => 'The :attribute must be a valid URL.',
'uppercase' => 'The :attribute must be uppercase.',
'url' => 'The :attribute format is invalid.',
'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
'attributes' => [
'address' => 'address',
'age' => 'age',
'amount' => 'amount',
'area' => 'area',
'available' => 'available',
'birthday' => 'birthday',
'body' => 'body',
'city' => 'city',
'content' => 'content',
'country' => 'country',
'created_at' => 'created at',
'creator' => 'creator',
'current_password' => 'current password',
'date' => 'date',
'date_of_birth' => 'date of birth',
'day' => 'day',
'deleted_at' => 'deleted at',
'description' => 'description',
'district' => 'district',
'duration' => 'duration',
'email' => 'email',
'excerpt' => 'excerpt',
'filter' => 'filter',
'first_name' => 'first name',
'gender' => 'gender',
'group' => 'group',
'hour' => 'hour',
'image' => 'image',
'last_name' => 'last name',
'lesson' => 'lesson',
'line_address_1' => 'line address 1',
'line_address_2' => 'line address 2',
'message' => 'message',
'middle_name' => 'middle name',
'minute' => 'minute',
'mobile' => 'mobile',
'month' => 'month',
'name' => 'name',
'national_code' => 'national code',
'number' => 'number',
'password' => 'password',
'password_confirmation' => 'password confirmation',
'phone' => 'phone',
'photo' => 'photo',
'postal_code' => 'postal code',
'price' => 'price',
'province' => 'province',
'recaptcha_response_field' => 'recaptcha response field',
'remember' => 'remember',
'restored_at' => 'restored at',
'result_text_under_image' => 'result text under image',
'role' => 'role',
'second' => 'second',
'sex' => 'sex',
'short_text' => 'short text',
'size' => 'size',
'state' => 'state',
'street' => 'street',
'student' => 'student',
'subject' => 'subject',
'teacher' => 'teacher',
'terms' => 'terms',
'test_description' => 'test description',
'test_locale' => 'test locale',
'test_name' => 'test name',
'text' => 'text',
'time' => 'time',
'title' => 'title',
'updated_at' => 'updated at',
'username' => 'username',
'year' => 'year',
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap our attribute placeholder
| with something more reader friendly such as "E-Mail Address" instead
| of "email". This simply helps us make our message more expressive.
|
*/
'attributes' => [],
];

View File

@ -0,0 +1,8 @@
[
"API Token",
"API Tokens",
"CSV (.csv)",
"Email",
"Excel (.xlsx)",
"ID"
]

View File

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
return [
'failed' => '用户名或密码错误。',
'password' => '密码错误',

View File

@ -0,0 +1,16 @@
{
"The :attribute must be a valid role.": "此项必须是一个有效的角色。",
"The :attribute must be at least :length characters and contain at least one number.": ":此项长度至少为 :length 个字符,并且至少包含一个数字。",
"The :attribute must be at least :length characters and contain at least one special character and one number.": "此项长度至少为 :length 个字符,并且至少包含一个特殊字符和一个数字。",
"The :attribute must be at least :length characters and contain at least one special character.": "此项长度至少为 :length 个字符,并且至少包含一个特殊字符。",
"The :attribute must be at least :length characters and contain at least one uppercase character and one number.": "此项长度至少为 :length 个字符,并且至少包含一个大写字母和一个数字。",
"The :attribute must be at least :length characters and contain at least one uppercase character and one special character.": "此项长度至少为 :length 个字符,并且至少包含一个大写字母和一个特殊字符。",
"The :attribute must be at least :length characters and contain at least one uppercase character, one number, and one special character.": "此项长度至少为 :length 个字符,并且至少包含一个大写字母、一个数字和一个特殊字符。",
"The :attribute must be at least :length characters and contain at least one uppercase character.": "此项长度至少为 :length 个字符,并且至少包含一个大写字符。",
"The :attribute must be at least :length characters.": "此项长度至少需要 :length 个字符。",
"The :attribute must contain at least one letter.": "此项至少需要包含一个字母。",
"The :attribute must contain at least one number.": "此项至少需要包含一个数字。",
"The :attribute must contain at least one symbol.": "此项至少需要包含一个符号。",
"The :attribute must contain at least one uppercase and one lowercase letter.": "此项至少需要包含一个大写字母和小写字母。",
"The given :attribute has appeared in a data leak. Please choose a different :attribute.": "此项所填内容可能存在风险,请重新填写。"
}

1102
lang/zh_CN/json.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
return [
'next' => '下一页 &raquo;',
'previous' => '&laquo; 上一页',

View File

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
return [
'reset' => '密码重置成功!',
'sent' => '密码重置邮件已发送!',

123
lang/zh_CN/php-inline.json Normal file
View File

@ -0,0 +1,123 @@
{
"accepted": "您必须接受。",
"accepted_if": "当 :other 为 :value 时,必须接受。",
"active_url": "不是一个有效的网址。",
"after": "必须要晚于 :date。",
"after_or_equal": "必须要等于 :date 或更晚。",
"alpha": "只能由字母组成。",
"alpha_dash": "只能由字母、数字、短划线(-)和下划线(_)组成。",
"alpha_num": "只能由字母和数字组成。",
"array": "必须是一个数组。",
"ascii": "该字段只能包含单字节字母数字字符和符号。",
"attached": "此字段已附加。",
"before": "必须要早于 :date。",
"before_or_equal": "必须要等于 :date 或更早。",
"between.array": "必须只有 :min - :max 个单元。",
"between.file": "必须介于 :min - :max KB 之间。",
"between.numeric": "必须介于 :min - :max 之间。",
"between.string": "必须介于 :min - :max 个字符之间。",
"boolean": "必须为布尔值。",
"confirmed": "两次输入不一致。",
"country": "该字段不是有效的国家/地区。",
"date": "不是一个有效的日期。",
"date_equals": "必须要等于 :date。",
"date_format": "格式必须为 :format。",
"decimal": "该字段必须有 :decimal 位小数。",
"declined": "这个值必须被拒绝。",
"declined_if": "当 :other 为 :value 时此值必须是拒绝的。",
"different": "必须和 :other 不同。",
"digits": "必须是 :digits 位的数字。",
"digits_between": "必须是介于 :min 和 :max 位的数字。",
"dimensions": "图片尺寸不正确。",
"distinct": "已经存在。",
"doesnt_end_with": "不能以它们结尾: :values.",
"doesnt_start_with": "不能以它们开头: :values.",
"email": "不是一个合法的邮箱。",
"ends_with": "必须以 :values 为结尾。",
"enum": "选择的值无效。",
"exists": "不存在。",
"file": "必须是文件。",
"filled": "不能为空。",
"gt.array": "必须多于 :value 个元素。",
"gt.file": "必须大于 :value KB。",
"gt.numeric": "必须大于 :value。",
"gt.string": "必须多于 :value 个字符。",
"gte.array": "必须多于或等于 :value 个元素。",
"gte.file": "必须大于或等于 :value KB。",
"gte.numeric": "必须大于或等于 :value。",
"gte.string": "必须多于或等于 :value 个字符。",
"image": "必须是图片。",
"in": "选项无效。",
"in_array": "必须在 :other 中。",
"integer": "必须是整数。",
"ip": "必须是有效的 IP 地址。",
"ipv4": "必须是有效的 IPv4 地址。",
"ipv6": "必须是有效的 IPv6 地址。",
"json": "必须是正确的 JSON 格式。",
"lowercase": "必须小写。",
"lt.array": "必须少于 :value 个元素。",
"lt.file": "必须小于 :value KB。",
"lt.numeric": "必须小于 :value。",
"lt.string": "必须少于 :value 个字符。",
"lte.array": "必须少于或等于 :value 个元素。",
"lte.file": "必须小于或等于 :value KB。",
"lte.numeric": "必须小于或等于 :value。",
"lte.string": "必须少于或等于 :value 个字符。",
"mac_address": "必须是有效的 MAC 地址。",
"max.array": "最多只有 :max 个单元。",
"max.file": "不能大于 :max KB。",
"max.numeric": "不能大于 :max。",
"max.string": "不能大于 :max 个字符。",
"max_digits": "不能超过 :max 位数.",
"mimes": "必须是一个 :values 类型的文件。",
"mimetypes": "必须是一个 :values 类型的文件。",
"min.array": "至少有 :min 个单元。",
"min.file": "大小不能小于 :min KB。",
"min.numeric": "必须大于等于 :min。",
"min.string": "至少为 :min 个字符。",
"min_digits": "至少有 :min 位数。",
"missing": "该字段必须缺失。",
"missing_if": "当 :other 为 :value 时,此字段必须缺失。",
"missing_unless": "除非 :other 为 :value否则此字段必须缺失。",
"missing_with": "当存在 :values 时,必须缺少此字段。",
"missing_with_all": "当存在 :values 时,必须缺少此字段。",
"multiple_of": "必须是 :value 中的多个值。",
"not_in": "选项无效。",
"not_regex": "格式错误。",
"numeric": "必须是一个数字。",
"password.letters": "必须至少包含一个字母。",
"password.mixed": "必须至少包含一个大写字母和一个小写字母。",
"password.numbers": "必须包含至少一个数字。",
"password.symbols": "必须包含至少一个符号。",
"password.uncompromised": "给定字段已出现在数据泄漏中。请选择不同的字段。",
"present": "必须存在。",
"prohibited": "禁止此字段。",
"prohibited_if": ":Other 为 :value 时禁止此字段。",
"prohibited_unless": "除非 :other 在 :values 中,否则禁止此字段。",
"prohibits": "此字段禁止 :other 出现。",
"regex": "格式不正确。",
"relatable": "此字段可能与此资源不相关联。",
"required": "不能为空。",
"required_array_keys": "必须至少包含指定的键::values.",
"required_if": "当 :other 为 :value 时不能为空。",
"required_if_accepted": "当 :other 存在时不能为空",
"required_unless": "当 :other 不为 :values 时不能为空。",
"required_with": "当 :values 存在时不能为空。",
"required_with_all": "当 :values 存在时不能为空。",
"required_without": "当 :values 不存在时不能为空。",
"required_without_all": "当 :values 都不存在时不能为空。",
"same": "必须和 :other 相同。",
"size.array": "必须为 :size 个单元。",
"size.file": "大小必须为 :size KB。",
"size.numeric": "大小必须为 :size。",
"size.string": "必须是 :size 个字符。",
"starts_with": "必须以 :values 为开头。",
"string": "必须是一个字符串。",
"timezone": "必须是一个合法的时区值。",
"ulid": "该字段必须是有效的 ULID。",
"unique": "已经存在。",
"uploaded": "上传失败。",
"uppercase": "必须大写。",
"url": "格式不正确。",
"uuid": "必须是有效的 UUID。"
}

178
lang/zh_CN/php.json Normal file
View File

@ -0,0 +1,178 @@
{
"accepted": "您必须接受 :attribute。",
"accepted_if": "当 :other 为 :value 时,必须接受 :attribute。",
"active_url": ":Attribute 不是一个有效的网址。",
"after": ":Attribute 必须要晚于 :date。",
"after_or_equal": ":Attribute 必须要等于 :date 或更晚。",
"alpha": ":Attribute 只能由字母组成。",
"alpha_dash": ":Attribute 只能由字母、数字、短划线(-)和下划线(_)组成。",
"alpha_num": ":Attribute 只能由字母和数字组成。",
"are_you_sure_you_want_to_delete_member": "您确定要删除该团队成员吗?",
"are_you_sure_you_want_to_delete_team": "您确定要删除该团队吗?",
"are_you_sure_you_want_to_leave_team": "您确定要离开这个团队吗?",
"array": ":Attribute 必须是一个数组。",
"ascii": ":Attribute 必须仅包含单字节字母数字字符和符号。",
"attached": "这个 :attribute 已经连接。",
"attributes.team": "团队",
"before": ":Attribute 必须要早于 :date。",
"before_or_equal": ":Attribute 必须要等于 :date 或更早。",
"between.array": ":Attribute 必须只有 :min - :max 个单元。",
"between.file": ":Attribute 必须介于 :min - :max KB 之间。",
"between.numeric": ":Attribute 必须介于 :min - :max 之间。",
"between.string": ":Attribute 必须介于 :min - :max 个字符之间。",
"boolean": ":Attribute 必须为布尔值。",
"confirmed": ":Attribute 两次输入不一致。",
"country": ":Attribute 字段不是有效的国家/地区。",
"create_team": "创建团队",
"current_password": "密码错误。",
"current_teams": "当前团队",
"date": ":Attribute 不是一个有效的日期。",
"date_equals": ":Attribute 必须要等于 :date。",
"date_format": ":Attribute 的格式必须为 :format。",
"decimal": ":Attribute 必须有 :decimal 位小数。",
"declined": ":Attribute 必须是拒绝的。",
"declined_if": "当 :other 为 :value 时字段 :attribute 必须是拒绝的。",
"delete_team": "删除团队",
"different": ":Attribute 和 :other 必须不同。",
"digits": ":Attribute 必须是 :digits 位数字。",
"digits_between": ":Attribute 必须是介于 :min 和 :max 位的数字。",
"dimensions": ":Attribute 图片尺寸不正确。",
"distinct": ":Attribute 已经存在。",
"doesnt_end_with": ":Attribute 不能以以下之一结尾: :values。",
"doesnt_start_with": ":Attribute 不能以下列之一开头: :values。",
"edit_team_member": "编辑团队成员",
"email": ":Attribute 不是一个合法的邮箱。",
"ends_with": ":Attribute 必须以 :values 为结尾。",
"enum": ":Attribute 值不正确。",
"exists": ":Attribute 不存在。",
"failed": "用户名或密码错误。",
"file": ":Attribute 必须是文件。",
"filled": ":Attribute 不能为空。",
"gt.array": ":Attribute 必须多于 :value 个元素。",
"gt.file": ":Attribute 必须大于 :value KB。",
"gt.numeric": ":Attribute 必须大于 :value。",
"gt.string": ":Attribute 必须多于 :value 个字符。",
"gte.array": ":Attribute 必须多于或等于 :value 个元素。",
"gte.file": ":Attribute 必须大于或等于 :value KB。",
"gte.numeric": ":Attribute 必须大于或等于 :value。",
"gte.string": ":Attribute 必须多于或等于 :value 个字符。",
"if_you_delete_team_all_data_will_be_deleted": "如果您选择删除团队,所有数据将被永久删除。",
"image": ":Attribute 必须是图片。",
"in": "已选的属性 :attribute 无效。",
"in_array": ":Attribute 必须在 :other 中。",
"integer": ":Attribute 必须是整数。",
"ip": ":Attribute 必须是有效的 IP 地址。",
"ipv4": ":Attribute 必须是有效的 IPv4 地址。",
"ipv6": ":Attribute 必须是有效的 IPv6 地址。",
"json": ":Attribute 必须是正确的 JSON 格式。",
"leave_team": "离开团队",
"looks_like_you_are_not_part_of_team": "看起来你不属于任何团队!",
"lowercase": ":Attribute 必须小写。",
"lt.array": ":Attribute 必须少于 :value 个元素。",
"lt.file": ":Attribute 必须小于 :value KB。",
"lt.numeric": ":Attribute 必须小于 :value。",
"lt.string": ":Attribute 必须少于 :value 个字符。",
"lte.array": ":Attribute 必须少于或等于 :value 个元素。",
"lte.file": ":Attribute 必须小于或等于 :value KB。",
"lte.numeric": ":Attribute 必须小于或等于 :value。",
"lte.string": ":Attribute 必须少于或等于 :value 个字符。",
"mac_address": ":Attribute 必须是一个有效的 MAC 地址。",
"max.array": ":Attribute 最多只有 :max 个单元。",
"max.file": ":Attribute 不能大于 :max KB。",
"max.numeric": ":Attribute 不能大于 :max。",
"max.string": ":Attribute 不能大于 :max 个字符。",
"max_digits": ":Attribute 不能超过 :max 位数。",
"member": "成员",
"mimes": ":Attribute 必须是一个 :values 类型的文件。",
"mimetypes": ":Attribute 必须是一个 :values 类型的文件。",
"min.array": ":Attribute 至少有 :min 个单元。",
"min.file": ":Attribute 大小不能小于 :min KB。",
"min.numeric": ":Attribute 必须大于等于 :min。",
"min.string": ":Attribute 至少为 :min 个字符。",
"min_digits": ":Attribute 必须至少有 :min 位数。",
"missing": "必须缺少 :attribute 字段。",
"missing_if": "当 :other 为 :value 时,必须缺少 :attribute 字段。",
"missing_unless": "必须缺少 :attribute 字段,除非 :other 是 :value。",
"missing_with": "存在 :values 时,必须缺少 :attribute 字段。",
"missing_with_all": "存在 :values 时,必须缺少 :attribute 字段。",
"multiple_of": ":Attribute 必须是 :value 中的多个值。",
"next": "下一页 &raquo;",
"not_eligible_based_on_current_members_teams": "根据您当前的团队/团队成员数量,您不符合此计划的资格。",
"not_in": "已选的属性 :attribute 非法。",
"not_regex": ":Attribute 的格式错误。",
"numeric": ":Attribute 必须是一个数字。",
"password": "密码错误",
"password.letters": ":Attribute 必须至少包含一个字母。",
"password.mixed": ":Attribute 必须至少包含一个大写字母和一个小写字母。",
"password.numbers": ":Attribute 必须至少包含一个数字。",
"password.symbols": ":Attribute 必须至少包含一个符号。",
"password.uncompromised": "给定的 :attribute 出现在数据泄漏中。请选择不同的 :attribute。",
"plan_allows_no_more_teams": "您当前的计划不允许您创建更多团队",
"please_upgrade_to_add_more_members": "请升级您的订阅以添加更多团队成员。",
"please_upgrade_to_create_more_teams": "请升级您的订阅以创建更多团队。",
"present": ":Attribute 必须存在。",
"previous": "&laquo; 上一页",
"prohibited": ":Attribute 字段被禁止。",
"prohibited_if": "当 :other 为 :value 时,禁止 :attribute 字段。",
"prohibited_unless": ":Attribute 字段被禁止,除非 :other 位于 :values 中。",
"prohibits": ":Attribute 字段禁止出现 :other。",
"regex": ":Attribute 格式不正确。",
"relatable": "此 :attribute 可能与此资源不相关联。",
"remove_team_member": "删除团队成员",
"required": ":Attribute 不能为空。",
"required_array_keys": ":Attribute 至少包含指定的键::values.",
"required_if": "当 :other 为 :value 时 :attribute 不能为空。",
"required_if_accepted": "当 :other 存在时,:attribute 不能为空。",
"required_unless": "当 :other 不为 :values 时 :attribute 不能为空。",
"required_with": "当 :values 存在时 :attribute 不能为空。",
"required_with_all": "当 :values 存在时 :attribute 不能为空。",
"required_without": "当 :values 不存在时 :attribute 不能为空。",
"required_without_all": "当 :values 都不存在时 :attribute 不能为空。",
"reset": "密码重置成功!",
"same": ":Attribute 和 :other 必须相同。",
"sent": "密码重置邮件已发送!",
"size.array": ":Attribute 必须为 :size 个单元。",
"size.file": ":Attribute 大小必须为 :size KB。",
"size.numeric": ":Attribute 大小必须为 :size。",
"size.string": ":Attribute 必须是 :size 个字符。",
"slug_input_explanation": "此 slug 用于在 URL 中识别您的团队。",
"starts_with": ":Attribute 必须以 :values 为开头。",
"state": "此状态对指定国家/地区无效。",
"string": ":Attribute 必须是一个字符串。",
"team": "团队",
"team_billing": "团队计费",
"team_members": "团队成员",
"team_name": "队名",
"team_name_was_updated": "您的团队名称已更新!",
"team_photo": "团队合影",
"team_profile": "团队简介",
"team_settings": "团队设置",
"team_slug": "鼻涕虫队",
"team_trial": "团队试训",
"team_trial_will_expire_on": "该团队的试用期将在 :date 时到期。",
"teams": "团队",
"teams_currently_trialing": "目前正在试训的球队",
"throttle": "您尝试的登录次数过多,请 :seconds 秒后再试。",
"throttled": "请稍候再试。",
"timezone": ":Attribute 必须是一个合法的时区值。",
"token": "密码重置令牌无效。",
"ulid": ":Attribute 必须是有效的 ULID。",
"unique": ":Attribute 已经存在。",
"update_team_name": "更新团队名称",
"uploaded": ":Attribute 上传失败。",
"uppercase": ":Attribute 必须大写",
"url": ":Attribute 格式不正确。",
"user": "找不到该邮箱对应的用户。",
"user_already_invited_to_team": "该用户已被邀请加入团队。",
"user_already_on_team": "该用户已经在团队中。",
"user_doesnt_belong_to_team": "用户不属于给定的团队。",
"user_invited_to_join_team": ":UserName 邀请您加入他们的团队!",
"uuid": ":Attribute 必须是有效的 UUID。",
"vat_id": "此增值税识别号无效。",
"view_all_teams": "查看所有团队",
"we_found_invitation_to_team": "我们找到了您对 :teamName 团队的邀请!",
"wheres_your_team": "你的团队在哪里?",
"you_have_been_invited_to_join_team": "您已被邀请加入 :teamName 团队!",
"you_have_x_invitations_remaining": "您目前还剩 :count 个邀请。",
"you_have_x_teams_remaining": "您目前还剩下 :teamCount 个团队。"
}

View File

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
return [
'accepted' => '您必须接受 :attribute。',
'accepted_if' => '当 :other 为 :value 时,必须接受 :attribute。',
@ -10,6 +12,7 @@
'alpha_dash' => ':Attribute 只能由字母、数字、短划线(-)和下划线(_)组成。',
'alpha_num' => ':Attribute 只能由字母和数字组成。',
'array' => ':Attribute 必须是一个数组。',
'ascii' => ':Attribute 必须仅包含单字节字母数字字符和符号。',
'before' => ':Attribute 必须要早于 :date。',
'before_or_equal' => ':Attribute 必须要等于 :date 或更早。',
'between' => [
@ -24,6 +27,7 @@
'date' => ':Attribute 不是一个有效的日期。',
'date_equals' => ':Attribute 必须要等于 :date。',
'date_format' => ':Attribute 的格式必须为 :format。',
'decimal' => ':Attribute 必须有 :decimal 位小数。',
'declined' => ':Attribute 必须是拒绝的。',
'declined_if' => '当 :other 为 :value 时字段 :attribute 必须是拒绝的。',
'different' => ':Attribute 和 :other 必须不同。',
@ -59,6 +63,7 @@
'ipv4' => ':Attribute 必须是有效的 IPv4 地址。',
'ipv6' => ':Attribute 必须是有效的 IPv6 地址。',
'json' => ':Attribute 必须是正确的 JSON 格式。',
'lowercase' => ':Attribute 必须小写。',
'lt' => [
'array' => ':Attribute 必须少于 :value 个元素。',
'file' => ':Attribute 必须小于 :value KB。',
@ -88,6 +93,11 @@
'string' => ':Attribute 至少为 :min 个字符。',
],
'min_digits' => ':Attribute 必须至少有 :min 位数。',
'missing' => '必须缺少 :attribute 字段。',
'missing_if' => '当 :other 为 :value 时,必须缺少 :attribute 字段。',
'missing_unless' => '必须缺少 :attribute 字段,除非 :other 是 :value。',
'missing_with' => '存在 :values 时,必须缺少 :attribute 字段。',
'missing_with_all' => '存在 :values 时,必须缺少 :attribute 字段。',
'multiple_of' => ':Attribute 必须是 :value 中的多个值。',
'not_in' => '已选的属性 :attribute 非法。',
'not_regex' => ':Attribute 的格式错误。',
@ -124,8 +134,10 @@
'starts_with' => ':Attribute 必须以 :values 为开头。',
'string' => ':Attribute 必须是一个字符串。',
'timezone' => ':Attribute 必须是一个合法的时区值。',
'ulid' => ':Attribute 必须是有效的 ULID。',
'unique' => ':Attribute 已经存在。',
'uploaded' => ':Attribute 上传失败。',
'uppercase' => ':Attribute 必须大写',
'url' => ':Attribute 格式不正确。',
'uuid' => ':Attribute 必须是有效的 UUID。',
'attributes' => [