-
Notifications
You must be signed in to change notification settings - Fork 61.1k
docs: add links to other language versions of README #6518
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: main
Are you sure you want to change the base?
Conversation
Added language selection links to the README for easier access to translated versions: German, Spanish, French, Japanese, Korean, Portuguese, and Russian.
@dowithless is attempting to deploy a commit to the NextChat Team on Vercel. A member of the Team first needs to authorize it. |
WalkthroughThe README.md file was updated to include direct links to additional language versions hosted externally, expanding from English and Simplified Chinese to also cover German, Spanish, French, Japanese, Korean, Portuguese, and Russian. A comment was added to remind maintainers about keeping these links for automatic translation updates. Changes
Possibly related PRs
Suggested reviewers
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (2)
README.md (2)
15-15
: ✏️ Nitpick: Capitalize French language name
For consistency with other entries, change[français]
to[Français]
.- [français](https://www.readme-i18n.com/ChatGPTNextWeb/NextChat?lang=fr) / + [Français](https://www.readme-i18n.com/ChatGPTNextWeb/NextChat?lang=fr) /
12-12
: 💡 Optional: Link “English” to the README
Consider turning “English” into an explicit link to./README.md
for symmetry with other entries.- English / [简体中文](./README_CN.md) / + [English](./README.md) / [简体中文](./README_CN.md) /
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
README.md
(1 hunks)
🔇 Additional comments (1)
README.md (1)
12-20
:✅ Verification successful
✅ Approve: Language selection links added
The new block cleanly lists all requested translations. To ensure all external pages are reachable, please verify their HTTP status codes.
🏁 Script executed:
#!/bin/bash # Verify that each language link returns HTTP 200 urls=( "https://www.readme-i18n.com/ChatGPTNextWeb/NextChat?lang=de" "https://www.readme-i18n.com/ChatGPTNextWeb/NextChat?lang=es" "https://www.readme-i18n.com/ChatGPTNextWeb/NextChat?lang=fr" "https://www.readme-i18n.com/ChatGPTNextWeb/NextChat?lang=ja" "https://www.readme-i18n.com/ChatGPTNextWeb/NextChat?lang=ko" "https://www.readme-i18n.com/ChatGPTNextWeb/NextChat?lang=pt" "https://www.readme-i18n.com/ChatGPTNextWeb/NextChat?lang=ru" ) for url in "${urls[@]}"; do status=$(curl -s -o /dev/null -w '%{http_code}' "$url") echo "$url -> $status" if [[ "$status" -ne 200 ]]; then echo "ERROR: $url returned HTTP $status" exit 1 fi doneLength of output: 2584
✅ Approved: Language selection links added and verified reachable
All requested translations have been included, and each external link was confirmed to return HTTP 200. Great work!
Added language selection links to the README for easier access to translated versions: German, Spanish, French, Japanese, Korean, Portuguese, and Russian.
The updated links can be previewed in my forked repository: https://github.com/dowithless/NextChat/tree/patch-1
💻 变更类型 | Change Type
🔀 变更说明 | Description of Change
📝 补充信息 | Additional Information
Summary by CodeRabbit