Rename italy to italian (#731)

This commit is contained in:
Marco Beretta 2023-08-01 04:38:38 +02:00 committed by GitHub
parent 30a49ae611
commit 851dce720f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
import English from './languages/Eng'; import English from './languages/Eng';
import Chinese from './languages/Zh'; import Chinese from './languages/Zh';
import Italy from './languages/It'; import Italian from './languages/It';
import Portuguese from './languages/Br'; import Portuguese from './languages/Br';
import Spanish from './languages/Es'; import Spanish from './languages/Es';
// === import additional language files here === // // === import additional language files here === //
@ -30,7 +30,7 @@ export const getTranslations = (langCode: string) => {
return Chinese; return Chinese;
} }
if (langCode === 'it') { if (langCode === 'it') {
return Italy; return Italian;
} }
if (langCode === 'br') { if (langCode === 'br') {
return Portuguese; return Portuguese;