-
Notifications
You must be signed in to change notification settings - Fork 41
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(i18n): add base Italian translations #13
base: main
Are you sure you want to change the base?
Conversation
@@ -26,7 +26,10 @@ const SeoChecker = ({ checks }) => { | |||
return ( | |||
<Box paddingTop={4}> | |||
<Typography variant="omega" fontWeight="semiBold"> | |||
SEO Summary | |||
{formatMessage({ | |||
id: getTrad('SEOComponent.title.summary'), |
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.
You are not creating translations for SEOComponent.title.summary
in en and fr but a SEO Summary
one instead.
Can you please remove the SEO Summary
, add the SEOComponent.title.summary
in both fr and en?
@@ -43,7 +43,10 @@ const BrowserPreview = ({ modifiedData, setIsVisible }) => { | |||
> | |||
<ModalHeader> | |||
<Typography fontWeight="bold" textColor="neutral800" as="h2" id="title"> | |||
SEO Plugin | |||
{formatMessage({ | |||
id: getTrad('plugin.name'), |
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.
Can it be Plugin.name
?
@@ -75,5 +76,6 @@ | |||
"Improvements": "Improvements", | |||
"Bad": "Bad", | |||
"Social-preview.alert": "Complete you social component to see the preview", | |||
"Information": "Information" | |||
"Information": "Information", | |||
"SEO Summary": "SEO Summary" |
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.
Must be replaced. See comment above :)
Thanks for your translation PR @mithenks 💪 |
@mithenks could you check this? |
This PR add Italian translations.