-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
feat(Chess.com): rewrite and modularize #10344
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
Open
maximedeprince
wants to merge
10
commits into
PreMiD:main
Choose a base branch
from
maximedeprince:feat/Chess.com
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
16523a8
feat(Chess.com): Rewrite, Rename & Modularization
maximedeprince ec881f9
Update websites/C/Chess.com/sources/video.ts
maximedeprince 974792e
Update websites/C/Chess.com/presence.ts
maximedeprince 61c20fa
fix lint
maximedeprince f725077
fix presence
maximedeprince 6918fe9
Update presence.ts
maximedeprince 1f027ba
fix lint
maximedeprince b3311f1
Update Chess.com.json
maximedeprince 0b1c7a1
Merge branch 'main' into feat/Chess.com
maximedeprince 30f5098
Merge branch 'main' into feat/Chess.com
maximedeprince File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
|
Contributor
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. The Localization file should just be a dictionary of keys to message/description. There is no
Author
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. Fixed 👍 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,262 @@ | ||
| { | ||
| "chess.com.play": { | ||
| "message": "Playing", | ||
| "description": "General playing status" | ||
| }, | ||
| "chess.com.pause": { | ||
| "message": "Paused", | ||
| "description": "Paused status" | ||
| }, | ||
| "chess.com.browsing": { | ||
| "message": "Browsing", | ||
| "description": "Default status when browsing the site" | ||
| }, | ||
| "chess.com.menu": { | ||
| "message": "Menu", | ||
| "description": "General menu navigation" | ||
| }, | ||
| "chess.com.overview": { | ||
| "message": "Overview", | ||
| "description": "Viewing overview page" | ||
| }, | ||
| "chess.com.library": { | ||
| "message": "Library", | ||
| "description": "Browsing library section" | ||
| }, | ||
| "chess.com.vs_separator": { | ||
| "message": "vs", | ||
| "description": "Short versus separator" | ||
| }, | ||
| "chess.com.min": { | ||
| "message": "min", | ||
| "description": "Abbreviation for minutes" | ||
| }, | ||
| "chess.com.survival": { | ||
| "message": "Survival", | ||
| "description": "Survival game mode" | ||
| }, | ||
| "chess.com.home": { | ||
| "message": "Home Page", | ||
| "description": "Viewing the home page" | ||
| }, | ||
| "chess.com.computerVs": { | ||
| "message": "Playing against a bot", | ||
| "description": "Playing against computer" | ||
| }, | ||
| "chess.com.computerSelecting": { | ||
| "message": "Choosing the bot", | ||
| "description": "When on the bot selection screen" | ||
| }, | ||
| "chess.com.computerAi": { | ||
| "message": "Vs AI", | ||
| "description": "Fallback state when playing computer" | ||
| }, | ||
| "chess.com.computerName": { | ||
| "message": "Computer", | ||
| "description": "Name of the activity" | ||
| }, | ||
| "chess.com.computerWhite": { | ||
| "message": "Playing as White", | ||
| "description": "Playing as white pieces against computer" | ||
| }, | ||
| "chess.com.computerBlack": { | ||
| "message": "Playing as Black", | ||
| "description": "Playing as black pieces against computer" | ||
| }, | ||
| "chess.com.puzzleSolving": { | ||
| "message": "Solving Puzzles", | ||
| "description": "Doing rated puzzles" | ||
| }, | ||
| "chess.com.puzzleRush": { | ||
| "message": "Puzzle Rush", | ||
| "description": "Playing Puzzle Rush mode" | ||
| }, | ||
| "chess.com.puzzleBattle": { | ||
| "message": "Puzzle Battle", | ||
| "description": "Playing Puzzle Battle mode" | ||
| }, | ||
| "chess.com.puzzleTactics": { | ||
| "message": "Tactics", | ||
| "description": "Small image text for puzzles" | ||
| }, | ||
| "chess.com.puzzleScore": { | ||
| "message": "Score", | ||
| "description": "Current puzzle score" | ||
| }, | ||
| "chess.com.puzzleLevel": { | ||
| "message": "Level", | ||
| "description": "Current puzzle level" | ||
| }, | ||
| "chess.com.puzzleRating": { | ||
| "message": "Rating", | ||
| "description": "Puzzle rating" | ||
| }, | ||
| "chess.com.playOnline": { | ||
| "message": "Playing Online", | ||
| "description": "Generic status for online play" | ||
| }, | ||
| "chess.com.playDaily": { | ||
| "message": "Daily Chess", | ||
| "description": "Playing correspondence chess" | ||
| }, | ||
| "chess.com.playMatch": { | ||
| "message": "In Match", | ||
| "description": "State when playing but opponent unknown" | ||
| }, | ||
| "chess.com.playLive": { | ||
| "message": "Live", | ||
| "description": "Small image text for live chess" | ||
| }, | ||
| "chess.com.playLobby": { | ||
| "message": "In Lobby / Matching", | ||
| "description": "Waiting for a game" | ||
| }, | ||
| "chess.com.gameSearching": { | ||
| "message": "Searching", | ||
| "description": "Searching for an opponent" | ||
| }, | ||
| "chess.com.gameFinished": { | ||
| "message": "Game Finished", | ||
| "description": "Game has ended" | ||
| }, | ||
| "chess.com.gameOver": { | ||
| "message": "Game Over", | ||
| "description": "Game over status" | ||
| }, | ||
| "chess.com.gameReplay": { | ||
| "message": "Watching Replay", | ||
| "description": "Watching a game replay" | ||
| }, | ||
| "chess.com.gameSpectating": { | ||
| "message": "Spectating", | ||
| "description": "Spectating a live game" | ||
| }, | ||
| "chess.com.gameWaiting": { | ||
| "message": "Waiting...", | ||
| "description": "Waiting for game to start" | ||
| }, | ||
| "chess.com.gameProgress": { | ||
| "message": "Match in Progress", | ||
| "description": "Match currently ongoing" | ||
| }, | ||
| "chess.com.gameArchive": { | ||
| "message": "Master Game Archive", | ||
| "description": "Browsing master games archive" | ||
| }, | ||
| "chess.com.gameReview": { | ||
| "message": "Game Review", | ||
| "description": "Reviewing a completed game" | ||
| }, | ||
| "chess.com.mediaAnalysis": { | ||
| "message": "Analyzing a game", | ||
| "description": "Using the analysis board" | ||
| }, | ||
| "chess.com.mediaLearning": { | ||
| "message": "Learning", | ||
| "description": "General learning status" | ||
| }, | ||
| "chess.com.mediaLessons": { | ||
| "message": "Watching Lessons", | ||
| "description": "Watching a video lesson" | ||
| }, | ||
| "chess.com.mediaTv": { | ||
| "message": "Watching Chess TV", | ||
| "description": "Watching official broadcast" | ||
| }, | ||
| "chess.com.mediaVideo": { | ||
| "message": "Watching a video", | ||
| "description": "Watching a recorded video" | ||
| }, | ||
| "chess.com.videoBrowsing": { | ||
| "message": "Browsing Videos", | ||
| "description": "Looking through video library" | ||
| }, | ||
| "chess.com.friendsList": { | ||
| "message": "Viewing Friends List", | ||
| "description": "Looking at friends page" | ||
| }, | ||
| "chess.com.friendsSingle": { | ||
| "message": "Friend", | ||
| "description": "Singular form for friend" | ||
| }, | ||
| "chess.com.friendsPlural": { | ||
| "message": "Friends", | ||
| "description": "Plural form for friends" | ||
| }, | ||
| "chess.com.profileViewing": { | ||
| "message": "Viewing Profile", | ||
| "description": "Viewing a user profile" | ||
| }, | ||
| "chess.com.profileGeneral": { | ||
| "message": "Profile", | ||
| "description": "General profile page" | ||
| }, | ||
| "chess.com.buttonViewGame": { | ||
| "message": "View Game", | ||
| "description": "Button label to view the game" | ||
| }, | ||
| "chess.com.buttonWatchVideo": { | ||
| "message": "Watch Video", | ||
| "description": "Button label to watch the video" | ||
| }, | ||
| "chess.com.variantsMenu": { | ||
| "message": "Chess Variants", | ||
| "description": "Playing variants like 4PC etc" | ||
| }, | ||
| "chess.com.classroomTitle": { | ||
| "message": "Classroom", | ||
| "description": "Classroom section" | ||
| }, | ||
| "chess.com.classroomSession": { | ||
| "message": "In Session", | ||
| "description": "In a classroom session" | ||
| }, | ||
| "chess.com.practiceTitle": { | ||
| "message": "Practice", | ||
| "description": "Practice mode" | ||
| }, | ||
| "chess.com.learnOpenings": { | ||
| "message": "Openings", | ||
| "description": "Learning openings" | ||
| }, | ||
| "chess.com.learnAllLessons": { | ||
| "message": "All Lessons", | ||
| "description": "Viewing all lessons" | ||
| }, | ||
| "chess.com.insightsTitle": { | ||
| "message": "Insights", | ||
| "description": "Insights/statistics section" | ||
| }, | ||
| "chess.com.insightsStats": { | ||
| "message": "Stats", | ||
| "description": "Statistics label" | ||
| }, | ||
| "chess.com.gameReviewing": { | ||
| "message": "Reviewing Game", | ||
| "description": "Reviewing a completed game or variant" | ||
| }, | ||
| "chess.com.gameOnline": { | ||
| "message": "Online", | ||
| "description": "Generic online game mode" | ||
| }, | ||
| "chess.com.tvChecking": { | ||
| "message": "Checking Schedule", | ||
| "description": "Checking TV schedule or loading stream" | ||
| }, | ||
| "chess.com.mediaFinished": { | ||
| "message": "Finished", | ||
| "description": "Game or media finished" | ||
| }, | ||
| "chess.com.profileGeneralAlt": { | ||
| "message": "Profile", | ||
| "description": "Alternative profile label" | ||
| }, | ||
| "chess.com.videoLibrary": { | ||
| "message": "Library", | ||
| "description": "Browsing video library" | ||
| }, | ||
| "chess.com.videoWatching": { | ||
| "message": "Video", | ||
| "description": "Watching a video" | ||
| } | ||
| } |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.