Add stub files for Spanish and French

This commit is contained in:
Bill Thornton 2020-07-14 23:57:03 -04:00
parent 469a7468df
commit cb3cde82a2
3 changed files with 9 additions and 1 deletions

View File

@ -3,9 +3,13 @@ import i18next from 'i18next';
import { initReactI18next } from 'react-i18next';
import en from './langs/en.json';
import es from './langs/es.json';
import fr from './langs/fr.json';
const resources = {
en: { translation: en }
en: { translation: en },
es: { translation: es },
fr: { translation: fr }
};
i18next

2
langs/es.json Normal file
View File

@ -0,0 +1,2 @@
{
}

2
langs/fr.json Normal file
View File

@ -0,0 +1,2 @@
{
}