Skip to content

Instantly share code, notes, and snippets.

@benjackwhite
Created October 9, 2021 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjackwhite/fc058a554d81013f9abc055d36e09652 to your computer and use it in GitHub Desktop.
Save benjackwhite/fc058a554d81013f9abc055d36e09652 to your computer and use it in GitHub Desktop.
Ed Balls
// Ed Balls
import React from 'react';
import i18n from 'i18next';
import {initReactI18next, useTranslation} from 'react-i18next';
import {cloneDeep} from 'lodash';
// This is usally imported from a json file or similar
const langEN = {
title: 'My amazing app',
description: "An app that has nothing to do with Politics that's for sure!",
};
// Clone the object with all keys
const langEdBalls = cloneDeep(langEN);
// Traverse the object and replace all string values with "Ed Balls"
const replaceWithEdBalls = (obj: any) => {
Object.keys(obj).forEach(x => {
if (typeof obj[x] === 'string') {
obj[x] = 'Ed Balls';
} else if (typeof obj[x] === 'object') {
replaceWithEdBalls(obj[x]);
}
});
};
replaceWithEdBalls(langEdBalls);
// Setup i18n
i18n
.use(initReactI18next) // passes i18n down to react-i18next
.init({
resources: {
en: {
name: 'English',
translation: langEN,
},
edballs: {
name: 'Ed Balls',
translation: langEdBalls,
},
},
fallbackLng: 'en',
lng: 'edballs',
});
// Lets render the app
export const App = () => {
const {t} = useTranslation();
return (
<div>
<h1>{t('title')}</h1>
<h2>{t('description')}</h2>
<p>I am not translated yet...</p>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment