Implement translations with useContext in React +Add events to allow changing the language in the app +Refactor AppEvents +Redesign vertical bars in elements
14 lines
342 B
TypeScript
14 lines
342 B
TypeScript
import en from './translation.en.json';
|
|
import fr from './translation.fr.json';
|
|
|
|
export const translations: Record<string, Record<string, string>> = {
|
|
en,
|
|
fr
|
|
};
|
|
|
|
// Use languageOptions to restrict existing dictionary
|
|
// and create a select input
|
|
export const languageOptions: Record<string, string> = {
|
|
en: 'English',
|
|
fr: 'French'
|
|
};
|