mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
added chinese
This commit is contained in:
parent
df6006c221
commit
86f6bc4ae2
12 changed files with 1378 additions and 1 deletions
|
|
@ -7,5 +7,6 @@ export const LOCALES = [
|
|||
{ code: 'fr', key: 'french' },
|
||||
{ code: 'it', key: 'italian' },
|
||||
{ code: 'es', key: 'spanish' },
|
||||
{ code: 'hr', key: 'croatian' }
|
||||
{ code: 'hr', key: 'croatian' },
|
||||
{ code: 'zh-CN', key: 'chinese' }
|
||||
];
|
||||
|
|
@ -631,6 +631,7 @@
|
|||
"french": "الفرنسية",
|
||||
"italian": "الإيطالية",
|
||||
"croatian": "الكرواتية",
|
||||
"chinese": "الصينية (المبسطة)",
|
||||
"account": "الحساب",
|
||||
"content_discovery": "المحتوى والاكتشاف",
|
||||
"appearance": "المظهر",
|
||||
|
|
|
|||
|
|
@ -631,6 +631,7 @@
|
|||
"french": "Französisch",
|
||||
"italian": "Italienisch",
|
||||
"croatian": "Kroatisch",
|
||||
"chinese": "Chinesisch (Vereinfacht)",
|
||||
"account": "Konto",
|
||||
"content_discovery": "Inhalt & Entdeckung",
|
||||
"appearance": "Aussehen",
|
||||
|
|
|
|||
|
|
@ -631,6 +631,7 @@
|
|||
"french": "French",
|
||||
"italian": "Italian",
|
||||
"croatian": "Croatian",
|
||||
"chinese": "Chinese (Simplified)",
|
||||
"account": "Account",
|
||||
"content_discovery": "Content & Discovery",
|
||||
"appearance": "Appearance",
|
||||
|
|
|
|||
|
|
@ -631,6 +631,7 @@
|
|||
"french": "Francés",
|
||||
"italian": "Italiano",
|
||||
"croatian": "Croata",
|
||||
"chinese": "Chino (Simplificado)",
|
||||
"account": "Cuenta",
|
||||
"content_discovery": "Contenido y descubrimiento",
|
||||
"appearance": "Apariencia",
|
||||
|
|
|
|||
|
|
@ -631,6 +631,7 @@
|
|||
"french": "Français",
|
||||
"italian": "Italien",
|
||||
"croatian": "Croate",
|
||||
"chinese": "Chinois (Simplifié)",
|
||||
"account": "Compte",
|
||||
"content_discovery": "Contenu et découverte",
|
||||
"appearance": "Apparence",
|
||||
|
|
|
|||
|
|
@ -631,6 +631,7 @@
|
|||
"french": "Francuski",
|
||||
"italian": "Talijanski",
|
||||
"croatian": "Hrvatski",
|
||||
"chinese": "Kineski (Pojednostavljeni)",
|
||||
"account": "Račun",
|
||||
"content_discovery": "Sadržaj i otkrivanje",
|
||||
"appearance": "Izgled",
|
||||
|
|
|
|||
|
|
@ -631,6 +631,7 @@
|
|||
"french": "Francese",
|
||||
"italian": "Italiano",
|
||||
"croatian": "Croato",
|
||||
"chinese": "Cinese (Semplificato)",
|
||||
"account": "Account",
|
||||
"content_discovery": "Contenuti e Scoperta",
|
||||
"appearance": "Aspetto",
|
||||
|
|
|
|||
|
|
@ -645,6 +645,7 @@
|
|||
"french": "Francês",
|
||||
"italian": "Italiano",
|
||||
"croatian": "Croata",
|
||||
"chinese": "Chinês (Simplificado)",
|
||||
"account": "Conta",
|
||||
"content_discovery": "Conteúdo e Descoberta",
|
||||
"appearance": "Aparência",
|
||||
|
|
|
|||
|
|
@ -645,6 +645,7 @@
|
|||
"french": "Francês",
|
||||
"italian": "Italiano",
|
||||
"croatian": "Croata",
|
||||
"chinese": "Chinês (Simplificado)",
|
||||
"account": "Conta",
|
||||
"content_discovery": "Conteúdo e Descoberta",
|
||||
"appearance": "Aparência",
|
||||
|
|
|
|||
1365
src/i18n/locales/zh-CN.json
Normal file
1365
src/i18n/locales/zh-CN.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -8,6 +8,7 @@ import it from './locales/it.json';
|
|||
import de from './locales/de.json';
|
||||
|
||||
import hr from './locales/hr.json';
|
||||
import zhCN from './locales/zh-CN.json';
|
||||
|
||||
export const resources = {
|
||||
en: { translation: en },
|
||||
|
|
@ -19,4 +20,5 @@ export const resources = {
|
|||
it: { translation: it },
|
||||
de: { translation: de },
|
||||
hr: { translation: hr },
|
||||
'zh-CN': { translation: zhCN },
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue