feat(i18n): Added internationalization support and common error message definitions

- Added message attribute files in Chinese, English, and Chinese simplified
- Error messages for paginated queries, result responses, and delete operations are defined
- Provide the basis for subsequent internationalization support and error handling
This commit is contained in:
gewuyou 2025-05-29 19:37:17 +08:00
parent 7b020fc6d4
commit 35a0f5eb32
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,5 @@
forgeboot.webmvc.dto.page_query.page_size.min=每页条数不得小于1页\!
forgeboot.webmvc.dto.page_query.current_page.min=当前页码不得小于1页\!
forgeboot.webmvc.dto.result.responseInfo.fail=失败
forgeboot.webmvc.dto.result.responseInfo.ok=成功
forgeboot.webmvc.dto.delete.ids.not_empty=请求删除的id列表不能为空\!

View File

@ -0,0 +1,5 @@
forgeboot.webmvc.dto.page_query.page_size.min=The number of entries per page shall not be less than 1 page\!
forgeboot.webmvc.dto.page_query.current_page.min=The current page number must not be less than 1 page\!
forgeboot.webmvc.dto.result.responseInfo.fail=failed
forgeboot.webmvc.dto.result.responseInfo.ok=success
forgeboot.webmvc.dto.delete.ids.not_empty=The list of Ids requested to be removed cannot be empty\!

View File

@ -0,0 +1,5 @@
forgeboot.webmvc.dto.page_query.page_size.min=每页条数不得小于1页\!
forgeboot.webmvc.dto.page_query.current_page.min=当前页码不得小于1页\!
forgeboot.webmvc.dto.result.responseInfo.fail=失败
forgeboot.webmvc.dto.result.responseInfo.ok=成功
forgeboot.webmvc.dto.delete.ids.not_empty=请求删除的id列表不能为空\!