fix: auto-correct translated URL paths (example of validation script)#16940
Closed
minimalsm wants to merge 1 commit into
Closed
fix: auto-correct translated URL paths (example of validation script)#16940minimalsm wants to merge 1 commit into
minimalsm wants to merge 1 commit into
Conversation
Applied automatic fixes using `pnpm validate-urls --fix`. Fixes include: - Case sensitivity: /Developers/Docs/... → /developers/docs/... - Case sensitivity: /Staking/pools → /staking/pools - Translated paths: Various localized URL paths corrected Files fixed: - de: scaling docs, standards docs, staking products - es: smart contracts deploying, developers guide - it: javascript programming docs - ja: beacon chain, glossary - ms: defi, staking - nl: dencun roadmap This PR demonstrates the automated URL validation in action. See PR #16939 for the validation tool. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
4 tasks
Member
|
Happy to merge corrections if we isolate the fixes and keep the script to a separate discussion |
Contributor
|
This issue is stale because it has been open 30 days with no activity. |
Member
|
Closing out in lieu of latest intl-pipeline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR demonstrates the
pnpm validate-urls --fixcommand in action by automatically correcting URL path issues detected by the validation script from PR #16939.Fixes Applied
Case sensitivity issues (would cause 404s):
/Developers/Docs/Scaling/Optimistic-Rollups→/developers/docs/scaling/optimistic-rollups/Developers/Docs/Scaling/Zk-Rollups→/developers/docs/scaling/zk-rollups/Developers/Docs/Scaling/State-Channels→/developers/docs/scaling/state-channels/Developers/Docs/Scaling/Plasma→/developers/docs/scaling/plasma/Developers/Docs/Standards/Tokens/erc-721→/developers/docs/standards/tokens/erc-721/Developers/Docs/Standards/Tokens/erc-777→/developers/docs/standards/tokens/erc-777/Developers/Docs/Standards/Tokens/erc-1155→/developers/docs/standards/tokens/erc-1155/Staking/pools→/staking/poolsFiles Fixed
How This Was Generated
The script automatically corrected all URL paths with ≥70% confidence match.
Related