-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
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
feat: make blog config options and navbar versions dropdown label translatable #5371
Conversation
✔️ [V2] 🔨 Explore the source changes: 8ae7dfa 🔍 Inspect the deploy log: https://app.netlify.com/sites/docusaurus-2/deploys/611f9ccd3a53b50008d87096 😎 Browse the preview: https://deploy-preview-5371--docusaurus-2.netlify.app |
⚡️ Lighthouse report for the changes in this PR:
Lighthouse ran on https://deploy-preview-5371--docusaurus-2.netlify.app/ |
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
73e2b64
to
b88f32b
Compare
@slorber Translating the options seems less straightforward than I thought because the |
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Yes, any option that need to be translated should be added to the |
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.
Thanks, that looks good 👍
Just let some comments in case you want to take a look, but I'm ok to merge this.
content: BlogContent, | ||
translationFiles: TranslationFiles, | ||
): BlogContent { | ||
const {content: translations} = translationFiles[0]; |
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.
I'd prefer to have code to get the options file, this won't break if we add other translation files later? Not a big deal for now we may not have many translation files for the blog 🤪
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.
I don't know how to do this gracefully since plugin-docs
and theme-classic
handle this in pretty different ways. I hope destructuring is better:
const [{content: optonsTranslations}] = translationFiles;
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.
let's keep this for now 👍 we'll see later if there's a need to improve it
const {content: translations} = translationFiles[0]; | ||
return { | ||
...content, | ||
blogSidebarTitle: translations['sidebar.title'].message, |
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.
It's worth double-checking that if the options.json
file is empty or incomplete, it doesn't crash the translation process.
I think it's safe because translated content is merged into untranslated content to make sure all keys are always available, but worth double-checking that.
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.
Added a jest test, not sure if it's representative though (not very confident with unit tests)
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.
have you pushed? I don't see any change?
I don't think a Jest test can test it anyway, it's more a contract of how core is supposed to call the lifecycle (ie, provide exactly ALL the files with ALL the keys that getTranslationFiles
have). I checked code and it should be the case, so was just asking for a local test ;)
But having some basic tests for translations.ts
can be useful. Something simple, similar to what we have for docs:
function getSampleTranslationFiles() {
return getLoadedContentTranslationFiles(SampleLoadedContent);
}
function getSampleTranslationFilesTranslated() {
const translationFiles = getSampleTranslationFiles();
return translationFiles.map((translationFile) =>
updateTranslationFileMessages(
translationFile,
(message) => `${message} (translated)`,
),
);
}
describe('getLoadedContentTranslationFiles', () => {
test('should return translation files matching snapshot', async () => {
expect(getSampleTranslationFiles()).toMatchSnapshot();
});
});
describe('translateLoadedContent', () => {
test('should not translate anything if translation files are untranslated', () => {
const translationFiles = getSampleTranslationFiles();
expect(
translateLoadedContent(SampleLoadedContent, translationFiles),
).toEqual(SampleLoadedContent);
});
test('should return translated loaded content matching snapshot', () => {
const translationFiles = getSampleTranslationFilesTranslated();
expect(
translateLoadedContent(SampleLoadedContent, translationFiles),
).toMatchSnapshot();
});
});
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.
Ugh, forgot to push😅 My tests are pretty similar to what you have here, indeed
metadata: { | ||
...metadata, | ||
blogTitle: translations.title.message, | ||
blogDescription: translations.description.message, |
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.
instead of translating each page title this way, I'm wondering if we shouldn't create a bundle with all those generic blog infos, so that multiple pages could use the same bundle?
Like:
const blogMetadataProp = await createData({title,description,sidebarTitle})
addRoute({
modules: {
blogMetadata: blogMetadataProp
}
});
Not sure it make sense though so I'll let you figure out, current implementation is good enough for me
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.
No strong feelings, I also considered this, but the current implementation equally makes sense. I was thinking if it is possible to have a translateOptions
lifecycle?
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.
Let's keep it this way, I may refactor this plugin a bit in the near future because it's a bit messy.
About translateOptions
, I think adding options to content is fine and we don't need another new lifecycle, but let's see, we may add this later if this becomes a common need for ourselves or other plugin authors
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
Thanks LGTM 👍 About feed options, I'd rather use |
Motivation
Resolve (partially) #4542. This makes the "Versions" label and all the blog options (
blogSidebarTitle
,blogTitle
,blogDescription
) translatable.Have you read the Contributing Guidelines on pull requests?
Yes
Test Plan