Added extensions settings where information on extensions can be found and bookmarklet is generated
Created arg modifier dialog to assist in editing youtube-dl args - This arg dialog contains all the available args and their description - Includes a convenient search bar and categorized list of args to help you find the one you're looking for, or just explore what's available. Arg modifier is available for both global args (in settings) and local args (in the advanced mode)pull/36/head
parent
f796a5863c
commit
2b2a033b7e
@ -0,0 +1,68 @@
|
||||
<h4 i18n="Modify args title" mat-dialog-title>Modify youtube-dl args</h4>
|
||||
|
||||
<mat-dialog-content>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<mat-card class="mat-elevation-z6">
|
||||
<h6 i18n="Simulated args title">Simulated new args</h6>
|
||||
<mat-form-field style="width: 100%" color="accent">
|
||||
<textarea [disabled]="true" matInput>{{modified_args}}</textarea>
|
||||
</mat-form-field>
|
||||
</mat-card>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<mat-card class="mat-elevation-z6 my-2">
|
||||
<h6 i18n="Add arg card title">Add an arg</h6>
|
||||
<form >
|
||||
<div>
|
||||
<mat-form-field style="width: 75%" color="accent">
|
||||
<input matInput placeholder="Arg" [matAutocomplete]="auto" [formControl]="stateCtrl">
|
||||
</mat-form-field>
|
||||
<mat-autocomplete #auto="matAutocomplete">
|
||||
<mat-option *ngFor="let arg of filteredOptions | async" [value]="arg.key">
|
||||
<span [innerHTML]="arg.key | highlight : stateCtrl.value"></span>
|
||||
<button style="float: right" [matTooltip]="arg.description" mat-icon-button><mat-icon>info</mat-icon></button>
|
||||
</mat-option>
|
||||
</mat-autocomplete>
|
||||
|
||||
<div>
|
||||
<mat-menu #argsByCategoryMenu="matMenu">
|
||||
<ng-container *ngFor="let argsInCategory of argsByCategory | keyvalue">
|
||||
<button mat-menu-item [matMenuTriggerFor]="subMenu">{{argsInfo[argsInCategory.key].label}}</button>
|
||||
<mat-menu #subMenu="matMenu">
|
||||
<button mat-menu-item *ngFor="let arg of argsInCategory.value" (click)="setFirstArg(arg.key)"><div style="display: inline-block;">{{arg.key}}</div> <div class="info-menu-icon"><mat-icon [matTooltip]="arg.description">info</mat-icon></div></button>
|
||||
</mat-menu>
|
||||
</ng-container>
|
||||
|
||||
</mat-menu>
|
||||
|
||||
|
||||
|
||||
<button style="margin-bottom: 15px" mat-stroked-button [matMenuTriggerFor]="argsByCategoryMenu"><ng-container i18n="Search args by category button">Search by category</ng-container></button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<mat-checkbox color="accent" [ngModelOptions]="{standalone: true}" [(ngModel)]="secondArgEnabled"><ng-container i18n="Use arg value checkbox">Use arg value</ng-container></mat-checkbox>
|
||||
</div>
|
||||
<div *ngIf="secondArgEnabled">
|
||||
<mat-form-field style="width: 75%" color="accent">
|
||||
<input [ngModelOptions]="{standalone: true}" matInput [disabled]="!secondArgEnabled" placeholder="Arg value" i18n-placeholder="Arg value placeholder" [(ngModel)]="secondArg">
|
||||
</mat-form-field>
|
||||
</div>
|
||||
</form>
|
||||
<div>
|
||||
<button (click)="addArg()" [disabled]="!canAddArg()" mat-stroked-button color="accent"><ng-container i18n="Search args by category button">Add arg</ng-container></button>
|
||||
</div>
|
||||
</mat-card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</mat-dialog-content>
|
||||
|
||||
<mat-dialog-actions>
|
||||
<button mat-button mat-dialog-close><ng-container i18n="Arg modifier cancel button">Cancel</ng-container></button>
|
||||
<button mat-button color="accent" [mat-dialog-close]="modified_args"><ng-container i18n="Arg modifier modify button">Modify</ng-container></button>
|
||||
</mat-dialog-actions>
|
@ -0,0 +1,3 @@
|
||||
.info-menu-icon {
|
||||
float: right;
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ArgModifierDialogComponent } from './arg-modifier-dialog.component';
|
||||
|
||||
describe('ArgModifierDialogComponent', () => {
|
||||
let component: ArgModifierDialogComponent;
|
||||
let fixture: ComponentFixture<ArgModifierDialogComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ ArgModifierDialogComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(ArgModifierDialogComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
@ -0,0 +1,117 @@
|
||||
import { Component, OnInit, Inject, Pipe, PipeTransform, NgModule } from '@angular/core';
|
||||
import { MAT_DIALOG_DATA, MatDialogRef, MatDialog } from '@angular/material/dialog';
|
||||
import { FormControl } from '@angular/forms';
|
||||
import { args, args_info } from './youtubedl_args';
|
||||
import { Observable } from 'rxjs';
|
||||
import { map } from 'rxjs/operators/map';
|
||||
import { startWith } from 'rxjs/operators/startWith';
|
||||
|
||||
@Pipe({ name: 'highlight' })
|
||||
export class HighlightPipe implements PipeTransform {
|
||||
transform(text: string, search): string {
|
||||
const pattern = search ? search
|
||||
.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&')
|
||||
.split(' ')
|
||||
.filter(t => t.length > 0)
|
||||
.join('|') : undefined;
|
||||
const regex = new RegExp(pattern, 'gi');
|
||||
|
||||
return search ? text.replace(regex, match => `<b>${match}</b>`) : text;
|
||||
}
|
||||
};
|
||||
|
||||
@Component({
|
||||
selector: 'app-arg-modifier-dialog',
|
||||
templateUrl: './arg-modifier-dialog.component.html',
|
||||
providers: [HighlightPipe],
|
||||
styleUrls: ['./arg-modifier-dialog.component.scss'],
|
||||
})
|
||||
export class ArgModifierDialogComponent implements OnInit {
|
||||
myGroup = new FormControl();
|
||||
firstArg = '';
|
||||
secondArg = '';
|
||||
secondArgEnabled = false;
|
||||
modified_args = '';
|
||||
stateCtrl = new FormControl();
|
||||
availableArgs = null;
|
||||
argsByCategory = null;
|
||||
argsInfo = null;
|
||||
filteredOptions: Observable<any>;
|
||||
|
||||
static forRoot() {
|
||||
return {
|
||||
ngModule: ArgModifierDialogComponent,
|
||||
providers: [],
|
||||
};
|
||||
}
|
||||
|
||||
constructor(@Inject(MAT_DIALOG_DATA) public data: any, public dialogRef: MatDialogRef<ArgModifierDialogComponent>,
|
||||
private dialog: MatDialog) { }
|
||||
|
||||
ngOnInit(): void {
|
||||
if (this.data) {
|
||||
this.modified_args = this.data.initial_args;
|
||||
}
|
||||
|
||||
this.getAllPossibleArgs();
|
||||
|
||||
// autocomplete setup
|
||||
this.filteredOptions = this.stateCtrl.valueChanges
|
||||
.pipe(
|
||||
startWith(''),
|
||||
map(val => this.filter(val))
|
||||
);
|
||||
}
|
||||
|
||||
// autocomplete filter
|
||||
filter(val) {
|
||||
if (this.availableArgs) {
|
||||
return this.availableArgs.filter(option =>
|
||||
option.key.toLowerCase().includes(val.toLowerCase()));
|
||||
}
|
||||
}
|
||||
|
||||
addArg() {
|
||||
// adds space
|
||||
if (this.modified_args !== '') {
|
||||
this.modified_args += ' ';
|
||||
}
|
||||
|
||||
this.modified_args += this.stateCtrl.value + ' ' + (this.secondArgEnabled ? this.secondArg : '');
|
||||
}
|
||||
|
||||
canAddArg() {
|
||||
return this.stateCtrl.value && this.stateCtrl.value !== '' && (!this.secondArgEnabled || (this.secondArg && this.secondArg !== ''));
|
||||
}
|
||||
|
||||
getFirstArg() {
|
||||
return new Promise(resolve => {
|
||||
resolve(this.stateCtrl.value);
|
||||
});
|
||||
}
|
||||
|
||||
getValueAsync(val) {
|
||||
return new Promise(resolve => {
|
||||
resolve(val);
|
||||
});
|
||||
}
|
||||
|
||||
getAllPossibleArgs() {
|
||||
const all_args = args;
|
||||
const arg_arrays = Object.keys(all_args).map(function(key) {
|
||||
return all_args[key];
|
||||
});
|
||||
|
||||
// converts array of arrays to one array
|
||||
const singular_arg_array = [].concat.apply([], arg_arrays);
|
||||
|
||||
this.availableArgs = singular_arg_array;
|
||||
this.argsByCategory = all_args;
|
||||
this.argsInfo = args_info;
|
||||
}
|
||||
|
||||
setFirstArg(arg_key) {
|
||||
this.stateCtrl.setValue(arg_key);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,230 @@
|
||||
const uncategorized = [
|
||||
{'key': '-h', 'alt': '--help', 'description': 'Print this help text and exit'},
|
||||
{'key': '--version', 'description': 'Print program version and exit'},
|
||||
{'key': '-U', 'alt': '--update', 'description': 'Update this program to latest version. Make sure that you have sufficient permissions (run with sudo if needed)'},
|
||||
{'key': '-i', 'alt': '--ignore-errors', 'description': 'Continue on download errors, for example to skip unavailable videos in a playlist'},
|
||||
{'key': '--abort-on-error', 'description': 'Abort downloading of further videos (in the playlist or the command line) if an error occurs'},
|
||||
{'key': '--dump-user-agent', 'description': 'Display the current browser identification'},
|
||||
{'key': '--list-extractors', 'description': 'List all supported extractors'},
|
||||
{'key': '--extractor-descriptions', 'description': 'Output descriptions of all supported extractors'},
|
||||
{'key': '--force-generic-extractor', 'description': 'Force extraction to use the generic extractor'},
|
||||
{'key': '--default-search', 'description': 'Use this prefix for unqualified URLs. For example "gvsearch2:" downloads two videos from google videos for youtube-dl "large apple". Use the value "auto" to let youtube-dl guess ("auto_warning" to emit awarning when guessing). "error" just throws an error. The default value "fixup_error" repairs broken URLs, but emits an error if this is not possible instead of searching.'},
|
||||
{'key': '--ignore-config', 'description': 'Do not read configuration files. When given in the global configuration file /etc/youtube-dl.conf: Do not read the user configuration in ~/.config/youtube-dl/config (%APPDATA%/youtube-dl/config.txt on Windows)'},
|
||||
{'key': '--config-location', 'description': 'Location of the configuration file; either the path to the config or its containing directory.'},
|
||||
{'key': '--flat-playlist', 'description': 'Do not extract the videos of a playlist, only list them.'},
|
||||
{'key': '--mark-watched', 'description': 'Mark videos watched (YouTube only)'},
|
||||
{'key': '--no-mark-watched', 'description': 'Do not mark videos watched (YouTube only)'},
|
||||
{'key': '--no-color', 'description': 'Do not emit color codes in output'}
|
||||
];
|
||||
|
||||
const network = [
|
||||
{'key': '--proxy', 'description': 'Use the specified HTTP/HTTPS/SOCKS proxy.To enable SOCKS proxy, specify a proper scheme. For example socks5://127.0.0.1:1080/. Pass in an empty string (--proxy "") for direct connection.'},
|
||||
{'key': '--socket-timeout', 'description': 'Time to wait before giving up, in seconds'},
|
||||
{'key': '--source-address', 'description': 'Client-side IP address to bind to'},
|
||||
{'key': '-4', 'alt': '--force-ipv4', 'description': 'Make all connections via IPv4'},
|
||||
{'key': '-6', 'alt': '--force-ipv6', 'description': 'Make all connections via IPv6'}
|
||||
];
|
||||
|
||||
const geo_restriction = [
|
||||
{'key': '--geo-verification-proxy', 'description': 'Use this proxy to verify the IP address for some geo-restricted sites. The default proxy specified by --proxy\', if the option is not present) is used for the actual downloading.'},
|
||||
{'key': '--geo-bypass', 'description': 'Bypass geographic restriction via faking X-Forwarded-For HTTP header'},
|
||||
{'key': '--no-geo-bypass', 'description': 'Do not bypass geographic restriction via faking X-Forwarded-For HTTP header'},
|
||||
{'key': '--geo-bypass-country', 'description': 'Force bypass geographic restriction with explicitly provided two-letter ISO 3166-2 country code'},
|
||||
{'key': '--geo-bypass-ip-block', 'description': 'Force bypass geographic restriction with explicitly provided IP block in CIDR notation'}
|
||||
];
|
||||
|
||||
const video_selection = [
|
||||
{'key': '--playlist-start', 'description': 'Playlist video to start at (default is 1)'},
|
||||
{'key': '--playlist-end', 'description': 'Playlist video to end at (default is last)'},
|
||||
{'key': '--playlist-items', 'description': 'Playlist video items to download. Specify indices of the videos in the playlist separated by commas like: "--playlist-items 1,2,5,8" if you want to download videos indexed 1, 2, 5, 8 in the playlist. You can specify range: "--playlist-items 1-3,7,10-13", it will download the videos at index 1, 2, 3, 7, 10, 11, 12 and 13.'},
|
||||
{'key': '--match-title', 'description': 'Download only matching titles (regex orcaseless sub-string)'},
|
||||
{'key': '--reject-title', 'description': 'Skip download for matching titles (regex orcaseless sub-string)'},
|
||||
{'key': '--max-downloads', 'description': 'Abort after downloading NUMBER files'},
|
||||
{'key': '--min-filesize', 'description': 'Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)'},
|
||||
{'key': '--max-filesize', 'description': 'Do not download any videos larger than SIZE (e.g. 50k or 44.6m)'},
|
||||
{'key': '--date', 'description': 'Download only videos uploaded in this date'},
|
||||
{'key': '--datebefore', 'description': 'Download only videos uploaded on or before this date (i.e. inclusive)'},
|
||||
{'key': '--dateafter', 'description': 'Download only videos uploaded on or after this date (i.e. inclusive)'},
|
||||
{'key': '--min-views', 'description': 'Do not download any videos with less than COUNT views'},
|
||||
{'key': '--max-views', 'description': 'Do not download any videos with more than COUNT views'},
|
||||
{'key': '--match-filter', 'description': 'Generic video filter. Specify any key (seethe "OUTPUT TEMPLATE" for a list of available keys) to match if the key is present, !key to check if the key is not present, key > NUMBER (like "comment_count > 12", also works with >=, <, <=, !=, =) to compare against a number, key = \'LITERAL\' (like "uploader = \'Mike Smith\'", also works with !=) to match against a string literal and & to require multiple matches. Values which are not known are excluded unless you put a question mark (?) after the operator. For example, to only match videos that have been liked more than 100 times and disliked less than 50 times (or the dislike functionality is not available at the given service), but who also have a description, use --match-filter'},
|
||||
{'key': '--no-playlist', 'description': 'Download only the video, if the URL refers to a video and a playlist.'},
|
||||
{'key': '--yes-playlist', 'description': 'Download the playlist, if the URL refers to a video and a playlist.'},
|
||||
{'key': '--age-limit', 'description': 'Download only videos suitable for the given age'},
|
||||
{'key': '--download-archive', 'description': 'Download only videos not listed in the archive file. Record the IDs of all downloaded videos in it.'},
|
||||
{'key': '--include-ads', 'description': 'Download advertisements as well (experimental)'}
|
||||
];
|
||||
|
||||
const download = [
|
||||
{'key': '-r', 'alt': '--limit-rate', 'description': 'Maximum download rate in bytes per second(e.g. 50K or 4.2M)'},
|
||||
{'key': '-R', 'alt': '--retries', 'description': 'Number of retries (default is 10), or "infinite".'},
|
||||
{'key': '--fragment-retries', 'description': 'Number of retries for a fragment (default is 10), or "infinite" (DASH, hlsnative and ISM)'},
|
||||
{'key': '--skip-unavailable-fragments', 'description': 'Skip unavailable fragments (DASH, hlsnative and ISM)'},
|
||||
{'key': '--abort-on-unavailable-fragment', 'description': 'Abort downloading when some fragment is not available'},
|
||||
{'key': '--keep-fragments', 'description': 'Keep downloaded fragments on disk after downloading is finished; fragments are erased by default'},
|
||||
{'key': '--buffer-size', 'description': 'Size of download buffer (e.g. 1024 or 16K) (default is 1024)'},
|
||||
{'key': '--no-resize-buffer', 'description': 'Do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.'},
|
||||
{'key': '--http-chunk-size', 'description': 'Size of a chunk for chunk-based HTTP downloading (e.g. 10485760 or 10M) (default is disabled). May be useful for bypassing bandwidth throttling imposed by a webserver (experimental)'},
|
||||
{'key': '--playlist-reverse', 'description': 'Download playlist videos in reverse order'},
|
||||
{'key': '--playlist-random', 'description': 'Download playlist videos in random order'},
|
||||
{'key': '--xattr-set-filesize', 'description': 'Set file xattribute ytdl.filesize with expected file size'},
|
||||
{'key': '--hls-prefer-native', 'description': 'Use the native HLS downloader instead of ffmpeg'},
|
||||
{'key': '--hls-prefer-ffmpeg', 'description': 'Use ffmpeg instead of the native HLS downloader'},
|
||||
{'key': '--hls-use-mpegts', 'description': 'Use the mpegts container for HLS videos, allowing to play the video while downloading (some players may not be able to play it)'},
|
||||
{'key': '--external-downloader', 'description': 'Use the specified external downloader. Currently supports aria2c,avconv,axel,curl,ffmpeg,httpie,wget'},
|
||||
{'key': '--external-downloader-args'}
|
||||
];
|
||||
|
||||
const filesystem = [
|
||||
{'key': '-a', 'alt': '--batch-file', 'description': 'File containing URLs to download (\'-\' for stdin), one URL per line. Lines starting with \'#\', \';\' or \']\' are considered as comments and ignored.'},
|
||||
{'key': '--id', 'description': 'Use only video ID in file name'},
|
||||
{'key': '-o', 'alt': '--output', 'description': 'Output filename template, see the "OUTPUT TEMPLATE" for all the info'},
|
||||
{'key': '--autonumber-start', 'description': 'Specify the start value for %(autonumber)s (default is 1)'},
|
||||
{'key': '--restrict-filenames', 'description': 'Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames'},
|
||||
{'key': '-w', 'alt': '--no-overwrites', 'description': 'Do not overwrite files'},
|
||||
{'key': '-c', 'alt': '--continue', 'description': 'Force resume of partially downloaded files. By default, youtube-dl will resume downloads if possible.'},
|
||||
{'key': '--no-continue', 'description': 'Do not resume partially downloaded files (restart from beginning)'},
|
||||
{'key': '--no-part', 'description': 'Do not use .part files - write directlyinto output file'},
|
||||
{'key': '--no-mtime', 'description': 'Do not use the Last-modified header to set the file modification time'},
|
||||
{'key': '--write-description', 'description': 'Write video description to a .description file'},
|
||||
{'key': '--write-info-json', 'description': 'Write video metadata to a .info.json file'},
|
||||
{'key': '--write-annotations', 'description': 'Write video annotations to a.annotations.xml file'},
|
||||
{'key': '--load-info-json', 'description': 'JSON file containing the video information (created with the "--write-info-json" option)'},
|
||||
{'key': '--cookies', 'description': 'File to read cookies from and dump cookie jar in'},
|
||||
{'key': '--cache-dir', 'description': 'Location in the file system where youtube-dl can store some downloaded information permanently. By default $XDG_CACHE_HOME/youtube-dl or ~/.cache/youtube-dl . At the moment, only YouTube player files (for videos with obfuscated signatures) are cached, but that may change.'},
|
||||
{'key': '--no-cache-dir', 'description': 'Disable filesystem caching'},
|
||||
{'key': '--rm-cache-dir', 'description': 'Delete all filesystem cache files'}
|
||||
];
|
||||
|
||||
const thumbnail = [
|
||||
{'key': '--write-thumbnail', 'description': 'Write thumbnail image to disk'},
|
||||
{'key': '--write-all-thumbnails', 'description': 'Write all thumbnail image formats to disk'},
|
||||
{'key': '--list-thumbnails', 'description': 'Simulate and list all available thumbnail formats'}
|
||||
];
|
||||
|
||||
const verbosity = [
|
||||
{'key': '-q', 'alt': '--quiet', 'description': 'Activate quiet mode'},
|
||||
{'key': '--no-warnings', 'description': 'Ignore warnings'},
|
||||
{'key': '-s', 'alt': '--simulate', 'description': 'Do not download the video and do not writeanything to disk'},
|
||||
{'key': '--skip-download', 'description': 'Do not download the video'},
|
||||
{'key': '-g', 'alt': '--get-url', 'description': 'Simulate, quiet but print URL'},
|
||||
{'key': '-e', 'alt': '--get-title', 'description': 'Simulate, quiet but print title'},
|
||||
{'key': '--get-id', 'description': 'Simulate, quiet but print id'},
|
||||
{'key': '--get-thumbnail', 'description': 'Simulate, quiet but print thumbnail URL'},
|
||||
{'key': '--get-description', 'description': 'Simulate, quiet but print video description'},
|
||||
{'key': '--get-duration', 'description': 'Simulate, quiet but print video length'},
|
||||
{'key': '--get-filename', 'description': 'Simulate, quiet but print output filename'},
|
||||
{'key': '--get-format', 'description': 'Simulate, quiet but print output format'},
|
||||
{'key': '-j', 'alt': '--dump-json', 'description': 'Simulate, quiet but print JSON information. See the "OUTPUT TEMPLATE" for a description of available keys.'},
|
||||
{'key': '-J', 'alt': '--dump-single-json', 'description': 'Simulate, quiet but print JSON information for each command-line argument. If the URL refers to a playlist, dump the whole playlist information in a single line.'},
|
||||
{'key': '--print-json', 'description': 'Be quiet and print the video information as JSON (video is still being downloaded).'},
|
||||
{'key': '--newline', 'description': 'Output progress bar as new lines'},
|
||||
{'key': '--no-progress', 'description': 'Do not print progress bar'},
|
||||
{'key': '--console-title', 'description': 'Display progress in console title bar'},
|
||||
{'key': '-v', 'alt': '--verbose', 'description': 'Print various debugging information'},
|
||||
{'key': '--dump-pages', 'description': 'Print downloaded pages encoded using base64 to debug problems (very verbose)'},
|
||||
{'key': '--write-pages', 'description': 'Write downloaded intermediary pages to files in the current directory to debug problems'},
|
||||
{'key': '--print-traffic', 'description': 'Display sent and read HTTP traffic'},
|
||||
{'key': '-C', 'alt': '--call-home', 'description': 'Contact the youtube-dl server for debugging'},
|
||||
{'key': '--no-call-home', 'description': 'Do NOT contact the youtube-dl server for debugging'}
|
||||
];
|
||||
|
||||
const workarounds = [
|
||||
{'key': '--encoding', 'description': 'Force the specified encoding (experimental)'},
|
||||
{'key': '--no-check-certificate', 'description': 'Suppress HTTPS certificate validation'},
|
||||
{'key': '--prefer-insecure', 'description': 'Use an unencrypted connection to retrieve information about the video. (Currently supported only for YouTube)'},
|
||||
{'key': '--user-agent', 'description': 'Specify a custom user agent'},
|
||||
{'key': '--referer', 'description': 'Specify a custom referer, use if the video access is restricted to one domain'},
|
||||
{'key': '--add-header', 'description': 'Specify a custom HTTP header and its value, separated by a colon \':\'. You can use this option multiple times'},
|
||||
{'key': '--bidi-workaround', 'description': 'Work around terminals that lack bidirectional text support. Requires bidiv or fribidi executable in PATH'},
|
||||
{'key': '--sleep-interval', 'description': 'Number of seconds to sleep before each download when used alone or a lower boundof a range for randomized sleep before each download (minimum possible number of seconds to sleep) when used along with --max-sleep-interval'},
|
||||
{'key': '--max-sleep-interval', 'description': 'Upper bound of a range for randomized sleep before each download (maximum possible number of seconds to sleep). Must only beused along with --min-sleep-interval'}
|
||||
]
|
||||
|
||||
const video_format = [
|
||||
{'key': '-f', 'alt': '--format', 'description': 'Video format code, see the "FORMAT SELECTION" for all the info'},
|
||||
{'key': '--all-formats', 'description': 'Download all available video formats'},
|
||||
{'key': '--prefer-free-formats', 'description': 'Prefer free video formats unless a specific one is requested'},
|
||||
{'key': '-F', 'alt': '--list-formats', 'description': 'List all available formats of requested videos'},
|
||||
{'key': '--youtube-skip-dash-manifest', 'description': 'Do not download the DASH manifests and related data on YouTube videos'},
|
||||
{'key': '--merge-output-format', 'description': 'If a merge is required (e.g. bestvideo+bestaudio), output to given container format. One of mkv, mp4, ogg, webm, flv. Ignored if no merge is required'}
|
||||
];
|
||||
|
||||
const subtitle = [
|
||||
{'key': '--write-sub', 'description': 'Write subtitle file'},
|
||||
{'key': '--write-auto-sub', 'description': 'Write automatically generated subtitle file (YouTube only)'},
|
||||
{'key': '--all-subs', 'description': 'Download all the available subtitles of the video'},
|
||||
{'key': '--list-subs', 'description': 'List all available subtitles for the video'},
|
||||
{'key': '--sub-format', 'description': 'Subtitle format, accepts formats preference, for example: "srt" or "ass/srt/best"'},
|
||||
{'key': '--sub-lang', 'description': 'Languages of the subtitles to download (optional) separated by commas, use --list-subs'}
|
||||
];
|
||||
|
||||
const authentication = [
|
||||
{'key': '-u', 'alt': '--username', 'description': 'Login with this account ID'},
|
||||
{'key': '-p', 'alt': '--password', 'description': 'Account password. If this option is left out, youtube-dl will ask interactively.'},
|
||||
{'key': '-2', 'alt': '--twofactor', 'description': 'Two-factor authentication code'},
|
||||
{'key': '-n', 'alt': '--netrc', 'description': 'Use .netrc authentication data'},
|
||||
{'key': '--video-password', 'description': 'Video password (vimeo, smotri, youku)'}
|
||||
];
|
||||
|
||||
const adobe_pass = [
|
||||
{'key': '--ap-mso', 'description': 'Adobe Pass multiple-system operator (TV provider) identifier, use --ap-list-mso'},
|
||||
{'key': '--ap-username', 'description': 'Multiple-system operator account login'},
|
||||
{'key': '--ap-password', 'description': 'Multiple-system operator account password. If this option is left out, youtube-dl will ask interactively.'},
|
||||
{'key': '--ap-list-mso', 'description': 'List all supported multiple-system operators'}
|
||||
];
|
||||
|
||||
const post_processing = [
|
||||
{'key': '-x', 'alt': '--extract-audio', 'description': 'Convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)'},
|
||||
{'key': '--audio-format', 'description': 'Specify audio format: "best", "aac", "flac", "mp3", "m4a", "opus", "vorbis", or "wav"; "best" by default; No effect without -x'},
|
||||
{'key': '--audio-quality', 'description': 'Specify ffmpeg/avconv audio quality, insert a value between 0 (better) and 9 (worse)for VBR or a specific bitrate like 128K (default 5)'},
|
||||
{'key': '--recode-video', 'description': 'Encode the video to another format if necessary (currently supported:mp4|flv|ogg|webm|mkv|avi)'},
|
||||
{'key': '--postprocessor-args', 'description': 'Give these arguments to the postprocessor'},
|
||||
{'key': '-k', 'alt': '--keep-video', 'description': 'Keep the video file on disk after the post-processing; the video is erased by default'},
|
||||
{'key': '--no-post-overwrites', 'description': 'Do not overwrite post-processed files; the post-processed files are overwritten by default'},
|
||||
{'key': '--embed-subs', 'description': 'Embed subtitles in the video (only for mp4,webm and mkv videos)'},
|
||||
{'key': '--embed-thumbnail', 'description': 'Embed thumbnail in the audio as cover art'},
|
||||
{'key': '--add-metadata', 'description': 'Write metadata to the video file'},
|
||||
{'key': '--metadata-from-title', 'description': 'Parse additional metadata like song title/artist from the video title. The format syntax is the same as --output'},
|
||||
{'key': '--xattrs', 'description': 'Write metadata to the video file\'s xattrs (using dublin core and xdg standards)'},
|
||||
{'key': '--fixup', 'description': 'Automatically correct known faults of the file. One of never (do nothing), warn (only emit a warning), detect_or_warn (the default; fix file if we can, warn otherwise)'},
|
||||
{'key': '--prefer-avconv', 'description': 'Prefer avconv over ffmpeg for running the postprocessors'},
|
||||
{'key': '--prefer-ffmpeg', 'description': 'Prefer ffmpeg over avconv for running the postprocessors (default)'},
|
||||
{'key': '--ffmpeg-location', 'description': 'Location of the ffmpeg/avconv binary; either the path to the binary or its containing directory.'},
|
||||
{'key': '--exec', 'description': 'Execute a command on the file after downloading, similar to find\'s -exec syntax. Example: --exec'},
|
||||
{'key': '--convert-subs', 'description': 'Convert the subtitles to other format (currently supported: srt|ass|vtt|lrc)'}
|
||||
];
|
||||
|
||||
export const args_info = {
|
||||
'uncategorized' : {'label': 'Main'},
|
||||
'network' : {'label': 'Network'},
|
||||
'geo_restriction': {'label': 'Geo Restriction'},
|
||||
'video_selection': {'label': 'Video Selection'},
|
||||
'download' : {'label': 'Download'},
|
||||
'filesystem' : {'label': 'Filesystem'},
|
||||
'thumbnail' : {'label': 'Thumbnail'},
|
||||
'verbosity' : {'label': 'Verbosity'},
|
||||
'workarounds' : {'label': 'Workarounds'},
|
||||
'video_format' : {'label': 'Video Format'},
|
||||
'subtitle' : {'label': 'Subtitle'},
|
||||
'authentication' : {'label': 'Authentication'},
|
||||
'adobe_pass' : {'label': 'Adobe Pass'},
|
||||
'post_processing': {'label': 'Post Processing'},
|
||||
};
|
||||
|
||||
export const args = {
|
||||
'uncategorized' : uncategorized,
|
||||
'network' : network,
|
||||
'geo_restriction': geo_restriction,
|
||||
'video_selection': video_selection,
|
||||
'download' : download,
|
||||
'filesystem' : filesystem,
|
||||
'thumbnail' : thumbnail,
|
||||
'verbosity' : verbosity,
|
||||
'workarounds' : workarounds,
|
||||
'video_format' : video_format,
|
||||
'subtitle' : subtitle,
|
||||
'authentication' : authentication,
|
||||
'adobe_pass' : adobe_pass,
|
||||
'post_processing': post_processing
|
||||
}
|
@ -1,987 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file datatype="plaintext" original="ng2.template" source-language="en">
|
||||
<body>
|
||||
<trans-unit datatype="html" id="17f0ea5d2d7a262b0e875acc70475f102aee84e6">
|
||||
<source>Create a playlist</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/create-playlist/create-playlist.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Create a playlist dialog title</note>
|
||||
<target>Crea una lista de reproducción</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cff1428d10d59d14e45edec3c735a27b5482db59">
|
||||
<source>Name</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/create-playlist/create-playlist.component.html</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Playlist name placeholder</note>
|
||||
<target>Nombre</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f47e2d56dd8a145b2e9599da9730c049d52962a2">
|
||||
<source>Audio files</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/create-playlist/create-playlist.component.html</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Audio files title</note>
|
||||
<target>Archivos de sonido</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a52dae09be10ca3a65da918533ced3d3f4992238">
|
||||
<source>Videos</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/create-playlist/create-playlist.component.html</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscription/subscription/subscription.component.html</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Videos title</note>
|
||||
<target>Archivos de video</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="038ebcb2a89155d90c24fa1c17bfe83dbadc3c20">
|
||||
<source>Youtube Downloader</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Youtube downloader home page label</note>
|
||||
<target>Descargador de Youtube</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="6d2ec8898344c8955542b0542c942038ef28bb80">
|
||||
<source>Please enter a valid URL!</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Enter valid URL error</note>
|
||||
<target>Por favor entre una URL válida</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a38ae1082fec79ba1f379978337385a539a28e73">
|
||||
<source>Quality</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Quality select label</note>
|
||||
<target>Calidad</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4be966a9dcfbc9b54dfcc604b831c0289f847fa4">
|
||||
<source>Use URL</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">YT search Use URL button for searched video</note>
|
||||
<target>Usa URL</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d3f02f845e62cebd75fde451ab8479d2a8ad784d">
|
||||
<source>View</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">YT search View button for searched video</note>
|
||||
<target>Ver</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a9889d36910edc8323d7bab60858ab3da6d91df">
|
||||
<source>Only Audio</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">65</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Only Audio checkbox</note>
|
||||
<target>Solo audio</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="96a01fafe135afc58b0f8071a4ab00234495ce18">
|
||||
<source>Multi-download Mode</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">70</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Multi-download Mode checkbox</note>
|
||||
<target>Descarga múltiple</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="6a21ba5fb0ac804a525bf9ab168038c3ee88e661">
|
||||
<source>Download</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">79</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Main download button</note>
|
||||
<target>Descarga</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="6a3777f913cf3f288664f0632b9f24794fdcc24e">
|
||||
<source>Cancel</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Cancel download button</note>
|
||||
<target>Cancela</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="322ed150e02666fe2259c5b4614eac7066f4ffa0">
|
||||
<source>Advanced</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Advanced download mode panel</note>
|
||||
<target>Avanzado</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ffe7c6586d6f3f18a9246806a7c7d5538ab43e">
|
||||
<source>Simulated command:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">102</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Simulated command label</note>
|
||||
<target>Commando simulado:</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4e4c721129466be9c3862294dc40241b64045998">
|
||||
<source>Use custom args</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">110</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Use custom args checkbox</note>
|
||||
<target>Usar argumentos personalizados</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ad2f8ac8b7de7945b80c8e424484da94e597125f">
|
||||
<source>Custom args</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Custom args placeholder</note>
|
||||
<target>Argumentos personalizados</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ccc7e92cbdd35e901acf9ad80941abee07bd8f60">
|
||||
<source>No need to include URL, just everything after.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">117</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Custom Args input hint</note>
|
||||
<target>No es necesario incluir URL, solo todo después</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3a92a3443c65a52f37ca7efb8f453b35dbefbf29">
|
||||
<source>Use custom output</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Use custom output checkbox</note>
|
||||
<target>Usar salida personalizada</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d9c02face477f2f9cdaae318ccee5f89856851fb">
|
||||
<source>Custom output</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">130</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Custom output placeholder</note>
|
||||
<target>Salida personalizada</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7">
|
||||
<source>Documentation</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Youtube-dl output template documentation link</note>
|
||||
<target>Documentación</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="19d1ae64d94d28a29b2c57ae8671aace906b5401">
|
||||
<source>Path is relative to the config download path. Don't include extension.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">133</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Custom Output input hint</note>
|
||||
<target>La ruta es relativa a la ruta de descarga de la config. No incluya el extensión.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8fad10737d3e3735a6699a4d89cbf6c20f6bb55f">
|
||||
<source>Use authentication</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">139</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Use authentication checkbox</note>
|
||||
<target>Usa autenticación</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
|
||||
<source>Username</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">YT Username placeholder</note>
|
||||
<target>Nombre de usuario</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c32ef07f8803a223a83ed17024b38e8d82292407">
|
||||
<source>Password</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">149</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">YT Password placeholder</note>
|
||||
<target>Contraseña</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a0dada6e841a425de3e5006e6a04df26c644fa5">
|
||||
<source>Audio</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">193</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Audio files title</note>
|
||||
<target>Audio</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="9779715ac05308973d8f1c8658b29b986e92450f">
|
||||
<source>Your audio files are here</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Audio files description</note>
|
||||
<target>Tus archivos de audio están aquí</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="47546e45bbb476baaaad38244db444c427ddc502">
|
||||
<source>Playlists</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">213</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">255</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscriptions/subscriptions.component.html</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Playlists title</note>
|
||||
<target>Listas de reproducción</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="78bd81adb4609b68cfa4c589222bdc233ba1faaa">
|
||||
<source>No playlists available. Create one from your downloading audio files by clicking the blue plus button.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">224</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">No video playlists available text</note>
|
||||
<target>No hay listas de reproducción disponibles. Cree uno de tus archivos de audio haciendo clic en el botón azul más.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="9d2b62bb0b91e2e17fb4177a7e3d6756a2e6ee33">
|
||||
<source>Video</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">234</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Video files title</note>
|
||||
<target>Vídeo</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="960582a8b9d7942716866ecfb7718309728f2916">
|
||||
<source>Your video files are here</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">239</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Video files description</note>
|
||||
<target>Tus archivos de video son aquí</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0f59c46ca29e9725898093c9ea6b586730d0624e">
|
||||
<source>No playlists available. Create one from your downloading video files by clicking the blue plus button.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/main/main.component.html</context>
|
||||
<context context-type="linenumber">268</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">No video playlists available text</note>
|
||||
<target>No hay listas de reproducción disponibles. Cree uno de tus archivos de video haciendo clic en el botón azul más.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ca3dbbc7f3e011bffe32a10a3ea45cc84f30ecf1">
|
||||
<source>ID:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/file-card/file-card.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/download-item/download-item.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscription-info-dialog/subscription-info-dialog.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">File or playlist ID</note>
|
||||
<target>ID:</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e684046d73bcee88e82f7ff01e2852789a05fc32">
|
||||
<source>Count:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/file-card/file-card.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Playlist video count</note>
|
||||
<target>Cuenta:</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="121cc5391cd2a5115bc2b3160379ee5b36cd7716">
|
||||
<source>Settings</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/app.component.html</context>
|
||||
<context context-type="linenumber">22</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Settings title</note>
|
||||
<target>Configuraciones</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="fe22ca53e651df951dac25b67c17894b0980f767">
|
||||
<source>Host</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Host settings title</note>
|
||||
<target>Host</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="801b98c6f02fe3b32f6afa3ee854c99ed83474e6">
|
||||
<source>URL</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">URL input placeholder</note>
|
||||
<target>URL</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="54c512cca1923ab72faf1a0bd98d3d172469629a">
|
||||
<source>URL this app will be accessed from, without the port.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">URL setting input hint</note>
|
||||
<target>URL desde la que se accederá a esta aplicación, sin el puerto.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cb2741a46e3560f6bc6dfd99d385e86b08b26d72">
|
||||
<source>Port</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Port input placeholder</note>
|
||||
<target>Puerto</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="22e8f1d0423a3b784fe40fab187b92c06541b577">
|
||||
<source>The desired port. Default is 17442.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">22</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Port setting input hint</note>
|
||||
<target>Puerto deseado. El valor predeterminado es 17442.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="948758e1412bb2ecdb98e3a4f1cbb6d7458456f2">
|
||||
<source>Encryption</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">34</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Encryption settings title</note>
|
||||
<target>Cifrado</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbe16a57be414e84b6a68309d08fad894df797d6">
|
||||
<source>Use encryption</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Use encryption setting</note>
|
||||
<target>Usa cifrado</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0c1875a79b7ecc792cc1bebca3e063e40b5764f9">
|
||||
<source>Cert file path</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Cert file path input placeholder</note>
|
||||
<target>Ruta del archivo de certificado</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="736551b93461d2de64b118cf4043eee1d1c2cb2c">
|
||||
<source>Key file path</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Key file path input placeholder</note>
|
||||
<target>Ruta de archivo de clave</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0ba25ad86a240576c4f20a2fada4722ebba77b1e">
|
||||
<source>Downloader</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Downloader settings title</note>
|
||||
<target>Descargador</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ab2756805742e84ad0cc0468f4be2d8aa9f855a5">
|
||||
<source>Audio folder path</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">69</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Audio folder path input placeholder</note>
|
||||
<target>Ruta de la carpeta de audio</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c2c89cdf45d46ea64d2ed2f9ac15dfa4d77e26ca">
|
||||
<source>Path for audio only downloads. It is relative to YTDL-Material's root folder.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">70</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Aduio path setting input hint</note>
|
||||
<target>Ruta para descargas de solo audio. Es relativo a la carpeta raíz de YTDL-Material.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="46826331da1949bd6fb74624447057099c9d20cd">
|
||||
<source>Video folder path</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">76</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Video folder path input placeholder</note>
|
||||
<target>Ruta de la carpeta de video</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="17c92e6d47a213fa95b5aa344b3f258147123f93">
|
||||
<source>Path for video downloads. It is relative to YTDL-Material's root folder.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">77</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Video path setting input hint</note>
|
||||
<target>Ruta de descarga de videos. Es relativo a la carpeta raíz de YTDL-Material.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f41145afc02fd47ef0576ac79acd2c47ebbf4901">
|
||||
<source>Global custom args for downloads on the home page.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Custom args setting input hint</note>
|
||||
<target>Argumentos personalizados globales para descargas en la página de inicio.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d5f69691f9f05711633128b5a3db696783266b58">
|
||||
<source>Extra</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Extra settings title</note>
|
||||
<target>Extra</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="61f8fd90b5f8cb20c70371feb2ee5e1fac5a9095">
|
||||
<source>Top title</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">102</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Top title input placeholder</note>
|
||||
<target>Título superior</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="78d3531417c0d4ba4c90f0d4ae741edc261ec8df">
|
||||
<source>File manager enabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">107</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">File manager enabled setting</note>
|
||||
<target>Administrador de archivos habilitado</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c33bd5392b39dbed36b8e5a1145163a15d45835f">
|
||||
<source>Allow quality select</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">110</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Allow quality seelct setting</note>
|
||||
<target>Permitir selección de calidad</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bda5508e24e0d77debb28bcd9194d8fefb1cfb92">
|
||||
<source>Download only mode</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Download only mode setting</note>
|
||||
<target>Modo de solo descarga</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="09d31c803a7252658694e1e3176b97f5655a3fe3">
|
||||
<source>Allow multi-download mode</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">116</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Allow multi-downloade mode setting</note>
|
||||
<target>Permitir el modo de descarga múltiple</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4">
|
||||
<source>API</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">126</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">API settings title</note>
|
||||
<target>API</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d5d7c61349f3b0859336066e6d453fc35d334fe5">
|
||||
<source>Use YouTube API</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Use YouTube API setting</note>
|
||||
<target>Utilizar la API de YouTube</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ce10d31febb3d9d60c160750570310f303a22c22">
|
||||
<source>Youtube API Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">136</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Youtube API Key setting placeholder</note>
|
||||
<target>Clave API de YouTube</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8602e313cdfa7c4cc475ccbe86459fce3c3fd986">
|
||||
<source>Generating a key is easy!</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">137</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Youtube API Key setting hint</note>
|
||||
<target>¡Generar una clave es fácil!</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="60c855c323706a04ccd2ff22d634bde9b6233bbf">
|
||||
<source>Themes</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Themes settings title</note>
|
||||
<target>Temas</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff7cee38a2259526c519f878e71b964f41db4348">
|
||||
<source>Default</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">155</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Default theme label</note>
|
||||
<target>Defecto</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="adb4562d2dbd3584370e44496969d58c511ecb63">
|
||||
<source>Dark</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/app.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Dark theme label</note>
|
||||
<target>Oscura</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7a6bacee4c31cb5c0ac2d24274fb4610d8858602">
|
||||
<source>Allow theme change</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">161</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Allow theme change setting</note>
|
||||
<target>Permitir cambio de tema</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="357064ca9d9ac859eb618e28e8126fa32be049e2">
|
||||
<source>Subscriptions</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">171</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/app.component.html</context>
|
||||
<context context-type="linenumber">34</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscriptions settings title</note>
|
||||
<target>Suscripciones</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4e3120311801c4acd18de7146add2ee4a4417773">
|
||||
<source>Allow subscriptions</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Allow subscriptions setting</note>
|
||||
<target>Permitir suscripciones</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4bee2a4bef2d26d37c9b353c278e24e5cd309ce3">
|
||||
<source>Subscriptions base path</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscriptions base path input setting placeholder</note>
|
||||
<target>Ruta base de suscripciones</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bc9892814ee2d119ae94378c905ea440a249b84a">
|
||||
<source>Base path for videos from your subscribed channels and playlists. It is relative to YTDL-Material's root folder.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">182</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscriptions base path setting input hint</note>
|
||||
<target>Ruta base para videos de sus canales y listas de reproducción suscritos. Es relativo a la carpeta raíz de YTDL-Material.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5bef4b25ba680da7fff06b86a91b1fc7e6a926e3">
|
||||
<source>Check interval</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">187</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Check interval input setting placeholder</note>
|
||||
<target>Intervalo de comprobación</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0f56a7449b77630c114615395bbda4cab398efd8">
|
||||
<source>Unit is seconds, only include numbers.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Check interval setting input hint</note>
|
||||
<target>La unidad es segundos, solo incluye números.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="78e49b7339b4fa7184dd21bcaae107ce9b7076f6">
|
||||
<source>Use youtube-dl archive</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">192</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Use youtube-dl archive setting</note>
|
||||
<target>Usa el archivo de youtube-dl</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="fa9fe4255231dd1cc6b29d3d254a25cb7c764f0f">
|
||||
<source>With youtube-dl's archive</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">193</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">youtube-dl archive explanation prefix link</note>
|
||||
<target>Con la función de archivo de youtube-dl,</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="09006404cccc24b7a8f8d1ce0b39f2761ab841d8">
|
||||
<source>feature, downloaded videos from your subscriptions get recorded in a text file in the subscriptions archive sub-directory.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">193</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">youtube-dl archive explanation middle</note>
|
||||
<target>los videos descargados de sus suscripciones se graban en un archivo de texto en el subdirectorio del archivo de suscripciones.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="29ed79a98fc01e7f9537777598e31dbde3aa7981">
|
||||
<source>This enables the ability to permanently delete videos from your subscriptions without unsubscribing, and allows you to record which videos you downloaded in case of data loss.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">194</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">youtube-dl archive explanation suffix</note>
|
||||
<target>Esto permite eliminar videos de sus suscripciones de forma permanente sin darse de baja y le permite grabar los videos que descargó en caso de pérdida de datos.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="bc2e854e111ecf2bd7db170da5e3c2ed08181d88">
|
||||
<source>Advanced</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">204</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Advanced settings title</note>
|
||||
<target>Avanzado</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5fab47f146b0a4b809dcebf3db9da94df6299ea1">
|
||||
<source>Use default downloading agent</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">210</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Use default downloading agent setting</note>
|
||||
<target>Usar agente de descarga predeterminado</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cdf75b1bdda80487e2ce1ff264ae171cbc5dc3b1">
|
||||
<source>Custom agent</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Custom agent setting placeholder</note>
|
||||
<target>Agente personalizado</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="dc3d990391c944d1fbfc7cfb402f7b5e112fb3a8">
|
||||
<source>Allow advanced download</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">219</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Allow advanced downloading setting</note>
|
||||
<target>Permitir descarga avanzada</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="52c9a103b812f258bcddc3d90a6e3f46871d25fe">
|
||||
<source>Save</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Settings save button</note>
|
||||
<target>Salvar</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="d7b35c384aecd25a516200d6921836374613dfe7">
|
||||
<source>Cancel</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">232</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Settings cancel button</note>
|
||||
<target>Cancelar</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="92eee6be6de0b11c924e3ab27db30257159c0a7c">
|
||||
<source>Home</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/app.component.html</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Navigation menu Home Page title</note>
|
||||
<target>Inicio</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5b3075e8dc3f3921ec316b0bd83b6d14a06c1a4f">
|
||||
<source>Save changes</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/player/player.component.html</context>
|
||||
<context context-type="linenumber">22</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Playlist save changes button</note>
|
||||
<target>Guardar cambios</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9806cf78ce00eb2613eeca11354a97e033377b8">
|
||||
<source>Subscribe to playlist or channel</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscribe dialog title</note>
|
||||
<target>Suscríbase a la lista de reproducción o al canal</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="93efc99ae087fc116de708ecd3ace86ca237cf30">
|
||||
<source>The playlist or channel URL</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscription URL input hint</note>
|
||||
<target>La lista de reproducción o la URL del canal</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="08f5d0ef937ae17feb1b04aff15ad88911e87baf">
|
||||
<source>Custom name</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscription custom name placeholder</note>
|
||||
<target>Nombre personalizado</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f3f62aa84d59f3a8b900cc9a7eec3ef279a7b4e7">
|
||||
<source>This is optional</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Custom name input hint</note>
|
||||
<target>Esto es opcional</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ea30873bd3f0d5e4fb2378eec3f0a1db77634a28">
|
||||
<source>Download all uploads</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
<context context-type="linenumber">19</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Download all uploads subscription setting</note>
|
||||
<target>Descargar todas las cargas</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="28a678e9cabf86e44c32594c43fa0e890135c20f">
|
||||
<source>Download videos uploaded in the last</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
<context context-type="linenumber">22</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Download time range prefix</note>
|
||||
<target>Descargar videos subidos en el último</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e78c0d60ac39787f62c9159646fe0b3c1ed55a1d">
|
||||
<source>Type:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscription-info-dialog/subscription-info-dialog.component.html</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscription type property</note>
|
||||
<target>Tipo:</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="c52db455cca9109ee47e1a612c3f4117c09eb71b">
|
||||
<source>URL:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscription-info-dialog/subscription-info-dialog.component.html</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscription URL property</note>
|
||||
<target>URL:</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a44d86aa1e6c20ced07aca3a7c081d8db9ded1c6">
|
||||
<source>Archive:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscription-info-dialog/subscription-info-dialog.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscription ID property</note>
|
||||
<target>Archivo:</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8">
|
||||
<source>Close</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscription-info-dialog/subscription-info-dialog.component.html</context>
|
||||
<context context-type="linenumber">23</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Close subscription info button</note>
|
||||
<target>Cerca</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="8efc77bf327659c0fec1f518cf48a98cdcd9dddf">
|
||||
<source>Export Archive</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscription-info-dialog/subscription-info-dialog.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Export Archive button</note>
|
||||
<target>Exportar el archivo</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="3042bd3ad8dffcfeca5fd1ae6159fd1047434e95">
|
||||
<source>Unsubscribe</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/dialogs/subscription-info-dialog/subscription-info-dialog.component.html</context>
|
||||
<context context-type="linenumber">26</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Unsubscribe button</note>
|
||||
<target>Darse de baja</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e2319dec5b4ccfb6ed9f55ccabd63650a8fdf547">
|
||||
<source>Your subscriptions</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscriptions/subscriptions.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscriptions title</note>
|
||||
<target>Sus suscripciones</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="807cf11e6ac1cde912496f764c176bdfdd6b7e19">
|
||||
<source>Channels</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscriptions/subscriptions.component.html</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscriptions channels title</note>
|
||||
<target>Canales</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="29b89f751593e1b347eef103891b7a1ff36ec03f">
|
||||
<source>Name not available. Channel retrieval in progress.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscriptions/subscriptions.component.html</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscription playlist not available text</note>
|
||||
<target>Nombre no disponible. Recuperación de canales en progreso.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4636cd4a1379c50d471e98786098c4d39e1e82ad">
|
||||
<source>You have no channel subscriptions.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscriptions/subscriptions.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">No channel subscriptions text</note>
|
||||
<target>No tienes suscripciones de canal.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2e0a410652cb07d069f576b61eab32586a18320d">
|
||||
<source>Name not available. Playlist retrieval in progress.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscriptions/subscriptions.component.html</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscription playlist not available text</note>
|
||||
<target>Nombre no disponible. Recuperación de listas de reproducción en progreso.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="587b57ced54965d8874c3fd0e9dfedb987e5df04">
|
||||
<source>You have no playlist subscriptions.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscriptions/subscriptions.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">No playlist subscriptions text</note>
|
||||
<target>No tienes suscripciones a listas de reproducción.</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e892ba15f2c6c17e83510e273b3e10fc32ea016">
|
||||
<source>Search</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscription/subscription/subscription.component.html</context>
|
||||
<context context-type="linenumber">19</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Subscription videos search placeholder</note>
|
||||
<target>Buscar</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2054791b822475aeaea95c0119113de3200f5e1c">
|
||||
<source>Length:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscription/subscription-file-card/subscription-file-card.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Video duration label</note>
|
||||
<target>Duración:</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="94e01842dcee90531caa52e4147f70679bac87fe">
|
||||
<source>Delete and redownload</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscription/subscription-file-card/subscription-file-card.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Delete and redownload subscription video button</note>
|
||||
<target>Eliminar y volver a descargar</target>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2031adb51e07a41844e8ba7704b054e98345c9c1">
|
||||
<source>Delete forever</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">app/subscription/subscription-file-card/subscription-file-card.component.html</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Delete forever subscription video button</note>
|
||||
<target>Borrar para siempre</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue