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.
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
Add Route Map #99
base: main
Are you sure you want to change the base?
Add Route Map #99
Changes from all commits
5f9c192
676b339
a2b3d1d
aebd247
a137918
a7ba8e7
7add724
e4bdb8c
2cb6457
933d808
fb2669f
e6aa354
28280f7
4011c60
20635cd
01bb219
8abb935
e8faad7
d6baa0e
1dff890
06801e7
597d8ed
20a707b
ac00ac4
f0d60eb
cf87f1e
2b41f2d
46b01b7
442c041
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
💡 Verification agent
🧩 Analysis chain
Translation consistency validation needed.
The addition of "dorm": "Dorm" seems appropriate, but verify that it's used consistently with the existing "residence": "Dormitory" (line 24) and "dest_dorm": "Dormitory" (line 35). Having both "Dorm" and "Dormitory" in different places might confuse users.
🏁 Script executed:
Length of output: 238
Translation Consistency Check: Please Verify Manually
src/app/components/lang/lang.en.json
) now uses"dorm": "Dorm"
(line 25), while similar keys use"Dormitory"
(e.g.,"residence": "Dormitory"
on line 24 and"dest_dorm": "Dormitory"
on line 35). This inconsistency might confuse users.tsx
). The script above has been revised to search all files in the directory.🏁 Script executed:
Length of output: 1336
Translation Consistency: Unify "Dorm" vs. "Dormitory" Terminology
src/app/components/lang/lang.en.json
, the key"dorm"
is mapped to"Dorm"
(line 25) while"residence"
(line 24) and"dest_dorm"
(line 35) use"Dormitory"
.RouteMap.tsx
and others reference these keys, which may lead to user confusion."Dorm"
is intentional. If not, update the translations to consistently use"Dormitory"
(or choose one option) throughout the codebase.