Is there a way to run translated-content in yari?
See original GitHub issueHello! I want to check the PR fixes of translated-content with yari. Is there any way to check? I asked a question because the execution method for translated-content is not specified.
First of all, the content repo was successfully executed. It comes out well.
- .env
CONTENT_ROOT=/Users/tonybyeon/Desktop/content/files
EDITOR=code
However, it fails when running on translated-content.
- .env
CONTENT_ROOT=/Users/tonybyeon/Desktop/translated-content/files
EDITOR=code
If this is not possible, how do I check for changes to the translated-content?
I’ll make it. => See comments below.
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (10 by maintainers)
Top Results From Across the Web
Live samples in translated-content cannot use images from ...
I have an idea about this problem, is it easier to build with correct image path ? It means that if the image...
Read more >MDN Web Docs Localization - Mozilla
We have frozen all localized content (meaning that we won't accept any edits to it; it'll be read-only), EXCEPT for the below locales...
Read more >Change Chrome languages & translate webpages - Computer
On your computer, open Chrome. · At the top right, click More More and then Settings. · At the bottom, click Advanced. ·...
Read more >Creating and managing translated content for your Zendesk ...
When you choose other languages to support, you can easily create language-specific versions of your articles — Guide creates the container for ...
Read more >Smartling: Language Translation and Content Localization ...
Smartling connects your brand with customers around the globe. Translate, automate and manage your content across platforms with real-time analytics and ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you, @hochan222! Glad to hear that things are working better now. 🎉
The “PR Review Companion” is a GitHub Action workflow. It’s a workflow that runs after the “PR Test” workflow has succeeded. https://github.com/mdn/content/blob/main/.github/workflows/pr-review-companion.yml https://github.com/mdn/content/blob/main/.github/workflows/pr-test.yml
Compare that
pr-test.yml
with the one in translated-content: https://github.com/mdn/translated-content/blob/main/.github/workflows/pr-test.yml For example, note that in translated-content it doesn’t upload the build files. Your first task is to try to port the stuff frompr-test.yml
into the one in translated-content. Once that’s done you can more or less copy thepr-review-companion.yml
over too with some changes.