added croatian

This commit is contained in:
tapframe 2026-01-24 01:38:36 +05:30
parent 916ad188bc
commit e5fb18fe5c
11 changed files with 1371 additions and 1 deletions

View file

@ -6,5 +6,6 @@ export const LOCALES = [
{ code: 'ar', key: 'arabic' },
{ code: 'fr', key: 'french' },
{ code: 'it', key: 'italian' },
{ code: 'es', key: 'spanish' }
{ code: 'es', key: 'spanish' },
{ code: 'hr', key: 'croatian' }
];

View file

@ -630,6 +630,7 @@
"spanish": "الإسبانية",
"french": "الفرنسية",
"italian": "الإيطالية",
"croatian": "الكرواتية",
"account": "الحساب",
"content_discovery": "المحتوى والاكتشاف",
"appearance": "المظهر",

View file

@ -630,6 +630,7 @@
"spanish": "Spanisch",
"french": "Französisch",
"italian": "Italienisch",
"croatian": "Kroatisch",
"account": "Konto",
"content_discovery": "Inhalt & Entdeckung",
"appearance": "Aussehen",

View file

@ -630,6 +630,7 @@
"spanish": "Spanish",
"french": "French",
"italian": "Italian",
"croatian": "Croatian",
"account": "Account",
"content_discovery": "Content & Discovery",
"appearance": "Appearance",

View file

@ -630,6 +630,7 @@
"spanish": "Español",
"french": "Francés",
"italian": "Italiano",
"croatian": "Croata",
"account": "Cuenta",
"content_discovery": "Contenido y descubrimiento",
"appearance": "Apariencia",

View file

@ -630,6 +630,7 @@
"spanish": "Espagnol",
"french": "Français",
"italian": "Italien",
"croatian": "Croate",
"account": "Compte",
"content_discovery": "Contenu et découverte",
"appearance": "Apparence",

1358
src/i18n/locales/hr.json Normal file

File diff suppressed because it is too large Load diff

View file

@ -630,6 +630,7 @@
"spanish": "Spagnolo",
"french": "Francese",
"italian": "Italiano",
"croatian": "Croato",
"account": "Account",
"content_discovery": "Contenuti e Scoperta",
"appearance": "Aspetto",

View file

@ -644,6 +644,7 @@
"spanish": "Espanhol",
"french": "Francês",
"italian": "Italiano",
"croatian": "Croata",
"account": "Conta",
"content_discovery": "Conteúdo e Descoberta",
"appearance": "Aparência",

View file

@ -644,6 +644,7 @@
"spanish": "Espanhol",
"french": "Francês",
"italian": "Italiano",
"croatian": "Croata",
"account": "Conta",
"content_discovery": "Conteúdo e Descoberta",
"appearance": "Aparência",

View file

@ -7,6 +7,8 @@ import fr from './locales/fr.json';
import it from './locales/it.json';
import de from './locales/de.json';
import hr from './locales/hr.json';
export const resources = {
en: { translation: en },
'pt-BR': { translation: ptBR },
@ -16,4 +18,5 @@ export const resources = {
fr: { translation: fr },
it: { translation: it },
de: { translation: de },
hr: { translation: hr },
};