mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-22 20:51:29 +10:00
fixing crashes, upgrading dependencies, patching security vulnerabilities
This commit is contained in:
@ -3,14 +3,14 @@ import { initReactI18next } from 'react-i18next';
|
||||
import resources from './locales';
|
||||
|
||||
const languages = [
|
||||
{
|
||||
code: 'zh',
|
||||
name: 'Chinese Simplified (简体中文)',
|
||||
},
|
||||
{
|
||||
code: 'ar',
|
||||
name: 'Arabic (عربى)',
|
||||
},
|
||||
{
|
||||
code: 'zh',
|
||||
name: 'Chinese Simplified (简体中文)',
|
||||
},
|
||||
{
|
||||
code: 'da',
|
||||
name: 'Danish (Dansk)',
|
||||
@ -51,6 +51,10 @@ const languages = [
|
||||
code: 'ptBr',
|
||||
name: 'Portuguese (Brazilian)',
|
||||
},
|
||||
{
|
||||
code: 'ptPt',
|
||||
name: 'Portuguese (Portugal)',
|
||||
},
|
||||
{
|
||||
code: 'es',
|
||||
name: 'Spanish (Español)',
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
import zh from './zh.json';
|
||||
import ar from './ar.json';
|
||||
import da from './da.json';
|
||||
import de from './de.json';
|
||||
@ -11,11 +10,13 @@ import kn from './kn.json';
|
||||
import nb from './nb.json';
|
||||
import nl from './nl.json';
|
||||
import ptBr from './pt-br.json';
|
||||
import ptPt from './pt-pt.json';
|
||||
import tr from './tr.json';
|
||||
import zh from './zh.json';
|
||||
|
||||
export default {
|
||||
zh: { translation: zh },
|
||||
ar: { translation: ar },
|
||||
zh: { translation: zh },
|
||||
da: { translation: da },
|
||||
de: { translation: de },
|
||||
en: { translation: en },
|
||||
@ -27,5 +28,6 @@ export default {
|
||||
nb: { translation: nb },
|
||||
nl: { translation: nl },
|
||||
ptBr: { translation: ptBr },
|
||||
ptPt: { translation: ptPt },
|
||||
tr: { translation: tr },
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user