Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(i18n): add italian translation it 🇮🇹 #627

Merged
merged 8 commits into from
Jul 3, 2023
6 changes: 6 additions & 0 deletions src/i18n/languages.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import en from './locales/en/translation.json'
import fr from './locales/fr/translation.json'
import it from './locales/it/translation.json'
import pt_BR from './locales/pt_BR/translation.json'

const languages = [
Expand All @@ -13,6 +14,11 @@ const languages = [
description: 'Français',
translation: fr,
},
{
key: 'it',
description: 'Italiano',
translation: it,
},
{
key: 'pt-BR',
description: 'Português (Brasil)',
Expand Down
Loading