-
Notifications
You must be signed in to change notification settings - Fork 586
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
Re-enable crowdin stats command #9962
Merged
Merged
Conversation
This file contains 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
thsparks
approved these changes
Apr 10, 2024
riknoll
added a commit
that referenced
this pull request
Apr 11, 2024
riknoll
added a commit
that referenced
this pull request
Apr 11, 2024
riknoll
added a commit
that referenced
this pull request
Apr 30, 2024
riknoll
added a commit
that referenced
this pull request
Apr 30, 2024
…branch (#9991) * [V9] Cherry picking crowdin work over to v9 branch (#9963) * Upgrade to Crowdin V2 APIs (#9954) * use crowdin v2 apis * rename crowdin API * add projectid setting * fix test mode * copy pxt-translations crowdin config * re-enable crowdin stats (#9962) * Add restore command and keep translations when updating (#9966) (#9968) * add restore command and keep translations when updating * add --test flag * add parameter to prevent accidental runs
riknoll
added a commit
that referenced
this pull request
May 8, 2024
…branch (#9991) * [V9] Cherry picking crowdin work over to v9 branch (#9963) * Upgrade to Crowdin V2 APIs (#9954) * use crowdin v2 apis * rename crowdin API * add projectid setting * fix test mode * copy pxt-translations crowdin config * re-enable crowdin stats (#9962) * Add restore command and keep translations when updating (#9966) (#9968) * add restore command and keep translations when updating * add --test flag * add parameter to prevent accidental runs
riknoll
added a commit
that referenced
this pull request
May 17, 2024
…necraft stable (#10009) * [stable9.0] Cherry picking crowdin changes over to Calliope's stable branch (#9991) * [V9] Cherry picking crowdin work over to v9 branch (#9963) * Upgrade to Crowdin V2 APIs (#9954) * use crowdin v2 apis * rename crowdin API * add projectid setting * fix test mode * copy pxt-translations crowdin config * re-enable crowdin stats (#9962) * Add restore command and keep translations when updating (#9966) (#9968) * add restore command and keep translations when updating * add --test flag * add parameter to prevent accidental runs * hide asset name when assetEditor is false (#9878) * Fixes for image editor in micro:bit (#9900) * fix compile variants when palette is in dep * add field editor param for the tagged template * fix help link in monaco flyout (#10008)
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.
Re-implementing the crowdin stats command with the v2 APIs.
FYI, I tweaked the behavior somewhat. The previous version of the command always checked translations for all targets even if it was run from within a target repo. I assume this was a mistake, so I made it so that it now filters the translations to only include core and the strings from the target repo it's run within (e.g. running within pxt-arcade will only check for translations of strings in pxt-arcade and pxt-core). Running the command within pxt-core will go back to the old behavior and collect stats for all targets at the same time. @abchatra FYI
Also, this will probably take a lot longer to run then the old version. The new APIs require us to make many separate requests as opposed to the old API's single request.