mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-26 14:40:57 +03:00
Merge branch 'master' of https://github.com/Tzahi12345/YoutubeDL-Material into categories
This commit is contained in:
@@ -122,7 +122,8 @@ export const isoLangs = {
|
||||
},
|
||||
'zh': {
|
||||
'name': 'Chinese',
|
||||
'nativeName': '中文 (Zhōngwén), 汉语, 漢語'
|
||||
'nativeName': '中文 (Zhōngwén), 汉语, 漢語',
|
||||
'ngID': 'zh'
|
||||
},
|
||||
'cv': {
|
||||
'name': 'Chuvash',
|
||||
@@ -162,8 +163,14 @@ export const isoLangs = {
|
||||
},
|
||||
'en': {
|
||||
'name': 'English',
|
||||
'nativeName': 'English'
|
||||
'nativeName': 'English',
|
||||
'ngID': 'en-US'
|
||||
},
|
||||
'en-GB': {
|
||||
'name': 'British English',
|
||||
'nativeName': 'British English',
|
||||
'ngID': 'en-GB'
|
||||
},
|
||||
'eo': {
|
||||
'name': 'Esperanto',
|
||||
'nativeName': 'Esperanto'
|
||||
@@ -190,7 +197,8 @@ export const isoLangs = {
|
||||
},
|
||||
'fr': {
|
||||
'name': 'French',
|
||||
'nativeName': 'français, langue française'
|
||||
'nativeName': 'français',
|
||||
'ngID': 'fr'
|
||||
},
|
||||
'ff': {
|
||||
'name': 'Fula; Fulah; Pulaar; Pular',
|
||||
@@ -206,7 +214,8 @@ export const isoLangs = {
|
||||
},
|
||||
'de': {
|
||||
'name': 'German',
|
||||
'nativeName': 'Deutsch'
|
||||
'nativeName': 'Deutsch',
|
||||
'ngID': 'de'
|
||||
},
|
||||
'el': {
|
||||
'name': 'Greek, Modern',
|
||||
@@ -438,7 +447,8 @@ export const isoLangs = {
|
||||
},
|
||||
'nb': {
|
||||
'name': 'Norwegian Bokmål',
|
||||
'nativeName': 'Norsk bokmål'
|
||||
'nativeName': 'Norsk bokmål',
|
||||
'ngID': 'nb'
|
||||
},
|
||||
'nd': {
|
||||
'name': 'North Ndebele',
|
||||
@@ -594,7 +604,8 @@ export const isoLangs = {
|
||||
},
|
||||
'es': {
|
||||
'name': 'Spanish; Castilian',
|
||||
'nativeName': 'español'
|
||||
'nativeName': 'español',
|
||||
'ngID': 'es'
|
||||
},
|
||||
'su': {
|
||||
'name': 'Sundanese',
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
</div>
|
||||
<div class="col-12 mt-2 mb-1">
|
||||
<mat-form-field>
|
||||
<mat-label><ng-container i18n="Logger level select label">Select a logger level</ng-container></mat-label>
|
||||
<mat-label><ng-container i18n="Log Level label">Log Level</ng-container></mat-label>
|
||||
<mat-select color="accent" [(ngModel)]="new_config['Advanced']['logger_level']">
|
||||
<mat-option value="debug">Debug</mat-option>
|
||||
<mat-option value="verbose">Verbose</mat-option>
|
||||
|
||||
@@ -20,7 +20,7 @@ import { EditCategoryDialogComponent } from 'app/dialogs/edit-category-dialog/ed
|
||||
})
|
||||
export class SettingsComponent implements OnInit {
|
||||
all_locales = isoLangs;
|
||||
supported_locales = ['en', 'es', 'de'];
|
||||
supported_locales = ['en', 'es', 'de', 'fr', 'zh', 'nb', 'en-GB'];
|
||||
initialLocale = localStorage.getItem('locale');
|
||||
|
||||
initial_config = null;
|
||||
|
||||
Reference in New Issue
Block a user