-
Notifications
You must be signed in to change notification settings - Fork 22
[Feature] 新增异常页面 #176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
[Feature] 新增异常页面 #176
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -294,6 +294,15 @@ | |||||
| "exception.result.permissions.404": "Check the network connection and try to refresh the page.", | ||||||
| "menu.exception.500": "500", | ||||||
| "exception.result.500.description": "Internal server error", | ||||||
| "menu.exception.system-busy": "System Busy", | ||||||
| "exception.result.systemBusy.description": "The system is busy. Please try again later", | ||||||
| "exception.result.permissions.system-busy": "There are too many people. Just wait a little longer", | ||||||
| "menu.exception.load-failure": "Loading failed", | ||||||
| "exception.result.load-failure.description": "The system is busy. Please try again later", | ||||||
| "exception.result.permissions.load-failure": "The system is busy. Try again later", | ||||||
| "menu.exception.no-search-results": "No Sarch Results", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo: "Sarch" should be "Search". The menu label has a typo that will be visible to users. Fix the typo- "menu.exception.no-search-results": "No Sarch Results",
+ "menu.exception.no-search-results": "No Search Results",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| "exception.result.no-search-results.description": "There are no search results yet. Please try again later", | ||||||
| "exception.result.permissions.no-search-results": "I can't find any results for now. I'll try again later", | ||||||
| "exception.result.500.back": "Back", | ||||||
| "exception.result.permissions.500": "Check the network connection and try to refresh the page.", | ||||||
| "menu.user.info": "User Center", | ||||||
|
|
@@ -937,6 +946,15 @@ | |||||
| "exception.result.permissions.404": "请查看网络连接情况,尝试刷新页面", | ||||||
| "menu.exception.500": "500", | ||||||
| "exception.result.500.description": "抱歉,服务器出了点问题~", | ||||||
| "menu.exception.system-busy": "系统繁忙", | ||||||
| "exception.result.systemBusy.d escription": "系统繁忙,请稍后再试", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Malformed key will cause missing translation. The key Fix the malformed key- "exception.result.systemBusy.d escription": "系统繁忙,请稍后再试",
+ "exception.result.systemBusy.description": "系统繁忙,请稍后再试",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| "exception.result.permissions.system-busy": "人太多啦,再等等", | ||||||
| "menu.exception.load-failure": "加载失败", | ||||||
| "exception.result.load-failure.description": "加载失败,请稍后再试", | ||||||
| "exception.result.permissions.load-failure": "系统繁忙,稍后再试", | ||||||
| "menu.exception.no-search-results": "暂无搜索结果", | ||||||
| "exception.result.no-search-results.description": "暂无搜索结果,请稍后再试", | ||||||
| "exception.result.permissions.no-search-results": "暂时搜索不到结果,稍后再试", | ||||||
| "exception.result.500.back": "返回", | ||||||
| "exception.result.permissions.500": "请查看网络连接情况,尝试刷新页面", | ||||||
| "menu.user.info": "用户中心", | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo: "Sarch" should be "Search"
Same typo as in
template/tinyvue/src/locales.json.Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents