diff --git a/README.md b/README.md index e299df68..b5531ed4 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j ##### Languages Currently Supported +- Arabic (عربى) (by [Ahmad Khatab](https://github.com/A7madXatab)) - Danish (Dansk) (by [RazziaDK](https://crowdin.com/profile/RazziaDK)) - Dutch (Nederlands) (by [Imad Youssoufi](https://github.com/2imad)) - English diff --git a/src/i18n/index.js b/src/i18n/index.js index 860c6cbb..96181bf4 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -3,6 +3,10 @@ import { initReactI18next } from 'react-i18next'; import resources from './locales'; const languages = [ + { + code: 'ar', + name: 'Arabic (عربى)', + }, { code: 'da', name: 'Danish (Dansk)', diff --git a/src/i18n/locales/index.js b/src/i18n/locales/index.js index 3fa404c1..647c1e0a 100644 --- a/src/i18n/locales/index.js +++ b/src/i18n/locales/index.js @@ -1,3 +1,4 @@ +import ar from './ar.json'; import da from './da.json'; import de from './de.json'; import en from './en.json'; @@ -11,6 +12,7 @@ import ptBr from './pt-br.json'; import tr from './tr.json'; export default { + ar: { translation: ar }, da: { translation: da }, de: { translation: de }, en: { translation: en },