diff --git a/packages/bruno-app/src/components/Preferences/Support/index.js b/packages/bruno-app/src/components/Preferences/Support/index.js index dfd6fabed..5e1b0dacc 100644 --- a/packages/bruno-app/src/components/Preferences/Support/index.js +++ b/packages/bruno-app/src/components/Preferences/Support/index.js @@ -1,39 +1,42 @@ import React from 'react'; import { IconSpeakerphone, IconBrandTwitter, IconBrandGithub, IconBrandDiscord, IconBook } from '@tabler/icons'; import StyledWrapper from './StyledWrapper'; +import { useDictionary } from 'providers/Dictionary/index'; const Support = () => { + const { dictionary } = useDictionary(); + return (
- Documentation + {dictionary.documentation}
- Report Issues + {dictionary.reportIssues}
- Discord + {dictionary.discord}
- GitHub + {dictionary.gitHub}
- Twitter + {dictionary.twitter}
diff --git a/packages/bruno-app/src/dictionaries/en.js b/packages/bruno-app/src/dictionaries/en.js index c1da5b9ac..a9ff316cd 100644 --- a/packages/bruno-app/src/dictionaries/en.js +++ b/packages/bruno-app/src/dictionaries/en.js @@ -10,5 +10,7 @@ export default { collectionImportedSuccessfully: 'Collection imported successfully', errorWhileOpeningCollection: 'An error occurred while opening the collection', errorWhileImportingCollection: - 'An error occurred while importing the collection. Check the logs for more information.' + 'An error occurred while importing the collection. Check the logs for more information.', + discord: 'Discord', + twitter: 'Twitter' };