mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Various fixes and cleanup
This commit is contained in:
@@ -103,73 +103,73 @@ return [
|
||||
*/
|
||||
|
||||
|
||||
'between.numeric' => ':attribute 必須介於 :min 和 :max 之間。',
|
||||
'between.file' => ':attribute 必須介於 :min kB 到 :max kB 之間。',
|
||||
'between.string' => ':attribute 必須介於 :min 到 :max 個字元之間。',
|
||||
'between.array' => ':attribute 必須介於 :min 到 :max 個項目之間。',
|
||||
'boolean' => ':attribute 欄位必須為 true 或 false。',
|
||||
'confirmed' => ':attribute 的確認並不相符。',
|
||||
'date' => ':attribute 不是一個有效的日期。',
|
||||
'date_format' => ':attribute 不符合 :format 格式。',
|
||||
'different' => ':attribute 和 :other 不能相同。',
|
||||
'digits' => ':attribute 必須是 :digits 位數字。',
|
||||
'digits_between' => ':attribute 必須介於 :min 和 :max 位數字之間。',
|
||||
'email' => ':attribute 必須是一個有效的電子郵件地址。',
|
||||
'filled' => ':attribute 欄位是必填的。',
|
||||
'exists' => '所選的 :attribute 無效。',
|
||||
'image' => ':attribute 必須是圖片。',
|
||||
'in' => '所選的 :attribute 無效。',
|
||||
'integer' => ':attribute 必須是整數。',
|
||||
'ip' => ':attribute 必須是一個有效的 IP 位址。',
|
||||
'json' => ':attribute 必須是一個有效的 JSON 字串。',
|
||||
'max.numeric' => ':attribute 不能大於 :max。',
|
||||
'max.file' => ':attribute 不能大於 :max kB。',
|
||||
'max.string' => ':attribute 不能大於 :max 個字元。',
|
||||
'max.array' => ':attribute 不能多於 :max 個項目。',
|
||||
'mimes' => ':attribute 的檔案類型必須是 :values 。',
|
||||
'min.numeric' => ':attribute 至少需要 :min。',
|
||||
'lte.numeric' => ':attribute 必須小於或等於 :value。',
|
||||
'min.file' => ':attribute 必須至少為 :min kB。',
|
||||
'min.string' => ':attribute 最少需要有 :min 個字元。',
|
||||
'min.array' => ':attribute 至少需要有 :min 個項目。',
|
||||
'not_in' => '所選的 :attribute 無效。',
|
||||
'numeric' => ':attribute 必須是數字。',
|
||||
'numeric_native' => '本地金額必須是數字。',
|
||||
'numeric_destination' => '目標金額必須是數字。',
|
||||
'numeric_source' => '來源金額必須是數字。',
|
||||
'regex' => ':attribute 格式無效。',
|
||||
'required' => ':attribute 欄位是必填的。',
|
||||
'required_if' => '當 :other 為 :value 時,欄位 :attribute 是必填的。',
|
||||
'required_unless' => '除非 :other 為 :values,否則欄位 :attribute 是必填的。',
|
||||
'required_with' => '當 :values 存在時,欄位 :attribute 是必填的。',
|
||||
'required_with_all' => '當 :values 存在時,欄位 :attribute 是必填的。',
|
||||
'required_without' => '當 :values 不存在時,欄位 :attribute 是必填的。',
|
||||
'required_without_all' => '當沒有任何 :values 存在時,欄位 :attribute 是必填的。',
|
||||
'same' => ':attribute 和 :other 必須相符。',
|
||||
'size.numeric' => ':attribute 必須是 :size。',
|
||||
'amount_min_over_max' => '最小金額不能大於最大金額。',
|
||||
'size.file' => ':attribute 必須為 :size kB。',
|
||||
'size.string' => ':attribute 必須為 :size 個字元。',
|
||||
'size.array' => ':attribute 必須包含 :size 個項目。',
|
||||
'unique' => ':attribute 已被使用。',
|
||||
'string' => ':attribute 必須是字串。',
|
||||
'url' => ':attribute 格式無效。',
|
||||
'timezone' => ':attribute 必須是有效的時區。',
|
||||
'2fa_code' => '欄位 :attribute 無效。',
|
||||
'dimensions' => ':attribute 圖片尺寸無效。',
|
||||
'distinct' => '欄位 :attribute 有重複值。',
|
||||
'file' => ':attribute 必須是檔案。',
|
||||
'in_array' => '欄位 :attribute 不存在於 :other。',
|
||||
'present' => ':attribute 欄位必須存在。',
|
||||
'amount_zero' => '總金額不能為零。',
|
||||
'current_target_amount' => 'The current amount must be less than the target amount.',
|
||||
'unique_piggy_bank_for_user' => '小豬撲滿的名稱必須是獨一無二的。',
|
||||
'unique_object_group' => 'The group name must be unique',
|
||||
'starts_with' => 'The value must start with :values.',
|
||||
'unique_webhook' => 'You already have a webhook with this combination of URL, trigger, response and delivery.',
|
||||
'unique_existing_webhook' => 'You already have another webhook with this combination of URL, trigger, response and delivery.',
|
||||
'same_account_type' => 'Both accounts must be of the same account type',
|
||||
'same_account_currency' => 'Both accounts must have the same currency setting',
|
||||
'between.numeric' => ':attribute 必須介於 :min 和 :max 之間。',
|
||||
'between.file' => ':attribute 必須介於 :min kB 到 :max kB 之間。',
|
||||
'between.string' => ':attribute 必須介於 :min 到 :max 個字元之間。',
|
||||
'between.array' => ':attribute 必須介於 :min 到 :max 個項目之間。',
|
||||
'boolean' => ':attribute 欄位必須為 true 或 false。',
|
||||
'confirmed' => ':attribute 的確認並不相符。',
|
||||
'date' => ':attribute 不是一個有效的日期。',
|
||||
'date_format' => ':attribute 不符合 :format 格式。',
|
||||
'different' => ':attribute 和 :other 不能相同。',
|
||||
'digits' => ':attribute 必須是 :digits 位數字。',
|
||||
'digits_between' => ':attribute 必須介於 :min 和 :max 位數字之間。',
|
||||
'email' => ':attribute 必須是一個有效的電子郵件地址。',
|
||||
'filled' => ':attribute 欄位是必填的。',
|
||||
'exists' => '所選的 :attribute 無效。',
|
||||
'image' => ':attribute 必須是圖片。',
|
||||
'in' => '所選的 :attribute 無效。',
|
||||
'integer' => ':attribute 必須是整數。',
|
||||
'ip' => ':attribute 必須是一個有效的 IP 位址。',
|
||||
'json' => ':attribute 必須是一個有效的 JSON 字串。',
|
||||
'max.numeric' => ':attribute 不能大於 :max。',
|
||||
'max.file' => ':attribute 不能大於 :max kB。',
|
||||
'max.string' => ':attribute 不能大於 :max 個字元。',
|
||||
'max.array' => ':attribute 不能多於 :max 個項目。',
|
||||
'mimes' => ':attribute 的檔案類型必須是 :values 。',
|
||||
'min.numeric' => ':attribute 至少需要 :min。',
|
||||
'lte.numeric' => ':attribute 必須小於或等於 :value。',
|
||||
'min.file' => ':attribute 必須至少為 :min kB。',
|
||||
'min.string' => ':attribute 最少需要有 :min 個字元。',
|
||||
'min.array' => ':attribute 至少需要有 :min 個項目。',
|
||||
'not_in' => '所選的 :attribute 無效。',
|
||||
'numeric' => ':attribute 必須是數字。',
|
||||
'numeric_native' => '本地金額必須是數字。',
|
||||
'numeric_destination' => '目標金額必須是數字。',
|
||||
'numeric_source' => '來源金額必須是數字。',
|
||||
'regex' => ':attribute 格式無效。',
|
||||
'required' => ':attribute 欄位是必填的。',
|
||||
'required_if' => '當 :other 為 :value 時,欄位 :attribute 是必填的。',
|
||||
'required_unless' => '除非 :other 為 :values,否則欄位 :attribute 是必填的。',
|
||||
'required_with' => '當 :values 存在時,欄位 :attribute 是必填的。',
|
||||
'required_with_all' => '當 :values 存在時,欄位 :attribute 是必填的。',
|
||||
'required_without' => '當 :values 不存在時,欄位 :attribute 是必填的。',
|
||||
'required_without_all' => '當沒有任何 :values 存在時,欄位 :attribute 是必填的。',
|
||||
'same' => ':attribute 和 :other 必須相符。',
|
||||
'size.numeric' => ':attribute 必須是 :size。',
|
||||
'amount_min_over_max' => '最小金額不能大於最大金額。',
|
||||
'size.file' => ':attribute 必須為 :size kB。',
|
||||
'size.string' => ':attribute 必須為 :size 個字元。',
|
||||
'size.array' => ':attribute 必須包含 :size 個項目。',
|
||||
'unique' => ':attribute 已被使用。',
|
||||
'string' => ':attribute 必須是字串。',
|
||||
'url' => ':attribute 格式無效。',
|
||||
'timezone' => ':attribute 必須是有效的時區。',
|
||||
'2fa_code' => '欄位 :attribute 無效。',
|
||||
'dimensions' => ':attribute 圖片尺寸無效。',
|
||||
'distinct' => '欄位 :attribute 有重複值。',
|
||||
'file' => ':attribute 必須是檔案。',
|
||||
'in_array' => '欄位 :attribute 不存在於 :other。',
|
||||
'present' => ':attribute 欄位必須存在。',
|
||||
'amount_zero' => '總金額不能為零。',
|
||||
'current_target_amount' => 'The current amount must be less than the target amount.',
|
||||
'unique_piggy_bank_for_user' => '小豬撲滿的名稱必須是獨一無二的。',
|
||||
'unique_object_group' => 'The group name must be unique',
|
||||
'starts_with' => 'The value must start with :values.',
|
||||
'unique_webhook' => 'You already have a webhook with this combination of URL, trigger, response and delivery.',
|
||||
'unique_existing_webhook' => 'You already have another webhook with this combination of URL, trigger, response and delivery.',
|
||||
'same_account_type' => 'Both accounts must be of the same account type',
|
||||
'same_account_currency' => 'Both accounts must have the same currency setting',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
@@ -280,6 +280,9 @@ return [
|
||||
'amount_required_for_auto_budget' => 'The amount is required.',
|
||||
'auto_budget_amount_positive' => 'The amount must be more than zero.',
|
||||
'auto_budget_period_mandatory' => 'The auto budget period is a mandatory field.',
|
||||
|
||||
// no access to administration:
|
||||
'no_access_user_group' => 'You do not have the correct access rights for this administration.',
|
||||
];
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user