mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
Add Catalan language
This commit is contained in:
parent
9b330b8226
commit
55afd3fd56
6 changed files with 1441 additions and 2 deletions
|
|
@ -23,4 +23,5 @@ export const LOCALES = [
|
|||
{ code: 'nl-NL', key: 'dutch_nl' },
|
||||
{ code: 'ro', key: 'romanian' },
|
||||
{ code: 'sq', key: 'albanian' },
|
||||
{ code: 'ca', key: 'catalan' },
|
||||
];
|
||||
|
|
|
|||
1433
src/i18n/locales/ca.json
Normal file
1433
src/i18n/locales/ca.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -653,6 +653,7 @@
|
|||
"dutch_nl": "Dutch (Netherlands)",
|
||||
"romanian": "Romanian",
|
||||
"albanian": "Albanian",
|
||||
"catalan": "Catalan",
|
||||
"account": "Account",
|
||||
"content_discovery": "Content & Discovery",
|
||||
"appearance": "Appearance",
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ import fil from './locales/fil.json';
|
|||
import nlNL from './locales/nl-NL.json';
|
||||
import ro from './locales/ro.json';
|
||||
import sq from './locales/sq.json';
|
||||
import ca from './locales/ca.json';
|
||||
|
||||
export const resources = {
|
||||
en: { translation: en },
|
||||
|
|
@ -49,4 +50,5 @@ export const resources = {
|
|||
'nl-NL': { translation: nlNL },
|
||||
ro: { translation: ro },
|
||||
sq: { translation: sq },
|
||||
ca: { translation: ca },
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1181,7 +1181,8 @@ const TMDBSettingsScreen = () => {
|
|||
{ code: 'sl', label: 'Slovenščina', native: 'Slovenian' },
|
||||
{ code: 'mk', label: 'Македонски', native: 'Macedonian' },
|
||||
{ code: 'fil', label: 'Filipino', native: 'Filipino' },
|
||||
{ code: 'sq', label: 'Shqipe', native: 'Albanian' },
|
||||
{ code: 'sq', label: 'Shqipe', native: 'Albanian' },
|
||||
{ code: 'ca', label: 'Català', native: 'Catalan' },
|
||||
];
|
||||
|
||||
const filteredLanguages = languages.filter(({ label, code, native }) =>
|
||||
|
|
|
|||
|
|
@ -61,7 +61,8 @@ const AVAILABLE_LANGUAGES = [
|
|||
{ code: 'mk', name: 'Macedonian' },
|
||||
{ code: 'fil', name: 'Filipino' },
|
||||
{ code: 'ro', name: 'Romanian' },
|
||||
{ code: 'sq', name: 'Albanian' },
|
||||
{ code: 'sq', name: 'Albanian' },
|
||||
{ code: 'ca', name: 'Catalan' },
|
||||
];
|
||||
|
||||
const SUBTITLE_SOURCE_OPTIONS = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue