Enhance language support and fix validation messages

- Added support for additional languages (Bengali, Portuguese, Russian, Urdu, Punjabi, German, Javanese, Korean, Vietnamese, Telugu, Marathi, Tamil, Turkish) in the application.
- Updated validation messages across multiple languages to correct formatting issues and improve clarity, including Arabic, English, Spanish, French, Hindi, Japanese, Norwegian, and Chinese.
- Removed obsolete Norwegian language files to streamline localization efforts.
- Improved the language selection interface in the form customization component.

These changes aim to enhance user experience by providing better language support and clearer validation feedback.
This commit is contained in:
Julien Nahum
2024-12-09 12:47:01 +01:00
parent 39b95f1683
commit 705c84dae4
57 changed files with 2207 additions and 530 deletions

View File

@@ -19,7 +19,7 @@ return [
],
'boolean' => ':attribute 必须为布尔值。',
'confirmed' => ':attribute 两次输入不一致。',
'date' => ':attribute 不是一有效的日期。',
'date' => ':attribute 不是一<EFBFBD><EFBFBD><EFBFBD>有效的日期。',
'date_equals' => ':attribute 必须等于 :date。',
'date_format' => ':attribute 的格式必须为 :format。',
'different' => ':attribute 和 :other 必须不同。',
@@ -95,7 +95,7 @@ return [
'same' => ':attribute 和 :other 必须相同。',
'size' => [
'numeric' => ':attribute 大小必须为 :size。',
'file' => ':attribute 大必须为 :size KB。',
'file' => ':attribute 大<EFBFBD><EFBFBD>必须为 :size KB。',
'string' => ':attribute 必须是 :size 个字符。',
'array' => ':attribute 必须为 :size 个单元。',
],
@@ -114,4 +114,6 @@ return [
],
'attributes' => [],
'invalid_json' => '输入无效。请修正后重试。',
];