mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-07 20:10:03 +03:00
Compare commits
17 Commits
add-yt-dlp
...
python3-do
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ccb4819a94 | ||
|
|
ce8f90ca1d | ||
|
|
8469ae10ad | ||
|
|
f0e73c1708 | ||
|
|
aa1e36ae35 | ||
|
|
a1841e84ca | ||
|
|
05909877f4 | ||
|
|
90af895552 | ||
|
|
9f908aa3fc | ||
|
|
b56b371ece | ||
|
|
84e54cb4d5 | ||
|
|
42aaecc13a | ||
|
|
aac11b2105 | ||
|
|
bbf94ef982 | ||
|
|
2876cf55db | ||
|
|
375d3b4f38 | ||
|
|
1125de43d7 |
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@@ -15,7 +15,10 @@ jobs:
|
||||
- name: checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: setup node
|
||||
uses: actions/setup-node@v1
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '12'
|
||||
cache: 'npm'
|
||||
- name: install dependencies
|
||||
run: |
|
||||
npm install
|
||||
|
||||
25
.vscode/tasks.json
vendored
Normal file
25
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "start",
|
||||
"problemMatcher": [],
|
||||
"label": "Dev: start frontend",
|
||||
"detail": "ng serve"
|
||||
},
|
||||
{
|
||||
"label": "Dev: start backend",
|
||||
"type": "shell",
|
||||
"command": "set YTDL_MODE=debug && node app.js",
|
||||
"options": {
|
||||
"cwd": "./backend"
|
||||
},
|
||||
"presentation": {
|
||||
"reveal": "always",
|
||||
"panel": "new"
|
||||
},
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -30,6 +30,7 @@ RUN apk add --no-cache \
|
||||
ffmpeg \
|
||||
npm \
|
||||
python2 \
|
||||
python3 \
|
||||
su-exec \
|
||||
&& apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
|
||||
atomicparsley
|
||||
|
||||
@@ -4,7 +4,6 @@ var { promisify } = require('util');
|
||||
var auth_api = require('./authentication/auth');
|
||||
var winston = require('winston');
|
||||
var path = require('path');
|
||||
var youtubedl = require('youtube-dl');
|
||||
var ffmpeg = require('fluent-ffmpeg');
|
||||
var compression = require('compression');
|
||||
var glob = require("glob")
|
||||
@@ -24,15 +23,22 @@ const fetch = require('node-fetch');
|
||||
var URL = require('url').URL;
|
||||
const shortid = require('shortid')
|
||||
const url_api = require('url');
|
||||
var config_api = require('./config.js');
|
||||
var subscriptions_api = require('./subscriptions')
|
||||
var categories_api = require('./categories');
|
||||
var twitch_api = require('./twitch');
|
||||
const CONSTS = require('./consts')
|
||||
const { spawn } = require('child_process')
|
||||
const read_last_lines = require('read-last-lines');
|
||||
var ps = require('ps-node');
|
||||
|
||||
// needed if bin/details somehow gets deleted
|
||||
const DETAILS_BIN_PATH = 'node_modules/youtube-dl/bin/details'
|
||||
if (!fs.existsSync(DETAILS_BIN_PATH)) fs.writeJSONSync(DETAILS_BIN_PATH, {"version":"2000.06.06","path":"node_modules\\youtube-dl\\bin\\youtube-dl.exe","exec":"youtube-dl.exe","downloader":"youtube-dl"})
|
||||
|
||||
var youtubedl = require('youtube-dl');
|
||||
|
||||
var config_api = require('./config.js');
|
||||
var subscriptions_api = require('./subscriptions')
|
||||
var categories_api = require('./categories');
|
||||
var twitch_api = require('./twitch');
|
||||
|
||||
const is_windows = process.platform === 'win32';
|
||||
|
||||
var app = express();
|
||||
@@ -1025,7 +1031,7 @@ async function downloadFileByURL_exec(url, type, options, sessionID = null) {
|
||||
}
|
||||
|
||||
// registers file in DB
|
||||
const file_obj = await db_api.registerFileDB2(full_file_path, options.user, category, null, options.cropFileSettings);
|
||||
const file_obj = await db_api.registerFileDB2(full_file_path, type, options.user, category, null, options.cropFileSettings);
|
||||
|
||||
// TODO: remove the following line
|
||||
if (file_name) file_names.push(file_name);
|
||||
@@ -1366,18 +1372,17 @@ async function autoUpdateYoutubeDL() {
|
||||
const default_downloader = config_api.getConfigItem('ytdl_default_downloader');
|
||||
const tags_url = download_sources[default_downloader]['tags_url'];
|
||||
// get current version
|
||||
let current_app_details_path = 'node_modules/youtube-dl/bin/details';
|
||||
let current_app_details_exists = fs.existsSync(current_app_details_path);
|
||||
let current_app_details_exists = fs.existsSync(DETAILS_BIN_PATH);
|
||||
if (!current_app_details_exists) {
|
||||
logger.warn(`Failed to get youtube-dl binary details at location '${current_app_details_path}'. Generating file...`);
|
||||
fs.writeJSONSync('node_modules/youtube-dl/bin/details', {"version":"2020.00.00", "downloader": default_downloader});
|
||||
logger.warn(`Failed to get youtube-dl binary details at location '${DETAILS_BIN_PATH}'. Generating file...`);
|
||||
fs.writeJSONSync(DETAILS_BIN_PATH, {"version":"2020.00.00", "downloader": default_downloader});
|
||||
}
|
||||
let current_app_details = JSON.parse(fs.readFileSync(current_app_details_path));
|
||||
let current_app_details = JSON.parse(fs.readFileSync(DETAILS_BIN_PATH));
|
||||
let current_version = current_app_details['version'];
|
||||
let current_downloader = current_app_details['downloader'];
|
||||
let stored_binary_path = current_app_details['path'];
|
||||
if (!stored_binary_path || typeof stored_binary_path !== 'string') {
|
||||
// logger.info(`INFO: Failed to get youtube-dl binary path at location: ${current_app_details_path}, attempting to guess actual path...`);
|
||||
// logger.info(`INFO: Failed to get youtube-dl binary path at location: ${DETAILS_BIN_PATH}, attempting to guess actual path...`);
|
||||
const guessed_base_path = 'node_modules/youtube-dl/bin/';
|
||||
const guessed_file_path = guessed_base_path + 'youtube-dl' + (is_windows ? '.exe' : '');
|
||||
if (fs.existsSync(guessed_file_path)) {
|
||||
@@ -1460,16 +1465,14 @@ async function downloadLatestYoutubeDLPBinary(new_version) {
|
||||
}
|
||||
|
||||
function updateDetailsJSON(new_version, downloader) {
|
||||
const details_path = 'node_modules/youtube-dl/bin/details';
|
||||
const details_json = fs.readJSONSync(details_path);
|
||||
const details_json = fs.readJSONSync(DETAILS_BIN_PATH);
|
||||
if (new_version) details_json['version'] = new_version;
|
||||
details_json['downloader'] = downloader;
|
||||
fs.writeJSONSync(details_path, details_json);
|
||||
fs.writeJSONSync(DETAILS_BIN_PATH, details_json);
|
||||
}
|
||||
|
||||
function getCurrentDownloader() {
|
||||
const details_path = 'node_modules/youtube-dl/bin/details';
|
||||
const details_json = fs.readJSONSync(details_path);
|
||||
const details_json = fs.readJSONSync(DETAILS_BIN_PATH);
|
||||
return details_json['downloader'];
|
||||
}
|
||||
|
||||
@@ -1580,7 +1583,8 @@ app.post('/api/setConfig', optionalJwt, function(req, res) {
|
||||
});
|
||||
|
||||
app.post('/api/restartServer', optionalJwt, (req, res) => {
|
||||
restartServer();
|
||||
// delayed by a little bit so that the client gets a response
|
||||
setTimeout(() => {restartServer()}, 100);
|
||||
res.send({success: true});
|
||||
});
|
||||
|
||||
@@ -1609,7 +1613,7 @@ app.post('/api/transferDB', optionalJwt, async (req, res) => {
|
||||
app.post('/api/testConnectionString', optionalJwt, async (req, res) => {
|
||||
let success = null;
|
||||
let error = '';
|
||||
success = await db_api.connectToDB(5, true);
|
||||
success = await db_api.connectToDB(0, true);
|
||||
if (!success) error = 'Connection string failed.';
|
||||
|
||||
res.send({success: success, error: error});
|
||||
@@ -2399,14 +2403,17 @@ app.get('/api/stream', optionalJwt, async (req, res) => {
|
||||
let uid = decodeURIComponent(req.query.uid);
|
||||
|
||||
let file_path = null;
|
||||
let file_obj = null;
|
||||
|
||||
const multiUserMode = config_api.getConfigItem('ytdl_multi_user_mode');
|
||||
if (!multiUserMode || req.isAuthenticated() || req.can_watch) {
|
||||
const file_obj = await db_api.getVideo(uid, uuid, sub_id);
|
||||
file_obj = await db_api.getVideo(uid, uuid, sub_id);
|
||||
if (file_obj) file_path = file_obj['path'];
|
||||
else file_path = null;
|
||||
}
|
||||
|
||||
if (!fs.existsSync(file_path)) {
|
||||
logger.error(`File ${file_path} could not be found! UID: ${uid}, ID: ${file_obj.id}`);
|
||||
}
|
||||
const stat = fs.statSync(file_path)
|
||||
const fileSize = stat.size
|
||||
const range = req.headers.range
|
||||
|
||||
@@ -76,22 +76,25 @@ exports.connectToDB = async (retries = 5, no_fallback = false) => {
|
||||
const success = await exports._connectToDB();
|
||||
if (success) return true;
|
||||
|
||||
logger.warn(`MongoDB connection failed! Retrying ${retries} times...`);
|
||||
const retry_delay_ms = 2000;
|
||||
for (let i = 0; i < retries; i++) {
|
||||
const retry_succeeded = await exports._connectToDB();
|
||||
if (retry_succeeded) {
|
||||
logger.info(`Successfully connected to DB after ${i+1} attempt(s)`);
|
||||
return true;
|
||||
}
|
||||
if (retries) {
|
||||
logger.warn(`MongoDB connection failed! Retrying ${retries} times...`);
|
||||
const retry_delay_ms = 2000;
|
||||
for (let i = 0; i < retries; i++) {
|
||||
const retry_succeeded = await exports._connectToDB();
|
||||
if (retry_succeeded) {
|
||||
logger.info(`Successfully connected to DB after ${i+1} attempt(s)`);
|
||||
return true;
|
||||
}
|
||||
|
||||
if (i !== retries - 1) {
|
||||
logger.warn(`Retry ${i+1} failed, waiting ${retry_delay_ms}ms before trying again.`);
|
||||
await utils.wait(retry_delay_ms);
|
||||
} else {
|
||||
logger.warn(`Retry ${i+1} failed.`);
|
||||
if (i !== retries - 1) {
|
||||
logger.warn(`Retry ${i+1} failed, waiting ${retry_delay_ms}ms before trying again.`);
|
||||
await utils.wait(retry_delay_ms);
|
||||
} else {
|
||||
logger.warn(`Retry ${i+1} failed.`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (no_fallback) {
|
||||
logger.error('Failed to connect to MongoDB. Verify your connection string is valid.');
|
||||
return;
|
||||
@@ -413,6 +416,7 @@ exports.createPlaylist = async (playlist_name, uids, type, thumbnail_url, user_u
|
||||
thumbnailURL: thumbnail_url,
|
||||
type: type,
|
||||
registered: Date.now(),
|
||||
randomize_order: false
|
||||
};
|
||||
|
||||
const duration = await exports.calculatePlaylistDuration(new_playlist, user_uid);
|
||||
|
||||
6
backend/package-lock.json
generated
6
backend/package-lock.json
generated
@@ -677,9 +677,9 @@
|
||||
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
|
||||
},
|
||||
"color-string": {
|
||||
"version": "1.5.3",
|
||||
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
|
||||
"integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
|
||||
"version": "1.6.0",
|
||||
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz",
|
||||
"integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==",
|
||||
"requires": {
|
||||
"color-name": "^1.0.0",
|
||||
"simple-swizzle": "^0.2.2"
|
||||
|
||||
@@ -3,8 +3,9 @@ services:
|
||||
ytdl_material:
|
||||
environment:
|
||||
ALLOW_CONFIG_MUTATIONS: 'true'
|
||||
ytdl_mongodb_connection_string: 'mongodb://ytdl-mongo-db:27018'
|
||||
ytdl_mongodb_connection_string: 'mongodb://ytdl-mongo-db:27017'
|
||||
ytdl_use_local_db: 'false'
|
||||
write_ytdl_config: 'true'
|
||||
restart: always
|
||||
volumes:
|
||||
- ./appdata:/app/appdata
|
||||
@@ -18,7 +19,7 @@ services:
|
||||
ytdl-mongo-db:
|
||||
image: mongo
|
||||
ports:
|
||||
- "27018:27017"
|
||||
- "27017:27017"
|
||||
logging:
|
||||
driver: "none"
|
||||
container_name: mongo-db
|
||||
|
||||
@@ -9,6 +9,10 @@
|
||||
</mat-form-field>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<mat-checkbox [(ngModel)]="playlist.randomize_order"><ng-container i18n="Randomize order when playing checkbox label">Randomize order when playing</ng-container></mat-checkbox>
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 10px; height: 40px;">
|
||||
<div style="float: left">
|
||||
<span *ngIf="reverse_order === false" i18n="Normal order">Normal order </span>
|
||||
|
||||
@@ -85,6 +85,7 @@ export class ModifyPlaylistComponent implements OnInit {
|
||||
index = this.playlist_file_objs.length - 1 - index;
|
||||
}
|
||||
this.playlist_file_objs.splice(index, 1);
|
||||
this.playlist.uids.splice(index, 1);
|
||||
this.processFiles();
|
||||
}
|
||||
|
||||
|
||||
@@ -156,7 +156,7 @@
|
||||
</ng-container>
|
||||
</mat-checkbox>
|
||||
<mat-form-field color="accent" class="advanced-input">
|
||||
<input [(ngModel)]="cropFileStart" type="number" [ngModelOptions]="{standalone: true}" [disabled]="!cropFile" matInput placeholder="Crop from (seconds)" i18n-placeholder="Crom from placeholder">
|
||||
<input [(ngModel)]="cropFileStart" type="number" [ngModelOptions]="{standalone: true}" [disabled]="!cropFile" matInput placeholder="Crop from (seconds)" i18n-placeholder="Crop from placeholder">
|
||||
</mat-form-field>
|
||||
</div>
|
||||
<div class="col-12 col-sm-6 mt-3">
|
||||
|
||||
@@ -55,13 +55,13 @@
|
||||
</ng-container>
|
||||
</mat-drawer>
|
||||
|
||||
<div class="update-playlist-button-div" *ngIf="id && playlistChanged()">
|
||||
<!-- <div class="update-playlist-button-div" *ngIf="id && playlistChanged()">
|
||||
<div class="spinner-div">
|
||||
<mat-spinner *ngIf="playlist_updating" [diameter]="25"></mat-spinner>
|
||||
</div>
|
||||
<button color="primary" [disabled]="playlist_updating" (click)="updatePlaylist()" mat-raised-button><ng-container i18n="Playlist save changes button">Save changes</ng-container> <mat-icon>update</mat-icon></button>
|
||||
|
||||
</div>
|
||||
</div> -->
|
||||
</mat-drawer-container>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -233,6 +233,9 @@ export class PlayerComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
}
|
||||
this.playlist.push(mediaObject);
|
||||
}
|
||||
if (this.db_playlist && this.db_playlist['randomize_order']) {
|
||||
this.shuffleArray(this.playlist);
|
||||
}
|
||||
this.currentItem = this.playlist[this.currentIndex];
|
||||
this.original_playlist = JSON.stringify(this.playlist);
|
||||
this.show_player = true;
|
||||
@@ -409,6 +412,13 @@ export class PlayerComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
this.api.playbackRate = speed;
|
||||
}
|
||||
|
||||
shuffleArray(array) {
|
||||
for (let i = array.length - 1; i > 0; i--) {
|
||||
const j = Math.floor(Math.random() * (i + 1));
|
||||
[array[i], array[j]] = [array[j], array[i]];
|
||||
}
|
||||
}
|
||||
|
||||
// snackbar helper
|
||||
public openSnackBar(message: string, action: string) {
|
||||
this.snackBar.open(message, action, {
|
||||
|
||||
@@ -105,7 +105,7 @@ export const isoLangs = {
|
||||
'nativeName': 'ဗမာစာ'
|
||||
},
|
||||
'ca': {
|
||||
'name': 'Catalan; Valencian',
|
||||
'name': 'Catalan',
|
||||
'nativeName': 'Català'
|
||||
},
|
||||
'ch': {
|
||||
|
||||
@@ -287,7 +287,6 @@
|
||||
<div class="row">
|
||||
<div class="col-12 mt-3">
|
||||
<div *ngIf="db_info">
|
||||
<h5 i18n="Database info title">Database Info</h5>
|
||||
<p><ng-container i18n="Database location label">Database location:</ng-container> <strong>{{db_info['using_local_db'] ? 'Local' : 'MongoDB'}}</strong></p>
|
||||
<h6 i18n="Records per table label">Records per table</h6>
|
||||
<mat-list style="padding-top: 0px">
|
||||
@@ -298,16 +297,16 @@
|
||||
|
||||
<mat-form-field style="width: 100%; margin-top: 15px; margin-bottom: 10px" color="accent">
|
||||
<input [(ngModel)]="new_config['Database']['mongodb_connection_string']" matInput placeholder="MongoDB Connection String" i18n-placeholder="MongoDB Connection String" required>
|
||||
<mat-hint><ng-container i18n="MongoDB Connection String setting hint AKA preamble">Example:</ng-container> mongodb://127.0.0.1:27017/?compressors=zlib</mat-hint>
|
||||
<mat-hint><ng-container i18n="MongoDB Connection String setting hint AKA preamble">Example:</ng-container> mongodb://127.0.0.1:27017/?compressors=zlib<br>Docker: mongodb://<container name>:27017/?compressors=zlib</mat-hint>
|
||||
</mat-form-field>
|
||||
|
||||
<br>
|
||||
<div class="test-connection-div">
|
||||
<button (click)="testConnectionString()" [disabled]="testing_connection_string" mat-flat-button color="accent"><ng-container i18n="Test connection string button">Test connection string</ng-container></button>
|
||||
</div>
|
||||
|
||||
<button (click)="testConnectionString()" [disabled]="testing_connection_string" mat-flat-button color="accent"><ng-container i18n="Test connection string button">Test connection string</ng-container></button>
|
||||
|
||||
<br>
|
||||
|
||||
<button class="transfer-db-button" [disabled]="db_transferring" color="accent" (click)="transferDB()" mat-raised-button><ng-container i18n="Transfer DB button">Transfer DB to </ng-container>{{db_info['using_local_db'] ? 'MongoDB' : 'Local'}}</button>
|
||||
<div class="transfer-db-div">
|
||||
<button [disabled]="db_transferring" color="accent" (click)="transferDB()" mat-raised-button><ng-container i18n="Transfer DB button">Transfer DB to </ng-container>{{db_info['using_local_db'] ? 'MongoDB' : 'Local'}}</button>
|
||||
</div>
|
||||
</div>
|
||||
<div *ngIf="!db_info">
|
||||
<ng-container i18n="Database info not retrieved error message">Database information could not be retrieved. Check the server logs for more information.</ng-container>
|
||||
|
||||
@@ -83,7 +83,11 @@
|
||||
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
.transfer-db-button {
|
||||
margin-top: 10px;
|
||||
.test-connection-div {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.transfer-db-div {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@@ -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', 'fr', 'nl', 'zh', 'nb', 'it', 'en-GB'];
|
||||
supported_locales = ['en', 'es', 'de', 'fr', 'nl', 'pt', 'it', 'ca', 'cs', 'nb', 'ru', 'zh', 'id', 'en-GB'];
|
||||
initialLocale = localStorage.getItem('locale');
|
||||
|
||||
initial_config = null;
|
||||
|
||||
248
src/assets/i18n/messages.ca.json
Normal file
248
src/assets/i18n/messages.ca.json
Normal file
@@ -0,0 +1,248 @@
|
||||
{
|
||||
"004b222ff9ef9dd4771b777950ca1d0e4cd4348a": "Quant a",
|
||||
"994363f08f9fbfa3b3994ff7b35c6904fdff18d8": "Perfil",
|
||||
"adb4562d2dbd3584370e44496969d58c511ecb63": "Fosc",
|
||||
"121cc5391cd2a5115bc2b3160379ee5b36cd7716": "Paràmetres",
|
||||
"92eee6be6de0b11c924e3ab27db30257159c0a7c": "Inici",
|
||||
"6765b4c916060f6bc42d9bb69e80377dbcb5e4e9": "Inicia la sessió",
|
||||
"357064ca9d9ac859eb618e28e8126fa32be049e2": "Subscripcions",
|
||||
"822fab38216f64e8166d368b59fe756ca39d301b": "Baixades",
|
||||
"4a9889d36910edc8323d7bab60858ab3da6d91df": "Només àudio",
|
||||
"6a21ba5fb0ac804a525bf9ab168038c3ee88e661": "Baixa",
|
||||
"a38ae1082fec79ba1f379978337385a539a28e73": "Qualitat",
|
||||
"4be966a9dcfbc9b54dfcc604b831c0289f847fa4": "Utilitza un URL",
|
||||
"d3f02f845e62cebd75fde451ab8479d2a8ad784d": "Visualitza",
|
||||
"96a01fafe135afc58b0f8071a4ab00234495ce18": "Mode de baixades múltiples",
|
||||
"6a3777f913cf3f288664f0632b9f24794fdcc24e": "Cancel·la",
|
||||
"322ed150e02666fe2259c5b4614eac7066f4ffa0": "Avançat",
|
||||
"4e4c721129466be9c3862294dc40241b64045998": "Utilitza arguments personalitzats",
|
||||
"ad2f8ac8b7de7945b80c8e424484da94e597125f": "Arguments personalitzats",
|
||||
"a6911c2157f1b775284bbe9654ce5eb30cf45d7f": "No cal incloure l’URL, només tot el que hi ha després. Separeu els arguments amb dues comes: ,,",
|
||||
"3a92a3443c65a52f37ca7efb8f453b35dbefbf29": "Utilitza una sortida personalitzada",
|
||||
"d9c02face477f2f9cdaae318ccee5f89856851fb": "Sortida personalitzada",
|
||||
"fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7": "Documentació",
|
||||
"19d1ae64d94d28a29b2c57ae8671aace906b5401": "El camí és relatiu al camí de baixada de la configuració. No hi inclogueu l’extensió.",
|
||||
"b7ffe7c6586d6f3f18a9246806a7c7d5538ab43e": "Ordre simulada:",
|
||||
"8fad10737d3e3735a6699a4d89cbf6c20f6bb55f": "Utilitza autenticació",
|
||||
"08c74dc9762957593b91f6eb5d65efdfc975bf48": "Nom d’usuari",
|
||||
"c32ef07f8803a223a83ed17024b38e8d82292407": "Contrasenya",
|
||||
"17f0ea5d2d7a262b0e875acc70475f102aee84e6": "Crea una llista de reproducció",
|
||||
"cff1428d10d59d14e45edec3c735a27b5482db59": "Nom",
|
||||
"f61c6867295f3b53d23557021f2f4e0aa1d0b8fc": "Tipus",
|
||||
"f0baeb8b69d120073b6d60d34785889b0c3232c8": "Àudio",
|
||||
"2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4": "Vídeo",
|
||||
"f47e2d56dd8a145b2e9599da9730c049d52962a2": "Fitxers d’àudio",
|
||||
"a52dae09be10ca3a65da918533ced3d3f4992238": "Vídeos",
|
||||
"a9806cf78ce00eb2613eeca11354a97e033377b8": "Subscriviu-vos a la llista o al canal",
|
||||
"801b98c6f02fe3b32f6afa3ee854c99ed83474e6": "URL",
|
||||
"93efc99ae087fc116de708ecd3ace86ca237cf30": "L’URL de la llista o el canal",
|
||||
"08f5d0ef937ae17feb1b04aff15ad88911e87baf": "Nom personalitzat",
|
||||
"ea30873bd3f0d5e4fb2378eec3f0a1db77634a28": "Baixa totes les pujades",
|
||||
"d641b8fa5ac5e85114c733b1f7de6976bd091f70": "Qualitat màxima",
|
||||
"c76a955642714b8949ff3e4b4990864a2e2cac95": "Mode només d’àudio",
|
||||
"408ca4911457e84a348cecf214f02c69289aa8f1": "Mode només de transmissió",
|
||||
"f432e1a8d6adb12e612127978ce2e0ced933959c": "Aquestes s’afegeixen després dels arguments estàndards.",
|
||||
"98b6ec9ec138186d663e64770267b67334353d63": "Sortida de fitxer personalitzada",
|
||||
"d7b35c384aecd25a516200d6921836374613dfe7": "Cancel·la",
|
||||
"d0336848b0c375a1c25ba369b3481ee383217a4f": "Subscriviu-vos",
|
||||
"28a678e9cabf86e44c32594c43fa0e890135c20f": "Baixeu els vídeos penjats a la darrera",
|
||||
"e78c0d60ac39787f62c9159646fe0b3c1ed55a1d": "Tipus:",
|
||||
"c52db455cca9109ee47e1a612c3f4117c09eb71b": "URL:",
|
||||
"ca3dbbc7f3e011bffe32a10a3ea45cc84f30ecf1": "Id.:",
|
||||
"f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8": "Tanca",
|
||||
"8efc77bf327659c0fec1f518cf48a98cdcd9dddf": "Exporta l’arxiu",
|
||||
"3042bd3ad8dffcfeca5fd1ae6159fd1047434e95": "Cancel·la la subscripció",
|
||||
"303e45ffae995c9817e510e38cb969e6bb3adcbf": "(En pausa)",
|
||||
"a44d86aa1e6c20ced07aca3a7c081d8db9ded1c6": "Arxiu:",
|
||||
"616e206cb4f25bd5885fc35925365e43cf5fb929": "Nom:",
|
||||
"c6eb45d085384903e53ab001a3513d1de6a1dbac": "Carregador:",
|
||||
"109c6f4a5e46efb933612ededfaf52a13178b7e0": "Mida del fitxer:",
|
||||
"bd630d8669b16e5f264ec4649d9b469fe03e5ff4": "Camí:",
|
||||
"a67e7d843cef735c79d5ef1c8ba4af3e758912bb": "Data de pujada:",
|
||||
"0cc1dec590ecd74bef71a865fb364779bc42a749": "Categoria:",
|
||||
"d9e83ac17026e70ef6e9c0f3240a3b2450367f40": "Modifica arguments del youtube-dl",
|
||||
"7fc1946abe2b40f60059c6cd19975d677095fd19": "Arguments nous simulats",
|
||||
"0b71824ae71972f236039bed43f8d2323e8fd570": "Afegeix un argument",
|
||||
"c8b0e59eb491f2ac7505f0fbab747062e6b32b23": "Cerca per categoria",
|
||||
"9eeb91caef5a50256dd87e1c4b7b3e8216479377": "Utilitza el valor de l’argument",
|
||||
"7de2451ed3fb8d8b847979bd3f0c740b970f167b": "Afegeix un argument",
|
||||
"b2623aee44b70c9a4ba1fce16c8a593b0a4c7974": "Modifica",
|
||||
"25d8ad5eba2ec24e68295a27d6a4bb9b49e3dacd": "Valor de l’argument",
|
||||
"91ecce65f1d23f9419d1c953cd6b7bc7f91c110e": "Actualitzador",
|
||||
"b7ff2e2b909c53abe088fe60b9f4b6ac7757247f": "Registra un usuari",
|
||||
"024886ca34a6f309e3e51c2ed849320592c3faaa": "Nom d’usuari",
|
||||
"cfc2f436ec2beffb042e7511a73c89c372e86a6c": "Registra",
|
||||
"ebadf946ae90f13ecd0c70f09edbc0f983af8a0f": "Puja galetes noves",
|
||||
"a8b7b9c168fd936a75e500806a8c0d7755ef1198": "NOTA: La càrrega de galetes noves anul·larà les galetes anteriors. Tingueu en compte també que les galetes són de tota la instància i no per usuari.",
|
||||
"98a8a42e5efffe17ab786636ed0139b4c7032d0e": "Arrossegar i deixar anar",
|
||||
"4f389e41e4592f7f9bb76abdd8af4afdfb13f4f1": "Modifica la llista de reproducció",
|
||||
"5caadefa4143cf6766a621b0f54f91f373a1f164": "Afegeix contingut",
|
||||
"52c9a103b812f258bcddc3d90a6e3f46871d25fe": "Desa",
|
||||
"33026f57ea65cd9c8a5d917a08083f71a718933a": "Ordre normal",
|
||||
"29376982b1205d9d6ea3d289e8e2f8e1ac2839b1": "Ordre invers",
|
||||
"d02888c485d3aeab6de628508f4a00312a722894": "Els meus vídeos",
|
||||
"7e892ba15f2c6c17e83510e273b3e10fc32ea016": "Cerca",
|
||||
"73423607944a694ce6f9e55cfee329681bb4d9f9": "No s’ha trobat cap vídeo.",
|
||||
"3697f8583ea42868aa269489ad366103d94aece7": "Editant",
|
||||
"07db550ae114d9faad3a0cbb68bcc16ab6cd31fc": "Pausat",
|
||||
"c3b0b86523f1d10e84a71f9b188d54913a11af3b": "Editant la categoria",
|
||||
"2489eefea00931942b91f4a1ae109514b591e2e1": "Regles",
|
||||
"e4eeb9106dbcbc91ca1ac3fb4068915998a70f37": "Afegeix una regla nova",
|
||||
"792dc6a57f28a1066db283f2e736484f066005fd": "Baixa el xat del Twitch",
|
||||
"28f86ffd419b869711aa13f5e5ff54be6d70731c": "Edita",
|
||||
"826b25211922a1b46436589233cb6f1a163d89b7": "Suprimeix",
|
||||
"321e4419a943044e674beb55b8039f42a9761ca5": "Informació",
|
||||
"e684046d73bcee88e82f7ff01e2852789a05fc32": "Recompte:",
|
||||
"34504b488c24c27e68089be549f0eeae6ebaf30b": "Suprimeix i afegeix a la llista negra",
|
||||
"dad95154dcef3509b8cc705046061fd24994bbb7": "visualitzacions",
|
||||
"5b3075e8dc3f3921ec316b0bd83b6d14a06c1a4f": "Desa els canvis",
|
||||
"4d8a18b04a1f785ecd8021ac824e0dfd5881dbfc": "La descàrrega ha estat correcta",
|
||||
"348cc5d553b18e862eb1c1770e5636f6b05ba130": "S'ha produït un error",
|
||||
"4f8b2bb476981727ab34ed40fde1218361f92c45": "Detalls",
|
||||
"e9aff8e6df2e2bf6299ea27bb2894c70bc48bd4d": "S’ha produït un error:",
|
||||
"77b0c73840665945b25bd128709aa64c8f017e1c": "Inici de la baixada:",
|
||||
"08ff9375ec078065bcdd7637b7ea65fce2979266": "Final de la baixada:",
|
||||
"ad127117f9471612f47d01eae09709da444a36a4": "Camins de fitxers:",
|
||||
"e2319dec5b4ccfb6ed9f55ccabd63650a8fdf547": "Les vostres subscripcions",
|
||||
"807cf11e6ac1cde912496f764c176bdfdd6b7e19": "Canals",
|
||||
"47546e45bbb476baaaad38244db444c427ddc502": "Llistes de reproducció",
|
||||
"29b89f751593e1b347eef103891b7a1ff36ec03f": "El nom no està disponible. S’està recuperant el canal.",
|
||||
"4636cd4a1379c50d471e98786098c4d39e1e82ad": "No tens cap subscripció al canal.",
|
||||
"2e0a410652cb07d069f576b61eab32586a18320d": "El nom no està disponible. Recuperant la llista de reproducció.",
|
||||
"587b57ced54965d8874c3fd0e9dfedb987e5df04": "No tens cap subscripció a la llista de reproducció.",
|
||||
"82421c3e46a0453a70c42900eab51d58d79e6599": "Principal",
|
||||
"0ba25ad86a240576c4f20a2fada4722ebba77b1e": "Descarregador",
|
||||
"d5f69691f9f05711633128b5a3db696783266b58": "Extra",
|
||||
"bc2e854e111ecf2bd7db170da5e3c2ed08181d88": "Avançat",
|
||||
"4d13a9cd5ed3dcee0eab22cb25198d43886942be": "Usuaris",
|
||||
"eb3d5aefff38a814b76da74371cbf02c0789a1ef": "Registres",
|
||||
"fe8fd36dbf5deee1d56564965787a782a66eba44": "{VAR_SELECT, select, true {Close} false {Cancel} other {otha}}",
|
||||
"54c512cca1923ab72faf1a0bd98d3d172469629a": "URL des d’on s’accedirà a aquesta aplicació, sense el port.",
|
||||
"cb2741a46e3560f6bc6dfd99d385e86b08b26d72": "Port",
|
||||
"22e8f1d0423a3b784fe40fab187b92c06541b577": "El port desitjat. Per defecte és 17442.",
|
||||
"d4477669a560750d2064051a510ef4d7679e2f3e": "Mode multiusuari",
|
||||
"2eb03565fcdce7a7a67abc277a936a32fcf51557": "Ruta base dels usuaris",
|
||||
"a64505c41150663968e277ec9b3ddaa5f4838798": "Ruta base per als usuaris i els seus vídeos descarregats.",
|
||||
"4e3120311801c4acd18de7146add2ee4a4417773": "Permet les subscripcions",
|
||||
"4bee2a4bef2d26d37c9b353c278e24e5cd309ce3": "Ruta base de subscripcions",
|
||||
"bc9892814ee2d119ae94378c905ea440a249b84a": "Ruta base per als vídeos dels vostres canals i llistes de reproducció subscrits. És relatiu a la carpeta arrel de YTDL-Material.",
|
||||
"5bef4b25ba680da7fff06b86a91b1fc7e6a926e3": "Interval de comprovació",
|
||||
"0f56a7449b77630c114615395bbda4cab398efd8": "La unitat és de segons, només inclou números.",
|
||||
"13759b09a7f4074ceee8fa2f968f9815fdf63295": "De vegades, es descarreguen vídeos nous abans de processar-los completament. Aquesta configuració fa que, pels vídeos nous, es comprovi si hi ha una versió de més qualitat l'endemà.",
|
||||
"3d1a47dc18b7bd8b5d9e1eb44b235ed9c4a2b513": "Torneu a descarregar les càrregues noves",
|
||||
"27a56aad79d8b61269ed303f11664cc78bcc2522": "Tema",
|
||||
"ff7cee38a2259526c519f878e71b964f41db4348": "Per defecte",
|
||||
"7a6bacee4c31cb5c0ac2d24274fb4610d8858602": "Permet canviar el tema",
|
||||
"fe46ccaae902ce974e2441abe752399288298619": "Idioma",
|
||||
"ab2756805742e84ad0cc0468f4be2d8aa9f855a5": "Camí a la carpeta d’àudio",
|
||||
"c2c89cdf45d46ea64d2ed2f9ac15dfa4d77e26ca": "Ruta de descàrregues de només d'àudio. És relatiu a la carpeta arrel de YTDL-Material.",
|
||||
"46826331da1949bd6fb74624447057099c9d20cd": "Ruta de la carpeta de vídeo",
|
||||
"17c92e6d47a213fa95b5aa344b3f258147123f93": "Ruta de descàrregues de vídeo. És relatiu a la carpeta arrel de YTDL-Material.",
|
||||
"cfe829634b1144bc44b6d38cf5584ea65db9804f": "Sortida de fitxer per defecte",
|
||||
"1148fd45287ff09955b938756bc302042bcb29c7": "La ruta és relativa a les rutes de descàrrega anteriors. No inclogueu l'extensió.",
|
||||
"ef418d4ece7c844f3a5e431da1aa59bedd88da7b": "Arguments personalitzats globals",
|
||||
"6b995e7130b4d667eaab6c5f61b362ace486d26d": "Arguments personalitzats globals per a descàrregues a la pàgina inicial. Els arguments es delimiten amb dues comes, així: ,,",
|
||||
"04201f9d27abd7d6f58a4328ab98063ce1072006": "Categories",
|
||||
"78e49b7339b4fa7184dd21bcaae107ce9b7076f6": "Utilitzeu l'arxiu youtube-dl",
|
||||
"ffc19f32b1cba0daefc0e5668f89346db1db83ad": "Inclou la miniatura",
|
||||
"384de8f8f112c9e6092eb2698706d391553f3e8d": "Inclou-hi metadades",
|
||||
"fb35145bfb84521e21b6385363d59221f436a573": "Mata totes les descàrregues",
|
||||
"61f8fd90b5f8cb20c70371feb2ee5e1fac5a9095": "Títol superior",
|
||||
"78d3531417c0d4ba4c90f0d4ae741edc261ec8df": "Gestor de fitxers habilitat",
|
||||
"a5a1be0a5df07de9eec57f5d2a86ed0204b2e75a": "Gestor de descàrregues habilitat",
|
||||
"c33bd5392b39dbed36b8e5a1145163a15d45835f": "Permet seleccionar la qualitat",
|
||||
"bda5508e24e0d77debb28bcd9194d8fefb1cfb92": "Mode de només baixades",
|
||||
"09d31c803a7252658694e1e3176b97f5655a3fe3": "Permet el mode de descàrrega múltiple",
|
||||
"1c4dbce56d96b8974aac24a02f7ab2ee81415014": "Habilita l'API pública",
|
||||
"23bd81dcc30b74d06279a26d7a42e8901c1b124e": "Clau API pública",
|
||||
"41016a73d8ad85e6cb26dffa0a8fab9fe8f60d8e": "Mostra la documentació",
|
||||
"00a94f58d9eb2e3aa561440eabea616d0c937fa2": "Això suprimirà la vostra clau de l’API anterior!",
|
||||
"1b258b258b4cc475ceb2871305b61756b0134f4a": "Genera",
|
||||
"d5d7c61349f3b0859336066e6d453fc35d334fe5": "Utilitza l’API del YouTube",
|
||||
"ce10d31febb3d9d60c160750570310f303a22c22": "Clau de l’API del YouTube",
|
||||
"8602e313cdfa7c4cc475ccbe86459fce3c3fd986": "És senzill generar una clau!",
|
||||
"d162f9fcd6a7187b391e004f072ab3da8377c47d": "Utilitza l’API del Twitch",
|
||||
"8ae23bc4302a479f687f4b20a84c276182e2519c": "Clau de l’API del Twitch",
|
||||
"84ffcebac2709ca0785f4a1d5ba274433b5beabc": "També coneguda com a identificador de client.",
|
||||
"5fb1e0083c9b2a40ac8ae7dcb2618311c291b8b9": "Baixa automàticament el xat del Twitch",
|
||||
"9b3cedfa83c6d7acb3210953289d1be4aab115c7": "Feu clic aquí",
|
||||
"7f09776373995003161235c0c8d02b7f91dbc4df": "per a baixar manualment l’extensió YouTubeDL-Material per al Chrome.",
|
||||
"5b5296423906ab3371fdb2b5a5aaa83acaa2ee52": "Heu de carregar manualment l'extensió i modificar la seva configuració per configurar l'URL de la interfície.",
|
||||
"9a2ec6da48771128384887525bdcac992632c863": "per instal·lar l'extensió oficial de YoutubeDL-Material per a Firefox directament des de la pàgina d'extensions de Firefox.",
|
||||
"eb81be6b49e195e5307811d1d08a19259d411f37": "Instruccions detallades de configuració.",
|
||||
"cb17ff8fe3961cf90f44bee97c88a3f3347a7e55": "No cal gaire cosa, a part de canviar la configuració de l'extensió per establir l'URL de la interfície.",
|
||||
"61b81b11aad0b9d970ece2fce18405f07eac69c2": "Arrossegueu l’enllaç següent als vostres adreces d'interès i ja podreu començar! Només cal que aneu al vídeo de YouTube que vulgueu baixar i feu clic al marcador.",
|
||||
"c505d6c5de63cc700f0aaf8a4b31fae9e18024e5": "Genereu el marcador 'només àudio'",
|
||||
"ec71e08aee647ea4a71fd6b7510c54d84a797ca6": "Seleccioneu un baixador",
|
||||
"5fab47f146b0a4b809dcebf3db9da94df6299ea1": "Utilitzeu l'agent de descàrrega predeterminat",
|
||||
"c776eb4992b6c98f58cd89b20c1ea8ac37888521": "Seleccioneu un agent de descàrrega",
|
||||
"0c43af932e6a4ee85500e28f01b3538b4eb27bc4": "Nivell de registre",
|
||||
"db6c192032f4cab809aad35215f0aa4765761897": "Caducitat de l'inici de sessió",
|
||||
"dc3d990391c944d1fbfc7cfb402f7b5e112fb3a8": "Permet la descàrrega avançada",
|
||||
"431e5f3a0dde88768d1074baedd65266412b3f02": "Utilitza les galetes",
|
||||
"80651a7ad1229ea6613557d3559f702cfa5aecf5": "Defineix les galetes",
|
||||
"37224420db54d4bc7696f157b779a7225f03ca9d": "Permetre el registre d’usuari",
|
||||
"fa548cee6ea11c160a416cac3e6bdec0363883dc": "Mètode d’autenticació",
|
||||
"4f56ced9d6b85aeb1d4346433361d47ea72dac1a": "Intern",
|
||||
"e3d7c5f019e79a3235a28ba24df24f11712c7627": "LDAP",
|
||||
"1db9789b93069861019bd0ccaa5d4706b00afc61": "URL LDAP",
|
||||
"f50fa6c09c8944aed504f6325f2913ee6c7a296a": "DN de vinculació",
|
||||
"080cc6abcba236390fc22e79792d0d3443a3bd2a": "Credencials de vinculació",
|
||||
"cfa67d14d84fe0e9fadf251dc51ffc181173b662": "Base de Cerca",
|
||||
"e01d54ecc1a0fcf9525a3c100ed8b83d94e61c23": "Filtre de cerca",
|
||||
"cec82c0a545f37420d55a9b6c45c20546e82f94e": "Quant al YoutubeDL-Material",
|
||||
"199c17e5d6a419313af3c325f06dcbb9645ca618": "és un descarregador de YouTube de codi obert construït segons les especificacions de Material Design de Google. Podeu descarregar sense problemes els vostres vídeos preferits com a fitxers de vídeo o àudio i, fins i tot, subscriure-us als vostres canals i llistes de reproducció preferits per estar al dia amb els nous vídeos.",
|
||||
"bc0ad0ee6630acb7fcb7802ec79f5a0ee943c1a7": "té algunes funcions increïbles incloses. Una àmplia API, assistència de Docker i suport de localització (traducció). Feu clic a la icona de GitHub de més amunt per llegir totes les funcions compatibles.",
|
||||
"a45e3b05f0529dc5246d70ef62304c94426d4c81": "Versió instal·lada:",
|
||||
"b33536f59b94ec935a16bd6869d836895dc5300c": "Heu trobat un error o teniu un suggeriment?",
|
||||
"e1f398f38ff1534303d4bb80bd6cece245f24016": "per crear un report de problema!",
|
||||
"e22f3a5351944f3a1a10cfc7da6f65dfbe0037fe": "S’està comprovant si hi ha actualitzacions…",
|
||||
"a16e92385b4fd9677bb830a4b796b8b79c113290": "Hi ha una actualització disponible",
|
||||
"189b28aaa19b3c51c6111ad039c4fd5e2a22e370": "Podeu actualitzar des del menú de paràmetres.",
|
||||
"1372e61c5bd06100844bd43b98b016aabc468f62": "Seleccioneu una versió:",
|
||||
"1f6d14a780a37a97899dc611881e6bc971268285": "Activa la compartició",
|
||||
"6580b6a950d952df847cb3d8e7176720a740adc8": "Usa la marca de temps",
|
||||
"4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c": "Segons",
|
||||
"3a6e5a6aa78ca864f6542410c5dafb6334538106": "Copia al porta-retalls",
|
||||
"a249a5ae13e0835383885aaf697d2890cc3e53e9": "Comparteix la llista",
|
||||
"15da89490e04496ca9ea1e1b3d44fb5efd4a75d9": "Comparteix el vídeo",
|
||||
"1d540dcd271b316545d070f9d182c372d923aadd": "Comparteix l’àudio",
|
||||
"a1ad8b1be9be43b5183bd2c3186d4e19496f2a0b": "Id. de la sessió:",
|
||||
"b6c453e0e61faea184bbaf5c5b0a1e164f4de2a2": "Neteja totes les baixades",
|
||||
"eb98135e35af26a9a326ee69bd8ff104d36dd8ec": "(actual)",
|
||||
"7117fc42f860e86d983bfccfcf2654e5750f3406": "No hi ha cap descàrrega disponible!",
|
||||
"42ff677ec14f111e88bd6cdd30145378e994d1bf": "El teu perfil",
|
||||
"bb694b49d408265c91c62799c2b3a7e3151c824d": "Tancar sessió",
|
||||
"ac9d09de42edca1296371e4d801349c9096ac8de": "UID:",
|
||||
"a5ed099ffc9e96f6970df843289ade8a7d20ab9f": "Creat:",
|
||||
"fa96f2137af0a24e6d6d54c598c0af7d5d5ad344": "No heu iniciat la sessió.",
|
||||
"a1dbca87b9f36d2b06a5cbcffb5814c4ae9b798a": "Crea un compte d'administrador",
|
||||
"2d2adf3ca26a676bca2269295b7455a26fd26980": "No s'ha detectat cap compte d'administrador predeterminat. Això crearà i definirà la contrasenya d'un compte d'administrador amb el nom d'usuari 'admin'.",
|
||||
"70a67e04629f6d412db0a12d51820b480788d795": "Crea",
|
||||
"4d92a0395dd66778a931460118626c5794a3fc7a": "Afegeix usuaris",
|
||||
"b0d7dd8a1b0349622d6e0c6e643e24a9ea0efa1d": "Edita el rol",
|
||||
"746f64ddd9001ac456327cd9a3d5152203a4b93c": "Nom d’usuari",
|
||||
"52c1447c1ec9570a2a3025c7e566557b8d19ed92": "Rol",
|
||||
"59a8c38db3091a63ac1cb9590188dc3a972acfb3": "Accions",
|
||||
"2bd201aea09e43fbfd3cd15ec0499b6755302329": "Gestiona l'usuari",
|
||||
"95b95a9c79e4fd9ed41f6855e37b3b06af25bcab": "Suprimeix l'usuari",
|
||||
"632e8b20c98e8eec4059a605a4b011bb476137af": "Edita l'usuari",
|
||||
"29c97c8e76763bb15b6d515648fa5bd1eb0f7510": "UID d'usuari:",
|
||||
"e70e209561583f360b1e9cefd2cbb1fe434b6229": "Nova contrasenya",
|
||||
"6498fa1b8f563988f769654a75411bb8060134b9": "Establir una contrasenya nova",
|
||||
"544e09cdc99a8978f48521d45f62db0da6dcf742": "Utilitzeu el rol per defecte",
|
||||
"4f20f2d5a6882190892e58b85f6ccbedfa737952": "Sí",
|
||||
"3d3ae7deebc5949b0c1c78b9847886a94321d9fd": "No",
|
||||
"57c6c05d8ebf4ef1180c2705033c044f655bb2c4": "Gestiona el rol",
|
||||
"5009630cdf32ab4f1c78737b9617b8773512c05a": "Línies:",
|
||||
"8a0bda4c47f10b2423ff183acefbf70d4ab52ea2": "Esborra els registres",
|
||||
"24dc3ecf7ec2c2144910c4f3d38343828be03a4c": "Generat automàticament",
|
||||
"ccf5ea825526ac490974336cb5c24352886abc07": "Obrir fitxer",
|
||||
"5656a06f17c24b2d7eae9c221567b209743829a9": "Obre el fitxer en una pestanya nova",
|
||||
"a0720c36ee1057e5c54a86591b722485c62d7b1a": "Anar a la subscripció",
|
||||
"94e01842dcee90531caa52e4147f70679bac87fe": "Suprimeix i torna a descarregar",
|
||||
"2031adb51e07a41844e8ba7704b054e98345c9c1": "Esborra per sempre",
|
||||
"ddc31f2885b1b33a7651963254b0c197f2a64086": "Veure més.",
|
||||
"56a2a773fbd5a6b9ac2e6b89d29d70a2ed0f3227": "Veure menys.",
|
||||
"2054791b822475aeaea95c0119113de3200f5e1c": "Llargada:"
|
||||
}
|
||||
2517
src/assets/i18n/messages.ca.xlf
Normal file
2517
src/assets/i18n/messages.ca.xlf
Normal file
File diff suppressed because it is too large
Load Diff
248
src/assets/i18n/messages.cs.json
Normal file
248
src/assets/i18n/messages.cs.json
Normal file
@@ -0,0 +1,248 @@
|
||||
{
|
||||
"004b222ff9ef9dd4771b777950ca1d0e4cd4348a": "O aplikaci",
|
||||
"994363f08f9fbfa3b3994ff7b35c6904fdff18d8": "Účet",
|
||||
"adb4562d2dbd3584370e44496969d58c511ecb63": "Tmavý vzhled",
|
||||
"121cc5391cd2a5115bc2b3160379ee5b36cd7716": "Nastavení",
|
||||
"92eee6be6de0b11c924e3ab27db30257159c0a7c": "Domů",
|
||||
"6765b4c916060f6bc42d9bb69e80377dbcb5e4e9": "Přihlásit se",
|
||||
"357064ca9d9ac859eb618e28e8126fa32be049e2": "Odběry",
|
||||
"822fab38216f64e8166d368b59fe756ca39d301b": "Stažené",
|
||||
"4a9889d36910edc8323d7bab60858ab3da6d91df": "Pouze Zvuk",
|
||||
"6a21ba5fb0ac804a525bf9ab168038c3ee88e661": "Stáhnout",
|
||||
"a38ae1082fec79ba1f379978337385a539a28e73": "Kvalita",
|
||||
"4be966a9dcfbc9b54dfcc604b831c0289f847fa4": "Použijte URL adresu",
|
||||
"d3f02f845e62cebd75fde451ab8479d2a8ad784d": "Zobrazit",
|
||||
"96a01fafe135afc58b0f8071a4ab00234495ce18": "Stahovat více zároveň",
|
||||
"6a3777f913cf3f288664f0632b9f24794fdcc24e": "Zrušit",
|
||||
"322ed150e02666fe2259c5b4614eac7066f4ffa0": "Pokročilé nastavení",
|
||||
"4e4c721129466be9c3862294dc40241b64045998": "Použít vlastní argumenty",
|
||||
"ad2f8ac8b7de7945b80c8e424484da94e597125f": "Vlastní argumenty",
|
||||
"a6911c2157f1b775284bbe9654ce5eb30cf45d7f": "Není třeba vkládat URL adresu, jen to co je za ní. Argumenty se oddělují pomocí dvou čárek za sebou takto: ,,",
|
||||
"3a92a3443c65a52f37ca7efb8f453b35dbefbf29": "Použít vlastní výstup",
|
||||
"d9c02face477f2f9cdaae318ccee5f89856851fb": "Vlastní výstup",
|
||||
"fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7": "Dokumentace",
|
||||
"19d1ae64d94d28a29b2c57ae8671aace906b5401": "Cesta je relativní ke nakonfigurované cestě pro stahování. Nezahrnujte koncovky souborů.",
|
||||
"b7ffe7c6586d6f3f18a9246806a7c7d5538ab43e": "Simulovaný příkaz:",
|
||||
"8fad10737d3e3735a6699a4d89cbf6c20f6bb55f": "Použit autentifikaci",
|
||||
"08c74dc9762957593b91f6eb5d65efdfc975bf48": "Uživatelské jméno",
|
||||
"c32ef07f8803a223a83ed17024b38e8d82292407": "Heslo",
|
||||
"17f0ea5d2d7a262b0e875acc70475f102aee84e6": "Vytvořit playlist",
|
||||
"cff1428d10d59d14e45edec3c735a27b5482db59": "Název",
|
||||
"f61c6867295f3b53d23557021f2f4e0aa1d0b8fc": "Typ",
|
||||
"f0baeb8b69d120073b6d60d34785889b0c3232c8": "Audio",
|
||||
"2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4": "Video",
|
||||
"f47e2d56dd8a145b2e9599da9730c049d52962a2": "Audio soubory",
|
||||
"a52dae09be10ca3a65da918533ced3d3f4992238": "Videa",
|
||||
"a9806cf78ce00eb2613eeca11354a97e033377b8": "Odebírat playlist nebo kanál",
|
||||
"801b98c6f02fe3b32f6afa3ee854c99ed83474e6": "URL adresa",
|
||||
"93efc99ae087fc116de708ecd3ace86ca237cf30": "URL adresa playlistu nebo kanálu",
|
||||
"08f5d0ef937ae17feb1b04aff15ad88911e87baf": "Vlastní název",
|
||||
"ea30873bd3f0d5e4fb2378eec3f0a1db77634a28": "Stáhnout všechny nahrávky",
|
||||
"d641b8fa5ac5e85114c733b1f7de6976bd091f70": "Nejvyšší kvalita",
|
||||
"c76a955642714b8949ff3e4b4990864a2e2cac95": "Stahovat pouze audio",
|
||||
"408ca4911457e84a348cecf214f02c69289aa8f1": "Režim pouze pro streamování",
|
||||
"f432e1a8d6adb12e612127978ce2e0ced933959c": "Toto je přidáno za standartní argumenty.",
|
||||
"98b6ec9ec138186d663e64770267b67334353d63": "Vlastní výstup souboru",
|
||||
"d7b35c384aecd25a516200d6921836374613dfe7": "Zrušit odběr",
|
||||
"d0336848b0c375a1c25ba369b3481ee383217a4f": "Odebírat",
|
||||
"28a678e9cabf86e44c32594c43fa0e890135c20f": "Stahovat videa nahraná naposled v",
|
||||
"e78c0d60ac39787f62c9159646fe0b3c1ed55a1d": "Typ:",
|
||||
"c52db455cca9109ee47e1a612c3f4117c09eb71b": "URL:",
|
||||
"ca3dbbc7f3e011bffe32a10a3ea45cc84f30ecf1": "ID:",
|
||||
"f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8": "Zavřít",
|
||||
"8efc77bf327659c0fec1f518cf48a98cdcd9dddf": "Exportovat Archiv",
|
||||
"3042bd3ad8dffcfeca5fd1ae6159fd1047434e95": "Zrušit odběr",
|
||||
"303e45ffae995c9817e510e38cb969e6bb3adcbf": "(Pozastaveno)",
|
||||
"a44d86aa1e6c20ced07aca3a7c081d8db9ded1c6": "Archiv:",
|
||||
"616e206cb4f25bd5885fc35925365e43cf5fb929": "Název:",
|
||||
"c6eb45d085384903e53ab001a3513d1de6a1dbac": "Autor:",
|
||||
"109c6f4a5e46efb933612ededfaf52a13178b7e0": "Velikost souboru:",
|
||||
"bd630d8669b16e5f264ec4649d9b469fe03e5ff4": "Cesta:",
|
||||
"a67e7d843cef735c79d5ef1c8ba4af3e758912bb": "Datum Nahrání:",
|
||||
"0cc1dec590ecd74bef71a865fb364779bc42a749": "Kategorie:",
|
||||
"d9e83ac17026e70ef6e9c0f3240a3b2450367f40": "Upravid youtube-dl argumenty",
|
||||
"7fc1946abe2b40f60059c6cd19975d677095fd19": "Nové simulované argumenty",
|
||||
"0b71824ae71972f236039bed43f8d2323e8fd570": "Přidat argument",
|
||||
"c8b0e59eb491f2ac7505f0fbab747062e6b32b23": "Hledat podle kategorie",
|
||||
"9eeb91caef5a50256dd87e1c4b7b3e8216479377": "Použít hodnotu argumentu",
|
||||
"7de2451ed3fb8d8b847979bd3f0c740b970f167b": "Přidat argument",
|
||||
"b2623aee44b70c9a4ba1fce16c8a593b0a4c7974": "Upravit",
|
||||
"25d8ad5eba2ec24e68295a27d6a4bb9b49e3dacd": "Hodnota argumentu",
|
||||
"91ecce65f1d23f9419d1c953cd6b7bc7f91c110e": "Aktualizace",
|
||||
"b7ff2e2b909c53abe088fe60b9f4b6ac7757247f": "Registrovat uživatele",
|
||||
"024886ca34a6f309e3e51c2ed849320592c3faaa": "Uživatelské jméno",
|
||||
"cfc2f436ec2beffb042e7511a73c89c372e86a6c": "Registrovat",
|
||||
"ebadf946ae90f13ecd0c70f09edbc0f983af8a0f": "Nahrání nových cookies",
|
||||
"a8b7b9c168fd936a75e500806a8c0d7755ef1198": "POZNÁMKA: Nahráním nových cookies přepíšete vaše předchozí cookie. Vezměte na vědomí, že cookies jsou společné pro celou instanci, nikoliv rozdělené podle uživatelů.",
|
||||
"98a8a42e5efffe17ab786636ed0139b4c7032d0e": "Přetáhněte sem",
|
||||
"4f389e41e4592f7f9bb76abdd8af4afdfb13f4f1": "Upravit playlist",
|
||||
"5caadefa4143cf6766a621b0f54f91f373a1f164": "Přidat obsah",
|
||||
"52c9a103b812f258bcddc3d90a6e3f46871d25fe": "Uložit",
|
||||
"33026f57ea65cd9c8a5d917a08083f71a718933a": "Normální řazení",
|
||||
"29376982b1205d9d6ea3d289e8e2f8e1ac2839b1": "Opačné řazení",
|
||||
"d02888c485d3aeab6de628508f4a00312a722894": "Moje videa",
|
||||
"7e892ba15f2c6c17e83510e273b3e10fc32ea016": "Vyhledávání",
|
||||
"73423607944a694ce6f9e55cfee329681bb4d9f9": "Nebyla nalezena žádná videa.",
|
||||
"3697f8583ea42868aa269489ad366103d94aece7": "Úprava",
|
||||
"07db550ae114d9faad3a0cbb68bcc16ab6cd31fc": "Pozastaveno",
|
||||
"c3b0b86523f1d10e84a71f9b188d54913a11af3b": "Úprava kategorie",
|
||||
"2489eefea00931942b91f4a1ae109514b591e2e1": "Pravidla",
|
||||
"e4eeb9106dbcbc91ca1ac3fb4068915998a70f37": "Přidat nové pravidlo",
|
||||
"792dc6a57f28a1066db283f2e736484f066005fd": "Stáhnout Twitch Chat",
|
||||
"28f86ffd419b869711aa13f5e5ff54be6d70731c": "Upravit",
|
||||
"826b25211922a1b46436589233cb6f1a163d89b7": "Odstranit",
|
||||
"321e4419a943044e674beb55b8039f42a9761ca5": "Informace",
|
||||
"e684046d73bcee88e82f7ff01e2852789a05fc32": "Počet:",
|
||||
"34504b488c24c27e68089be549f0eeae6ebaf30b": "Odstranit a zablokovat",
|
||||
"dad95154dcef3509b8cc705046061fd24994bbb7": "zhlédnutí",
|
||||
"5b3075e8dc3f3921ec316b0bd83b6d14a06c1a4f": "Uložit změny",
|
||||
"4d8a18b04a1f785ecd8021ac824e0dfd5881dbfc": "Stažení proběhlo úspěšně",
|
||||
"348cc5d553b18e862eb1c1770e5636f6b05ba130": "Došlo k chybě",
|
||||
"4f8b2bb476981727ab34ed40fde1218361f92c45": "Podrobnosti",
|
||||
"e9aff8e6df2e2bf6299ea27bb2894c70bc48bd4d": "Došlo k chybě:",
|
||||
"77b0c73840665945b25bd128709aa64c8f017e1c": "Zahájení stahování:",
|
||||
"08ff9375ec078065bcdd7637b7ea65fce2979266": "Konec stahování:",
|
||||
"ad127117f9471612f47d01eae09709da444a36a4": "Cesta k souboru:",
|
||||
"e2319dec5b4ccfb6ed9f55ccabd63650a8fdf547": "Vaše odběry",
|
||||
"807cf11e6ac1cde912496f764c176bdfdd6b7e19": "Kanály",
|
||||
"47546e45bbb476baaaad38244db444c427ddc502": "Playlisty",
|
||||
"29b89f751593e1b347eef103891b7a1ff36ec03f": "Název není dostupný. Probíhá vyhledávání kanálu.",
|
||||
"4636cd4a1379c50d471e98786098c4d39e1e82ad": "Nemáte žádné odběry.",
|
||||
"2e0a410652cb07d069f576b61eab32586a18320d": "Název není dostupný. Probíhá vyhledávání playlistu.",
|
||||
"587b57ced54965d8874c3fd0e9dfedb987e5df04": "Nemáte žádné odběry playlistů.",
|
||||
"82421c3e46a0453a70c42900eab51d58d79e6599": "Obecné",
|
||||
"0ba25ad86a240576c4f20a2fada4722ebba77b1e": "Stahování",
|
||||
"d5f69691f9f05711633128b5a3db696783266b58": "Ostatní",
|
||||
"bc2e854e111ecf2bd7db170da5e3c2ed08181d88": "Pokročilé",
|
||||
"4d13a9cd5ed3dcee0eab22cb25198d43886942be": "Uživatelé",
|
||||
"eb3d5aefff38a814b76da74371cbf02c0789a1ef": "Záznamy",
|
||||
"fe8fd36dbf5deee1d56564965787a782a66eba44": "{VAR_SELECT, select, true {Zavřít} false {Zrušit} other {Ostatní}}",
|
||||
"54c512cca1923ab72faf1a0bd98d3d172469629a": "URL adresa této aplikace, bez čísla portu.",
|
||||
"cb2741a46e3560f6bc6dfd99d385e86b08b26d72": "Číslo portu",
|
||||
"22e8f1d0423a3b784fe40fab187b92c06541b577": "Momentálně nastavený port. Výchozí je 17442.",
|
||||
"d4477669a560750d2064051a510ef4d7679e2f3e": "Režim více uživatelů",
|
||||
"2eb03565fcdce7a7a67abc277a936a32fcf51557": "Cesta pro uživatele",
|
||||
"a64505c41150663968e277ec9b3ddaa5f4838798": "Základní cesta pro uživatele a jejich stažená videa.",
|
||||
"4e3120311801c4acd18de7146add2ee4a4417773": "Povolit odběry",
|
||||
"4bee2a4bef2d26d37c9b353c278e24e5cd309ce3": "Základní cesta pro odběry",
|
||||
"bc9892814ee2d119ae94378c905ea440a249b84a": "Základní cesta k videím z odebíraných kanálů a playlistů. Cesta je relativní k hlavní složce YTDL-Material.",
|
||||
"5bef4b25ba680da7fff06b86a91b1fc7e6a926e3": "Interval kontroly",
|
||||
"0f56a7449b77630c114615395bbda4cab398efd8": "Hodnota ve vteřinách, použijte pouze číslice.",
|
||||
"13759b09a7f4074ceee8fa2f968f9815fdf63295": "Někdy jsou nová videa stažena dříve než mohou být plně zpracována. Toto nastavení znamená, že nová videa budou zkontrolována následující den pro zjištění, zda existují verze ve vyšší kvalitě.",
|
||||
"3d1a47dc18b7bd8b5d9e1eb44b235ed9c4a2b513": "Znovu stáhnout čersvé nahrávky",
|
||||
"27a56aad79d8b61269ed303f11664cc78bcc2522": "Vzhled",
|
||||
"ff7cee38a2259526c519f878e71b964f41db4348": "Výchozí",
|
||||
"7a6bacee4c31cb5c0ac2d24274fb4610d8858602": "Povolit změnu vzhledu",
|
||||
"fe46ccaae902ce974e2441abe752399288298619": "Jazyk",
|
||||
"ab2756805742e84ad0cc0468f4be2d8aa9f855a5": "Cesta pro složku s audio soubory",
|
||||
"c2c89cdf45d46ea64d2ed2f9ac15dfa4d77e26ca": "Cesta pro složku se zvukovými soubory. Cesta je relativní k hlavní složce YTDL-Material.",
|
||||
"46826331da1949bd6fb74624447057099c9d20cd": "Cesta pro složku s video soubory",
|
||||
"17c92e6d47a213fa95b5aa344b3f258147123f93": "Cesta pro složku s video soubory. Cesta je relativní k hlavní složce YTDL-Material.",
|
||||
"cfe829634b1144bc44b6d38cf5584ea65db9804f": "Výchozí výstup souboru",
|
||||
"1148fd45287ff09955b938756bc302042bcb29c7": "Cesta je relativní k cestám pro stažení výše. Nezahrnujte koncovky souborů.",
|
||||
"ef418d4ece7c844f3a5e431da1aa59bedd88da7b": "Globální vlastní argumenty",
|
||||
"6b995e7130b4d667eaab6c5f61b362ace486d26d": "Globální vlastní argumenty pro stahování na hlavní stránce. Argumenty se oddělují pomocí dvou čárek za sebou takto: ,,",
|
||||
"04201f9d27abd7d6f58a4328ab98063ce1072006": "Kategorie",
|
||||
"78e49b7339b4fa7184dd21bcaae107ce9b7076f6": "Použít archiv youtube-dl",
|
||||
"ffc19f32b1cba0daefc0e5668f89346db1db83ad": "Zahrnout náhledový obrázek",
|
||||
"384de8f8f112c9e6092eb2698706d391553f3e8d": "Zahrnout metadata",
|
||||
"fb35145bfb84521e21b6385363d59221f436a573": "Zrušit všechna stahování",
|
||||
"61f8fd90b5f8cb20c70371feb2ee5e1fac5a9095": "Hlavní název",
|
||||
"78d3531417c0d4ba4c90f0d4ae741edc261ec8df": "Povolit správce souborů",
|
||||
"a5a1be0a5df07de9eec57f5d2a86ed0204b2e75a": "Povolit správce stahování",
|
||||
"c33bd5392b39dbed36b8e5a1145163a15d45835f": "Povolit výběr kvality",
|
||||
"bda5508e24e0d77debb28bcd9194d8fefb1cfb92": "Režim pouze stahování",
|
||||
"09d31c803a7252658694e1e3176b97f5655a3fe3": "Povolit režim více stahování zároveň",
|
||||
"1c4dbce56d96b8974aac24a02f7ab2ee81415014": "Povolit Veřejné API",
|
||||
"23bd81dcc30b74d06279a26d7a42e8901c1b124e": "Veřejný API Klíč",
|
||||
"41016a73d8ad85e6cb26dffa0a8fab9fe8f60d8e": "Zobrazit dokumentaci",
|
||||
"00a94f58d9eb2e3aa561440eabea616d0c937fa2": "Tímto odstraníte svůj starý API klíč!",
|
||||
"1b258b258b4cc475ceb2871305b61756b0134f4a": "Vygenerovat",
|
||||
"d5d7c61349f3b0859336066e6d453fc35d334fe5": "Použít YouTube API",
|
||||
"ce10d31febb3d9d60c160750570310f303a22c22": "YouTube API Klíč",
|
||||
"8602e313cdfa7c4cc475ccbe86459fce3c3fd986": "Vygenerovat klič je snadné!",
|
||||
"d162f9fcd6a7187b391e004f072ab3da8377c47d": "Použít Twitch API",
|
||||
"8ae23bc4302a479f687f4b20a84c276182e2519c": "Twitch API Klíč",
|
||||
"84ffcebac2709ca0785f4a1d5ba274433b5beabc": "Také známý jako ID Klienta.",
|
||||
"5fb1e0083c9b2a40ac8ae7dcb2618311c291b8b9": "Automaticky stahovat Twitch Chat",
|
||||
"9b3cedfa83c6d7acb3210953289d1be4aab115c7": "Klikněte zde",
|
||||
"7f09776373995003161235c0c8d02b7f91dbc4df": "pro ruční stažení oficiálního Chrome doplňku YoutubeDL-Material.",
|
||||
"5b5296423906ab3371fdb2b5a5aaa83acaa2ee52": "Musíte ručně nahrát rozšíření a upravit jeho nastavení tak, aby odkazovalo na URL adresu vaší domény.",
|
||||
"9a2ec6da48771128384887525bdcac992632c863": "pro instalaci oficiálního doplňku YouTubeDL-Material přímo z obchodu Firefox.",
|
||||
"eb81be6b49e195e5307811d1d08a19259d411f37": "Podrobné instrukce k nastavení.",
|
||||
"cb17ff8fe3961cf90f44bee97c88a3f3347a7e55": "Není toho potřeba mnoho, stačí v nastavení rozšíření změnit odkaz na URL adresu Vaší domény.",
|
||||
"61b81b11aad0b9d970ece2fce18405f07eac69c2": "Přetáhněte odkaz níže do svých záložek a je to! Poté si najděte na YouTube video, které byste chtěli stáhnout a klikněte na uloženou záložku.",
|
||||
"c505d6c5de63cc700f0aaf8a4b31fae9e18024e5": "Vygenerovat záložku pro 'pouze zvuk'",
|
||||
"ec71e08aee647ea4a71fd6b7510c54d84a797ca6": "Vybrat službu pro stahování",
|
||||
"5fab47f146b0a4b809dcebf3db9da94df6299ea1": "Použít výchozího agenta pro stahování",
|
||||
"c776eb4992b6c98f58cd89b20c1ea8ac37888521": "Vybrat agenta pro stahování",
|
||||
"0c43af932e6a4ee85500e28f01b3538b4eb27bc4": "Úroveň Záznamů",
|
||||
"db6c192032f4cab809aad35215f0aa4765761897": "Vypršení přihlášení",
|
||||
"dc3d990391c944d1fbfc7cfb402f7b5e112fb3a8": "Povolit pokročilé nastavení stahování",
|
||||
"431e5f3a0dde88768d1074baedd65266412b3f02": "Použít Cookies",
|
||||
"80651a7ad1229ea6613557d3559f702cfa5aecf5": "Nastavit Cookies",
|
||||
"37224420db54d4bc7696f157b779a7225f03ca9d": "Povolit registraci uživatelů",
|
||||
"fa548cee6ea11c160a416cac3e6bdec0363883dc": "Autentifikační metoda",
|
||||
"4f56ced9d6b85aeb1d4346433361d47ea72dac1a": "Interní",
|
||||
"e3d7c5f019e79a3235a28ba24df24f11712c7627": "LDAP",
|
||||
"1db9789b93069861019bd0ccaa5d4706b00afc61": "URL adresa LDAP",
|
||||
"f50fa6c09c8944aed504f6325f2913ee6c7a296a": "Bind-DN",
|
||||
"080cc6abcba236390fc22e79792d0d3443a3bd2a": "Přihlašovací údaje pro Bind",
|
||||
"cfa67d14d84fe0e9fadf251dc51ffc181173b662": "Vyhledávací Základna",
|
||||
"e01d54ecc1a0fcf9525a3c100ed8b83d94e61c23": "Vyhledávací Filtr",
|
||||
"cec82c0a545f37420d55a9b6c45c20546e82f94e": "O YoutubeDL-Material",
|
||||
"199c17e5d6a419313af3c325f06dcbb9645ca618": "je open-source projekt pro stahování z YouTube postavený na specifikaci Material Designu od Google. Můžete pohodlně a bez problémů stahovat Vaše oblíbená videa jako video soubory nebo pouze zvukové soubory a dokonce odebírat Vaše oblíbené kanály a playlisty, aby Vám neunikla ta nejnovější videa.",
|
||||
"bc0ad0ee6630acb7fcb7802ec79f5a0ee943c1a7": "má spoustu skvělých funkcí! Rozšířitelné API, podporu Dockeru, překladů a lokalizace. Pro více informací o všech funkcích klikněte na GitHub ikonu výše.",
|
||||
"a45e3b05f0529dc5246d70ef62304c94426d4c81": "Nainstalovaná verze:",
|
||||
"b33536f59b94ec935a16bd6869d836895dc5300c": "Našli jste chybu nebo máte připomínku?",
|
||||
"e1f398f38ff1534303d4bb80bd6cece245f24016": "pro vytvoření Problému na GitHubu!",
|
||||
"e22f3a5351944f3a1a10cfc7da6f65dfbe0037fe": "Probíhá kontrola aktualizací...",
|
||||
"a16e92385b4fd9677bb830a4b796b8b79c113290": "Dostupná aktualizace",
|
||||
"189b28aaa19b3c51c6111ad039c4fd5e2a22e370": "Můžete aktualizovat pomocí menu nastavení.",
|
||||
"1372e61c5bd06100844bd43b98b016aabc468f62": "Vyberte verzi:",
|
||||
"1f6d14a780a37a97899dc611881e6bc971268285": "Povolit sdílení",
|
||||
"6580b6a950d952df847cb3d8e7176720a740adc8": "Použít časové razítko",
|
||||
"4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c": "Vteřin",
|
||||
"3a6e5a6aa78ca864f6542410c5dafb6334538106": "Zkopírovat do schránky",
|
||||
"a249a5ae13e0835383885aaf697d2890cc3e53e9": "Sdílet playlist",
|
||||
"15da89490e04496ca9ea1e1b3d44fb5efd4a75d9": "Sdílet video",
|
||||
"1d540dcd271b316545d070f9d182c372d923aadd": "Sdílet audio",
|
||||
"a1ad8b1be9be43b5183bd2c3186d4e19496f2a0b": "ID Relace:",
|
||||
"b6c453e0e61faea184bbaf5c5b0a1e164f4de2a2": "Vymazat všechna stahování",
|
||||
"eb98135e35af26a9a326ee69bd8ff104d36dd8ec": "(momentální)",
|
||||
"7117fc42f860e86d983bfccfcf2654e5750f3406": "Nejsou dostupná žádná stahování!",
|
||||
"42ff677ec14f111e88bd6cdd30145378e994d1bf": "Váš Profil",
|
||||
"bb694b49d408265c91c62799c2b3a7e3151c824d": "Odhlásit se",
|
||||
"ac9d09de42edca1296371e4d801349c9096ac8de": "UID:",
|
||||
"a5ed099ffc9e96f6970df843289ade8a7d20ab9f": "Vytvořeno:",
|
||||
"fa96f2137af0a24e6d6d54c598c0af7d5d5ad344": "Nejste přihlášen.",
|
||||
"a1dbca87b9f36d2b06a5cbcffb5814c4ae9b798a": "Vytvořit administrátorský účet",
|
||||
"2d2adf3ca26a676bca2269295b7455a26fd26980": "Nebyl zjištěn žádný administrátorský účet. Tímto se vytvoří administrátorský účet 'admin' a bude mu vytvořeno heslo.",
|
||||
"70a67e04629f6d412db0a12d51820b480788d795": "Vytvořit",
|
||||
"4d92a0395dd66778a931460118626c5794a3fc7a": "Přidat Uživatele",
|
||||
"b0d7dd8a1b0349622d6e0c6e643e24a9ea0efa1d": "Upravit Roli",
|
||||
"746f64ddd9001ac456327cd9a3d5152203a4b93c": "Uživatelské jméno",
|
||||
"52c1447c1ec9570a2a3025c7e566557b8d19ed92": "Role",
|
||||
"59a8c38db3091a63ac1cb9590188dc3a972acfb3": "Akce",
|
||||
"2bd201aea09e43fbfd3cd15ec0499b6755302329": "Spravovat uživatele",
|
||||
"95b95a9c79e4fd9ed41f6855e37b3b06af25bcab": "Odstranit uživatele",
|
||||
"632e8b20c98e8eec4059a605a4b011bb476137af": "Upravit uživatele",
|
||||
"29c97c8e76763bb15b6d515648fa5bd1eb0f7510": "UID Uživatele:",
|
||||
"e70e209561583f360b1e9cefd2cbb1fe434b6229": "Nové heslo",
|
||||
"6498fa1b8f563988f769654a75411bb8060134b9": "Nastavit nové heslo",
|
||||
"544e09cdc99a8978f48521d45f62db0da6dcf742": "Použít výchozí nastavení role",
|
||||
"4f20f2d5a6882190892e58b85f6ccbedfa737952": "Ano",
|
||||
"3d3ae7deebc5949b0c1c78b9847886a94321d9fd": "Ne",
|
||||
"57c6c05d8ebf4ef1180c2705033c044f655bb2c4": "Spravovat roli",
|
||||
"5009630cdf32ab4f1c78737b9617b8773512c05a": "Řádky:",
|
||||
"8a0bda4c47f10b2423ff183acefbf70d4ab52ea2": "Vyčistit záznamy",
|
||||
"24dc3ecf7ec2c2144910c4f3d38343828be03a4c": "Vytvořeno automaticky",
|
||||
"ccf5ea825526ac490974336cb5c24352886abc07": "Otevřít soubor",
|
||||
"5656a06f17c24b2d7eae9c221567b209743829a9": "Otevřít soubor na nové kartě",
|
||||
"a0720c36ee1057e5c54a86591b722485c62d7b1a": "Jít do odběrů",
|
||||
"94e01842dcee90531caa52e4147f70679bac87fe": "Odstranit a stáhnout znovu",
|
||||
"2031adb51e07a41844e8ba7704b054e98345c9c1": "Odstranit navždy",
|
||||
"ddc31f2885b1b33a7651963254b0c197f2a64086": "Zobrazit více.",
|
||||
"56a2a773fbd5a6b9ac2e6b89d29d70a2ed0f3227": "Zobrazit méně.",
|
||||
"2054791b822475aeaea95c0119113de3200f5e1c": "Délka:"
|
||||
}
|
||||
2517
src/assets/i18n/messages.cs.xlf
Normal file
2517
src/assets/i18n/messages.cs.xlf
Normal file
File diff suppressed because it is too large
Load Diff
@@ -18,8 +18,8 @@
|
||||
"4be966a9dcfbc9b54dfcc604b831c0289f847fa4": "URL verwenden",
|
||||
"d3f02f845e62cebd75fde451ab8479d2a8ad784d": "Ansehen",
|
||||
"4a9889d36910edc8323d7bab60858ab3da6d91df": "Nur Audio",
|
||||
"96a01fafe135afc58b0f8071a4ab00234495ce18": "Multi-Download Modus",
|
||||
"6a21ba5fb0ac804a525bf9ab168038c3ee88e661": "Download",
|
||||
"96a01fafe135afc58b0f8071a4ab00234495ce18": "Multi-Herunteraden-Modus",
|
||||
"6a21ba5fb0ac804a525bf9ab168038c3ee88e661": "Herunterladen",
|
||||
"6a3777f913cf3f288664f0632b9f24794fdcc24e": "Abbrechen",
|
||||
"322ed150e02666fe2259c5b4614eac7066f4ffa0": "Erweitert",
|
||||
"b7ffe7c6586d6f3f18a9246806a7c7d5538ab43e": "Simulierter Befehl:",
|
||||
@@ -49,9 +49,9 @@
|
||||
"f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8": "Schließen",
|
||||
"ca3dbbc7f3e011bffe32a10a3ea45cc84f30ecf1": "ID:",
|
||||
"e684046d73bcee88e82f7ff01e2852789a05fc32": "Anzahl:",
|
||||
"321e4419a943044e674beb55b8039f42a9761ca5": "Info",
|
||||
"321e4419a943044e674beb55b8039f42a9761ca5": "Infos",
|
||||
"826b25211922a1b46436589233cb6f1a163d89b7": "Löschen",
|
||||
"34504b488c24c27e68089be549f0eeae6ebaf30b": "Löschen und zur Blacklist hinzufügen",
|
||||
"34504b488c24c27e68089be549f0eeae6ebaf30b": "Löschen und zur schwarzen Liste hinzufügen",
|
||||
"121cc5391cd2a5115bc2b3160379ee5b36cd7716": "Einstellungen",
|
||||
"801b98c6f02fe3b32f6afa3ee854c99ed83474e6": "URL",
|
||||
"54c512cca1923ab72faf1a0bd98d3d172469629a": "URL, über die auf diese Applikation zugegriffen wird, ohne Port.",
|
||||
@@ -88,8 +88,8 @@
|
||||
"78d3531417c0d4ba4c90f0d4ae741edc261ec8df": "Dateimanager aktivieren",
|
||||
"a5a1be0a5df07de9eec57f5d2a86ed0204b2e75a": "Download-Manager aktivieren",
|
||||
"c33bd5392b39dbed36b8e5a1145163a15d45835f": "Qualitätsauswahl erlauben",
|
||||
"bda5508e24e0d77debb28bcd9194d8fefb1cfb92": "Nur Download Modus",
|
||||
"09d31c803a7252658694e1e3176b97f5655a3fe3": "Multi-Download Modus erlauben",
|
||||
"bda5508e24e0d77debb28bcd9194d8fefb1cfb92": "Nur-Herunterladen-Modus",
|
||||
"09d31c803a7252658694e1e3176b97f5655a3fe3": "Multi-Herunterladen-Modus erlauben",
|
||||
"d8b47221b5af9e9e4cd5cb434d76fc0c91611409": "Einstellungen durch PIN schützen",
|
||||
"f5ec7b2cdf87d41154f4fcbc86e856314409dcb9": "Neuen PIN festlegen",
|
||||
"1c4dbce56d96b8974aac24a02f7ab2ee81415014": "Öffentliche API aktivieren",
|
||||
@@ -120,7 +120,7 @@
|
||||
"199c17e5d6a419313af3c325f06dcbb9645ca618": "ist ein quelloffener YouTube-Downloader, der nach den Material-Design-Richtlinien von Google erstellt wurde. Sie können Ihre Lieblingsvideos reibungslos als Video- oder Audiodateien herunterladen und sogar Ihre Lieblingskanäle und Wiedergabelisten abonnieren, um auf dem Laufenden zu bleiben.",
|
||||
"bc0ad0ee6630acb7fcb7802ec79f5a0ee943c1a7": "beinhaltet viele tolle Funktionen! API, Docker und Lokalisierung werden unter anderem unterstützt. Informieren Sie sich über alle unterstützten Funktionen auf Github.",
|
||||
"a45e3b05f0529dc5246d70ef62304c94426d4c81": "Installierte Version:",
|
||||
"e22f3a5351944f3a1a10cfc7da6f65dfbe0037fe": "Suche nach Updates ...",
|
||||
"e22f3a5351944f3a1a10cfc7da6f65dfbe0037fe": "Suche nach Aktualisierungen …",
|
||||
"a16e92385b4fd9677bb830a4b796b8b79c113290": "Aktualisierung verfügbar",
|
||||
"189b28aaa19b3c51c6111ad039c4fd5e2a22e370": "Sie können über das Einstellungsmenü aktualisieren.",
|
||||
"b33536f59b94ec935a16bd6869d836895dc5300c": "Haben Sie einen Fehler gefunden oder einen Vorschlag?",
|
||||
@@ -130,7 +130,7 @@
|
||||
"a5ed099ffc9e96f6970df843289ade8a7d20ab9f": "Erstellt:",
|
||||
"fa96f2137af0a24e6d6d54c598c0af7d5d5ad344": "Sie sind nicht angemeldet.",
|
||||
"6765b4c916060f6bc42d9bb69e80377dbcb5e4e9": "Anmelden",
|
||||
"bb694b49d408265c91c62799c2b3a7e3151c824d": "Ausloggen",
|
||||
"bb694b49d408265c91c62799c2b3a7e3151c824d": "Abmelden",
|
||||
"a1dbca87b9f36d2b06a5cbcffb5814c4ae9b798a": "Admin-Konto erstellen",
|
||||
"2d2adf3ca26a676bca2269295b7455a26fd26980": "Es wurde kein Standard-Administratorkonto erkannt. Ein Administratorkonto mit dem Benutzernamen \"admin\" wird erstellt und ein Passwort wird festgelegt.",
|
||||
"70a67e04629f6d412db0a12d51820b480788d795": "Erstellen",
|
||||
@@ -149,16 +149,16 @@
|
||||
"5b3075e8dc3f3921ec316b0bd83b6d14a06c1a4f": "Änderungen speichern",
|
||||
"4f8b2bb476981727ab34ed40fde1218361f92c45": "Details",
|
||||
"e9aff8e6df2e2bf6299ea27bb2894c70bc48bd4d": "Ein Fehler ist aufgetreten:",
|
||||
"77b0c73840665945b25bd128709aa64c8f017e1c": "Download Start:",
|
||||
"08ff9375ec078065bcdd7637b7ea65fce2979266": "Download Ende:",
|
||||
"77b0c73840665945b25bd128709aa64c8f017e1c": "Start des Herunterladen:",
|
||||
"08ff9375ec078065bcdd7637b7ea65fce2979266": "Ende des Herunterladen:",
|
||||
"ad127117f9471612f47d01eae09709da444a36a4": "Dateipfad(e):",
|
||||
"a9806cf78ce00eb2613eeca11354a97e033377b8": "Abonnieren Sie eine Wiedergabeliste oder einen Kanal",
|
||||
"93efc99ae087fc116de708ecd3ace86ca237cf30": "URL der Wiedergabeliste oder des Kanales",
|
||||
"08f5d0ef937ae17feb1b04aff15ad88911e87baf": "Benutzerdefinierter Name",
|
||||
"f3f62aa84d59f3a8b900cc9a7eec3ef279a7b4e7": "Dies ist optional",
|
||||
"ea30873bd3f0d5e4fb2378eec3f0a1db77634a28": "Alle Uploads herunterladen",
|
||||
"ea30873bd3f0d5e4fb2378eec3f0a1db77634a28": "Alle hochgeladene Videos herunterladen",
|
||||
"28a678e9cabf86e44c32594c43fa0e890135c20f": "Videos herunterladen aus den letzten",
|
||||
"408ca4911457e84a348cecf214f02c69289aa8f1": "Nur Streaming Modus",
|
||||
"408ca4911457e84a348cecf214f02c69289aa8f1": "Nur-Streaming-Modus",
|
||||
"d0336848b0c375a1c25ba369b3481ee383217a4f": "Abonnieren",
|
||||
"e78c0d60ac39787f62c9159646fe0b3c1ed55a1d": "Typ:",
|
||||
"a44d86aa1e6c20ced07aca3a7c081d8db9ded1c6": "Archiv:",
|
||||
@@ -179,7 +179,7 @@
|
||||
"cfc2f436ec2beffb042e7511a73c89c372e86a6c": "Registrieren",
|
||||
"a1ad8b1be9be43b5183bd2c3186d4e19496f2a0b": "Sitzungs-ID:",
|
||||
"eb98135e35af26a9a326ee69bd8ff104d36dd8ec": "(aktuell)",
|
||||
"7117fc42f860e86d983bfccfcf2654e5750f3406": "Zurzeit sind keine Herunterladen-Ereignisse verfügbar!",
|
||||
"7117fc42f860e86d983bfccfcf2654e5750f3406": "Zurzeit sind keine Downloads verfügbar!",
|
||||
"b7ff2e2b909c53abe088fe60b9f4b6ac7757247f": "Nutzer registrieren",
|
||||
"024886ca34a6f309e3e51c2ed849320592c3faaa": "Benutzername",
|
||||
"2bd201aea09e43fbfd3cd15ec0499b6755302329": "Benutzer verwalten",
|
||||
@@ -199,7 +199,7 @@
|
||||
"fd59fb984749fcdb5e386ae85faec82f8e5ac098": "Logs erscheinen hier",
|
||||
"98b6ec9ec138186d663e64770267b67334353d63": "Benutzerdefinierte Dateiausgabe",
|
||||
"f432e1a8d6adb12e612127978ce2e0ced933959c": "Diese werden nach den Standardargumenten hinzugefügt.",
|
||||
"c76a955642714b8949ff3e4b4990864a2e2cac95": "Nur-Audio Modus",
|
||||
"c76a955642714b8949ff3e4b4990864a2e2cac95": "Nur-Audio-Modus",
|
||||
"eb3d5aefff38a814b76da74371cbf02c0789a1ef": "Protokolle",
|
||||
"80651a7ad1229ea6613557d3559f702cfa5aecf5": "Cookies setzen",
|
||||
"431e5f3a0dde88768d1074baedd65266412b3f02": "Cookies verwenden",
|
||||
@@ -221,5 +221,50 @@
|
||||
"511b600ae4cf037e4eb3b7a58410842cd5727490": "Weitere Inhalte hinzufügen",
|
||||
"f61c6867295f3b53d23557021f2f4e0aa1d0b8fc": "Typ",
|
||||
"2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4": "Video",
|
||||
"f0baeb8b69d120073b6d60d34785889b0c3232c8": "Audio"
|
||||
"f0baeb8b69d120073b6d60d34785889b0c3232c8": "Audio",
|
||||
"d02888c485d3aeab6de628508f4a00312a722894": "Meine Videos",
|
||||
"a0720c36ee1057e5c54a86591b722485c62d7b1a": "Zu den Abonnements gehen",
|
||||
"5656a06f17c24b2d7eae9c221567b209743829a9": "Datei in einer neuen Registerkarte öffnen",
|
||||
"b6c453e0e61faea184bbaf5c5b0a1e164f4de2a2": "Herunterladen-Liste leeren",
|
||||
"544e09cdc99a8978f48521d45f62db0da6dcf742": "Rollenstandard verwenden",
|
||||
"ccf5ea825526ac490974336cb5c24352886abc07": "Datei öffnen",
|
||||
"8a0bda4c47f10b2423ff183acefbf70d4ab52ea2": "Protokolldatei löschen",
|
||||
"95b95a9c79e4fd9ed41f6855e37b3b06af25bcab": "Benutzer löschen",
|
||||
"632e8b20c98e8eec4059a605a4b011bb476137af": "Benutzer bearbeiten",
|
||||
"fa548cee6ea11c160a416cac3e6bdec0363883dc": "Authentifizierungsmethode",
|
||||
"3697f8583ea42868aa269489ad366103d94aece7": "Bearbeiten",
|
||||
"348cc5d553b18e862eb1c1770e5636f6b05ba130": "Ein Fehler ist aufgetreten",
|
||||
"4d8a18b04a1f785ecd8021ac824e0dfd5881dbfc": "Der Download war erfolgreich",
|
||||
"cfa67d14d84fe0e9fadf251dc51ffc181173b662": "Search Base",
|
||||
"080cc6abcba236390fc22e79792d0d3443a3bd2a": "Bind Credentials",
|
||||
"f50fa6c09c8944aed504f6325f2913ee6c7a296a": "Bind DN",
|
||||
"1db9789b93069861019bd0ccaa5d4706b00afc61": "LDAP URL",
|
||||
"e3d7c5f019e79a3235a28ba24df24f11712c7627": "LDAP",
|
||||
"5fb1e0083c9b2a40ac8ae7dcb2618311c291b8b9": "Twitch-Chat automatisch herunterladen",
|
||||
"84ffcebac2709ca0785f4a1d5ba274433b5beabc": "Wird auch als Client-ID bezeichnet.",
|
||||
"8ae23bc4302a479f687f4b20a84c276182e2519c": "Twitch-API-Schlüssel",
|
||||
"d162f9fcd6a7187b391e004f072ab3da8377c47d": "Twitch-API verwenden",
|
||||
"04201f9d27abd7d6f58a4328ab98063ce1072006": "Kategorien",
|
||||
"3d1a47dc18b7bd8b5d9e1eb44b235ed9c4a2b513": "Neue Uploads erneut herunterladen",
|
||||
"792dc6a57f28a1066db283f2e736484f066005fd": "Twitch-Chat herunterladen",
|
||||
"e4eeb9106dbcbc91ca1ac3fb4068915998a70f37": "Neue Regel hinzufügen",
|
||||
"2489eefea00931942b91f4a1ae109514b591e2e1": "Regeln",
|
||||
"c3b0b86523f1d10e84a71f9b188d54913a11af3b": "Kategorie bearbeiten",
|
||||
"07db550ae114d9faad3a0cbb68bcc16ab6cd31fc": "Pausiert",
|
||||
"73423607944a694ce6f9e55cfee329681bb4d9f9": "Keine Videos gefunden.",
|
||||
"29376982b1205d9d6ea3d289e8e2f8e1ac2839b1": "Umgekehrte Reihenfolge",
|
||||
"33026f57ea65cd9c8a5d917a08083f71a718933a": "Normale Reihenfolge",
|
||||
"5caadefa4143cf6766a621b0f54f91f373a1f164": "Inhalt hinzufügen",
|
||||
"0cc1dec590ecd74bef71a865fb364779bc42a749": "Kategorie:",
|
||||
"303e45ffae995c9817e510e38cb969e6bb3adcbf": "(Pausiert)",
|
||||
"56a2a773fbd5a6b9ac2e6b89d29d70a2ed0f3227": "Weniger sehen.",
|
||||
"ddc31f2885b1b33a7651963254b0c197f2a64086": "Mehr sehen.",
|
||||
"24dc3ecf7ec2c2144910c4f3d38343828be03a4c": "Automatisch generiert",
|
||||
"c776eb4992b6c98f58cd89b20c1ea8ac37888521": "Wähle einen Download-Agenten",
|
||||
"ef418d4ece7c844f3a5e431da1aa59bedd88da7b": "Globale benutzerdefinierte Argumente",
|
||||
"1148fd45287ff09955b938756bc302042bcb29c7": "Der Pfad ist relativ zu den darüberliegenden Downloadpfaden. Erweiterung auslassen.",
|
||||
"cfe829634b1144bc44b6d38cf5584ea65db9804f": "Standard-Dateiausgabe",
|
||||
"13759b09a7f4074ceee8fa2f968f9815fdf63295": "Manchmal werden neue Videos heruntergeladen bevor diese von der Videoplattform vollständig verarbeitet wurden. Diese Einstellung bewirkt, dass am Folgetag neue Videos auf eine höhere Auflösung überprüft werden.",
|
||||
"dad95154dcef3509b8cc705046061fd24994bbb7": "Aufrufe",
|
||||
"d641b8fa5ac5e85114c733b1f7de6976bd091f70": "Maximale Qualität"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -86,7 +86,7 @@
|
||||
<source> Only Audio </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">60,61</context>
|
||||
<context context-type="linenumber">65,66</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Only Audio checkbox</note>
|
||||
</trans-unit>
|
||||
@@ -94,7 +94,7 @@
|
||||
<source> Download </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">74,75</context>
|
||||
<context context-type="linenumber">79,80</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Main download button</note>
|
||||
</trans-unit>
|
||||
@@ -110,7 +110,7 @@
|
||||
<source>Use URL</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">YT search Use URL button for searched video</note>
|
||||
</trans-unit>
|
||||
@@ -118,7 +118,7 @@
|
||||
<source> View </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">50,51</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">YT search View button for searched video</note>
|
||||
</trans-unit>
|
||||
@@ -126,7 +126,7 @@
|
||||
<source> Multi-download Mode </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">65,66</context>
|
||||
<context context-type="linenumber">70,71</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Multi-download Mode checkbox</note>
|
||||
</trans-unit>
|
||||
@@ -134,7 +134,7 @@
|
||||
<source> Cancel </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">79,80</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Cancel download button</note>
|
||||
</trans-unit>
|
||||
@@ -142,7 +142,7 @@
|
||||
<source> Advanced </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
<context context-type="linenumber">96,97</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Advanced download mode panel</note>
|
||||
</trans-unit>
|
||||
@@ -150,7 +150,7 @@
|
||||
<source> Use custom args </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">105,106</context>
|
||||
<context context-type="linenumber">110,111</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Use custom args checkbox</note>
|
||||
</trans-unit>
|
||||
@@ -158,7 +158,7 @@
|
||||
<source>Custom args</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">110</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
@@ -174,7 +174,7 @@
|
||||
<source> No need to include URL, just everything after. Args are delimited using two commas like so: ,, </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">113,114</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Custom Args input hint</note>
|
||||
</trans-unit>
|
||||
@@ -182,7 +182,7 @@
|
||||
<source> Use custom output </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">121,122</context>
|
||||
<context context-type="linenumber">126,127</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Use custom output checkbox</note>
|
||||
</trans-unit>
|
||||
@@ -190,7 +190,7 @@
|
||||
<source>Custom output</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">130</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Custom output placeholder</note>
|
||||
</trans-unit>
|
||||
@@ -198,7 +198,7 @@
|
||||
<source>Documentation</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">127</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
@@ -222,7 +222,7 @@
|
||||
<source>Path is relative to the config download path. Don't include extension.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
<context context-type="linenumber">133</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/subscribe-dialog/subscribe-dialog.component.html</context>
|
||||
@@ -238,11 +238,35 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">Custom Output input hint</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="4e1291cb1d579e7b7a1b802e6a8fd16ef7a557fa" datatype="html">
|
||||
<source> Crop file </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">155,156</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Crop video checkbox</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="44d007f6f8a2b19f12d85f9e49647b4ac02d7cbe" datatype="html">
|
||||
<source>Crop from (seconds)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">159</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Crop from placeholder</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="661206c3ab91fa81e9d8b40afb29f1866b78432f" datatype="html">
|
||||
<source>Crop to (seconds)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Crop to placeholder</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="b7ffe7c6586d6f3f18a9246806a7c7d5538ab43e" datatype="html">
|
||||
<source> Simulated command: </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">97,98</context>
|
||||
<context context-type="linenumber">102,103</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Simulated command label</note>
|
||||
</trans-unit>
|
||||
@@ -250,7 +274,7 @@
|
||||
<source> Use authentication </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">135,136</context>
|
||||
<context context-type="linenumber">140,141</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Use authentication checkbox</note>
|
||||
</trans-unit>
|
||||
@@ -258,7 +282,7 @@
|
||||
<source>Username</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">139</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">YT Username placeholder</note>
|
||||
</trans-unit>
|
||||
@@ -266,7 +290,7 @@
|
||||
<source>Password</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/main/main.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">149</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/add-user-dialog/add-user-dialog.component.html</context>
|
||||
@@ -294,7 +318,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/modify-playlist/modify-playlist.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/edit-category-dialog/edit-category-dialog.component.html</context>
|
||||
@@ -566,7 +590,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/share-media-dialog/share-media-dialog.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/user-profile-dialog/user-profile-dialog.component.html</context>
|
||||
@@ -814,19 +838,11 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">Modify playlist dialog title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="5caadefa4143cf6766a621b0f54f91f373a1f164" datatype="html">
|
||||
<source>Add content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/modify-playlist/modify-playlist.component.html</context>
|
||||
<context context-type="linenumber">19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Add content</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="52c9a103b812f258bcddc3d90a6e3f46871d25fe" datatype="html">
|
||||
<source>Save</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/modify-playlist/modify-playlist.component.html</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/edit-subscription-dialog/edit-subscription-dialog.component.html</context>
|
||||
@@ -838,7 +854,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">416</context>
|
||||
<context context-type="linenumber">464</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/modify-users/modify-users.component.html</context>
|
||||
@@ -846,11 +862,27 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">Save</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="cba36d610ddba59b6dd6fbec77199eabf0ff2de3" datatype="html">
|
||||
<source>Randomize order when playing</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/modify-playlist/modify-playlist.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Randomize order when playing checkbox label</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="5caadefa4143cf6766a621b0f54f91f373a1f164" datatype="html">
|
||||
<source>Add content</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/modify-playlist/modify-playlist.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Add content</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="33026f57ea65cd9c8a5d917a08083f71a718933a" datatype="html">
|
||||
<source>Normal order </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/modify-playlist/modify-playlist.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
<context context-type="linenumber">18</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Normal order</note>
|
||||
</trans-unit>
|
||||
@@ -858,7 +890,7 @@
|
||||
<source>Reverse order </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/modify-playlist/modify-playlist.component.html</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
<context context-type="linenumber">19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Reverse order</note>
|
||||
</trans-unit>
|
||||
@@ -1018,14 +1050,6 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">View count label</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="5b3075e8dc3f3921ec316b0bd83b6d14a06c1a4f" datatype="html">
|
||||
<source>Save changes</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/player/player.component.html</context>
|
||||
<context context-type="linenumber">59</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Playlist save changes button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="4d8a18b04a1f785ecd8021ac824e0dfd5881dbfc" datatype="html">
|
||||
<source>The download was successful</source>
|
||||
<context-group purpose="location">
|
||||
@@ -1166,15 +1190,23 @@
|
||||
<source>Extra</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">182</context>
|
||||
<context context-type="linenumber">185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Extra settings label</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="fb324ec7da611c6283caa6fc6257c39a56d6aaf7" datatype="html">
|
||||
<source>Database</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">284</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Database settings label</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="bc2e854e111ecf2bd7db170da5e3c2ed08181d88" datatype="html">
|
||||
<source>Advanced</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">281</context>
|
||||
<context context-type="linenumber">320</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Host settings label</note>
|
||||
</trans-unit>
|
||||
@@ -1182,11 +1214,11 @@
|
||||
<source>Users</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">355</context>
|
||||
<context context-type="linenumber">403</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">355</context>
|
||||
<context context-type="linenumber">403</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Users settings label</note>
|
||||
</trans-unit>
|
||||
@@ -1194,11 +1226,11 @@
|
||||
<source>Logs</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">403</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">403</context>
|
||||
<context context-type="linenumber">451</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Logs settings label</note>
|
||||
</trans-unit>
|
||||
@@ -1206,7 +1238,7 @@
|
||||
<source>{VAR_SELECT, select, true {Close} false {Cancel} other {otha}}</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">419</context>
|
||||
<context context-type="linenumber">467</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Settings cancel and close button</note>
|
||||
</trans-unit>
|
||||
@@ -1418,11 +1450,27 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">Categories</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="1f6d3986a970af27f16f8a95ce0dc3033cc90a83" datatype="html">
|
||||
<source>With this setting enabled, if a single video matches a category, the entire playlist will receive that category.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">158</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Allow playlist categorization setting tooltip</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="5da94ccb2301f586af26916e921bdad6d673ab58" datatype="html">
|
||||
<source>Allow playlist categorization</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">158</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Allow playlist categorization setting label</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="78e49b7339b4fa7184dd21bcaae107ce9b7076f6" datatype="html">
|
||||
<source>Use youtube-dl archive</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Use youtubedl archive setting</note>
|
||||
</trans-unit>
|
||||
@@ -1430,7 +1478,7 @@
|
||||
<source>Include thumbnail</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Include thumbnail setting</note>
|
||||
</trans-unit>
|
||||
@@ -1438,7 +1486,7 @@
|
||||
<source>Include metadata</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">171</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Include metadata setting</note>
|
||||
</trans-unit>
|
||||
@@ -1446,7 +1494,7 @@
|
||||
<source>Kill all downloads</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">175</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Kill all downloads button</note>
|
||||
</trans-unit>
|
||||
@@ -1454,7 +1502,7 @@
|
||||
<source>Top title</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Top title input placeholder</note>
|
||||
</trans-unit>
|
||||
@@ -1462,7 +1510,7 @@
|
||||
<source>File manager enabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">193</context>
|
||||
<context context-type="linenumber">196</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">File manager enabled setting</note>
|
||||
</trans-unit>
|
||||
@@ -1470,7 +1518,7 @@
|
||||
<source>Downloads manager enabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">196</context>
|
||||
<context context-type="linenumber">199</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Downloads manager enabled setting</note>
|
||||
</trans-unit>
|
||||
@@ -1478,7 +1526,7 @@
|
||||
<source>Allow quality select</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">199</context>
|
||||
<context context-type="linenumber">202</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Allow quality seelct setting</note>
|
||||
</trans-unit>
|
||||
@@ -1486,7 +1534,7 @@
|
||||
<source>Download only mode</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">202</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Download only mode setting</note>
|
||||
</trans-unit>
|
||||
@@ -1494,7 +1542,7 @@
|
||||
<source>Allow multi-download mode</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Allow multi-download mode setting</note>
|
||||
</trans-unit>
|
||||
@@ -1502,7 +1550,7 @@
|
||||
<source>Enable Public API</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">213</context>
|
||||
<context context-type="linenumber">216</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Enable Public API key setting</note>
|
||||
</trans-unit>
|
||||
@@ -1510,7 +1558,7 @@
|
||||
<source>Public API Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">218</context>
|
||||
<context context-type="linenumber">221</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Public API Key setting placeholder</note>
|
||||
</trans-unit>
|
||||
@@ -1518,7 +1566,7 @@
|
||||
<source>View documentation</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">219</context>
|
||||
<context context-type="linenumber">222</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">View API docs setting hint</note>
|
||||
</trans-unit>
|
||||
@@ -1526,7 +1574,7 @@
|
||||
<source>This will delete your old API key!</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">223</context>
|
||||
<context context-type="linenumber">226</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">delete api key tooltip</note>
|
||||
</trans-unit>
|
||||
@@ -1534,7 +1582,7 @@
|
||||
<source>Generate</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">223</context>
|
||||
<context context-type="linenumber">226</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Generate key button</note>
|
||||
</trans-unit>
|
||||
@@ -1542,7 +1590,7 @@
|
||||
<source>Use YouTube API</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">232</context>
|
||||
<context context-type="linenumber">235</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Use YouTube API setting</note>
|
||||
</trans-unit>
|
||||
@@ -1550,7 +1598,7 @@
|
||||
<source>Youtube API Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">236</context>
|
||||
<context context-type="linenumber">239</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Youtube API Key setting placeholder</note>
|
||||
</trans-unit>
|
||||
@@ -1558,11 +1606,11 @@
|
||||
<source>Generating a key is easy!</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">237</context>
|
||||
<context context-type="linenumber">240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">249</context>
|
||||
<context context-type="linenumber">252</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Youtube API Key setting hint</note>
|
||||
</trans-unit>
|
||||
@@ -1570,7 +1618,7 @@
|
||||
<source>Use Twitch API</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">241</context>
|
||||
<context context-type="linenumber">244</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Use Twitch API setting</note>
|
||||
</trans-unit>
|
||||
@@ -1578,7 +1626,7 @@
|
||||
<source>Twitch API Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">248</context>
|
||||
<context context-type="linenumber">251</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Twitch API Key setting placeholder</note>
|
||||
</trans-unit>
|
||||
@@ -1586,7 +1634,7 @@
|
||||
<source>Also known as a Client ID.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">249</context>
|
||||
<context context-type="linenumber">252</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Twitch API Key setting hint AKA preamble</note>
|
||||
</trans-unit>
|
||||
@@ -1594,7 +1642,7 @@
|
||||
<source>Auto-download Twitch Chat</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">244</context>
|
||||
<context context-type="linenumber">247</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Auto download Twitch Chat setting</note>
|
||||
</trans-unit>
|
||||
@@ -1602,11 +1650,11 @@
|
||||
<source>Click here</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">259</context>
|
||||
<context context-type="linenumber">262</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">265</context>
|
||||
<context context-type="linenumber">268</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/about-dialog/about-dialog.component.html</context>
|
||||
@@ -1618,7 +1666,7 @@
|
||||
<source>to download the official YoutubeDL-Material Chrome extension manually.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">259</context>
|
||||
<context context-type="linenumber">262</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Chrome click here suffix</note>
|
||||
</trans-unit>
|
||||
@@ -1626,7 +1674,7 @@
|
||||
<source>You must manually load the extension and modify the extension's settings to set the frontend URL.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">260</context>
|
||||
<context context-type="linenumber">263</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Chrome setup suffix</note>
|
||||
</trans-unit>
|
||||
@@ -1634,7 +1682,7 @@
|
||||
<source>to install the official YoutubeDL-Material Firefox extension right off the Firefox extensions page.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">265</context>
|
||||
<context context-type="linenumber">268</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Firefox click here suffix</note>
|
||||
</trans-unit>
|
||||
@@ -1642,7 +1690,7 @@
|
||||
<source>Detailed setup instructions.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">266</context>
|
||||
<context context-type="linenumber">269</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Firefox setup prefix link</note>
|
||||
</trans-unit>
|
||||
@@ -1650,7 +1698,7 @@
|
||||
<source>Not much is required other than changing the extension's settings to set the frontend URL.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">266</context>
|
||||
<context context-type="linenumber">269</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Firefox setup suffix</note>
|
||||
</trans-unit>
|
||||
@@ -1658,7 +1706,7 @@
|
||||
<source>Drag the link below to your bookmarks, and you're good to go! Just navigate to the YouTube video you'd like to download, and click the bookmark.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">271</context>
|
||||
<context context-type="linenumber">274</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Bookmarklet instructions</note>
|
||||
</trans-unit>
|
||||
@@ -1666,15 +1714,71 @@
|
||||
<source>Generate 'audio only' bookmarklet</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">272</context>
|
||||
<context context-type="linenumber">275</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Generate audio only bookmarklet checkbox</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47955e2cc6986625528b4352034858180d675281" datatype="html">
|
||||
<source>Database location:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">290</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Database location label</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="9f8de81d44ec2a9a58b97e589b9e3154b3966c60" datatype="html">
|
||||
<source>Records per table</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">291</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Records per table label</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="3913164a51898aac444bf6c7150e46ad5a8a18ad" datatype="html">
|
||||
<source>MongoDB Connection String</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">299</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">MongoDB Connection String</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="5473e36f5102e2ae22ce4c6620cacc40cc98da95" datatype="html">
|
||||
<source>Example:</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">300</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">MongoDB Connection String setting hint AKA preamble</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="d54142de169844b014ae913a4056c31495f4a305" datatype="html">
|
||||
<source>Test connection string</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">304</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Test connection string button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="98e94c9bdac1ca8beb29d73b2e6f7a9e5e035aec" datatype="html">
|
||||
<source>Transfer DB to </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">308</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transfer DB button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="b1c08387975e6feada407c9b5f5f564261b8192b" datatype="html">
|
||||
<source>Database information could not be retrieved. Check the server logs for more information.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">312</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Database info not retrieved error message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ec71e08aee647ea4a71fd6b7510c54d84a797ca6" datatype="html">
|
||||
<source>Select a downloader</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">287</context>
|
||||
<context context-type="linenumber">326</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Default downloader select label</note>
|
||||
</trans-unit>
|
||||
@@ -1682,7 +1786,7 @@
|
||||
<source>Use default downloading agent</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">295</context>
|
||||
<context context-type="linenumber">335</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Use default downloading agent setting</note>
|
||||
</trans-unit>
|
||||
@@ -1690,7 +1794,7 @@
|
||||
<source>Select a download agent</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">299</context>
|
||||
<context context-type="linenumber">339</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Custom downloader select label</note>
|
||||
</trans-unit>
|
||||
@@ -1698,7 +1802,7 @@
|
||||
<source>Log Level</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">313</context>
|
||||
<context context-type="linenumber">353</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Log Level label</note>
|
||||
</trans-unit>
|
||||
@@ -1706,7 +1810,7 @@
|
||||
<source>Login expiration</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">325</context>
|
||||
<context context-type="linenumber">365</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Login expiration select label</note>
|
||||
</trans-unit>
|
||||
@@ -1714,7 +1818,7 @@
|
||||
<source>Allow advanced download</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">336</context>
|
||||
<context context-type="linenumber">376</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Allow advanced downloading setting</note>
|
||||
</trans-unit>
|
||||
@@ -1722,7 +1826,7 @@
|
||||
<source>Use Cookies</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">344</context>
|
||||
<context context-type="linenumber">384</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Use cookies setting</note>
|
||||
</trans-unit>
|
||||
@@ -1730,15 +1834,23 @@
|
||||
<source>Set Cookies</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">345</context>
|
||||
<context context-type="linenumber">385</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Set cookies button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="635285fa5624d50a408feb7eb564c0db0d3f1ce1" datatype="html">
|
||||
<source>Restart server</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">397</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Restart server button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="37224420db54d4bc7696f157b779a7225f03ca9d" datatype="html">
|
||||
<source>Allow user registration</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">359</context>
|
||||
<context context-type="linenumber">407</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Allow registration setting</note>
|
||||
</trans-unit>
|
||||
@@ -1746,7 +1858,7 @@
|
||||
<source>Auth method</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">363</context>
|
||||
<context context-type="linenumber">411</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Auth method select</note>
|
||||
</trans-unit>
|
||||
@@ -1754,7 +1866,7 @@
|
||||
<source>Internal</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">365</context>
|
||||
<context context-type="linenumber">413</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Internal auth method</note>
|
||||
</trans-unit>
|
||||
@@ -1762,7 +1874,7 @@
|
||||
<source>LDAP</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">368</context>
|
||||
<context context-type="linenumber">416</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">LDAP auth method</note>
|
||||
</trans-unit>
|
||||
@@ -1770,7 +1882,7 @@
|
||||
<source>LDAP URL</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">375</context>
|
||||
<context context-type="linenumber">423</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">LDAP URL</note>
|
||||
</trans-unit>
|
||||
@@ -1778,7 +1890,7 @@
|
||||
<source>Bind DN</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">380</context>
|
||||
<context context-type="linenumber">428</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Bind DN</note>
|
||||
</trans-unit>
|
||||
@@ -1786,7 +1898,7 @@
|
||||
<source>Bind Credentials</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">385</context>
|
||||
<context context-type="linenumber">433</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Bind Credentials</note>
|
||||
</trans-unit>
|
||||
@@ -1794,7 +1906,7 @@
|
||||
<source>Search Base</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">390</context>
|
||||
<context context-type="linenumber">438</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Search Base</note>
|
||||
</trans-unit>
|
||||
@@ -1802,7 +1914,7 @@
|
||||
<source>Search Filter</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/settings/settings.component.html</context>
|
||||
<context context-type="linenumber">395</context>
|
||||
<context context-type="linenumber">443</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Search Filter</note>
|
||||
</trans-unit>
|
||||
@@ -1890,7 +2002,7 @@
|
||||
<source>Enable sharing</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/share-media-dialog/share-media-dialog.component.html</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Enable sharing checkbox</note>
|
||||
</trans-unit>
|
||||
@@ -1898,7 +2010,7 @@
|
||||
<source>Use timestamp</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/share-media-dialog/share-media-dialog.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Use timestamp</note>
|
||||
</trans-unit>
|
||||
@@ -1906,7 +2018,7 @@
|
||||
<source>Seconds</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/share-media-dialog/share-media-dialog.component.html</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Seconds</note>
|
||||
</trans-unit>
|
||||
@@ -1914,7 +2026,7 @@
|
||||
<source>Copy to clipboard</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/share-media-dialog/share-media-dialog.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">23</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Copy to clipboard button</note>
|
||||
</trans-unit>
|
||||
@@ -1926,22 +2038,14 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">Share playlist dialog title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="15da89490e04496ca9ea1e1b3d44fb5efd4a75d9" datatype="html">
|
||||
<source>Share video</source>
|
||||
<trans-unit id="94e2674467c7a08a291f9bd97ce694d4e47ffd62" datatype="html">
|
||||
<source>Share file</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/share-media-dialog/share-media-dialog.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Share video dialog title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="1d540dcd271b316545d070f9d182c372d923aadd" datatype="html">
|
||||
<source>Share audio</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dialogs/share-media-dialog/share-media-dialog.component.html</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Share audio dialog title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="a1ad8b1be9be43b5183bd2c3186d4e19496f2a0b" datatype="html">
|
||||
<source>Session ID:</source>
|
||||
<context-group purpose="location">
|
||||
|
||||
@@ -30,8 +30,8 @@
|
||||
"fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7": "Documentation",
|
||||
"19d1ae64d94d28a29b2c57ae8671aace906b5401": "Le chemin est relatif au chemin de téléchargement de la config. Ne pas inclure l'extension.",
|
||||
"8fad10737d3e3735a6699a4d89cbf6c20f6bb55f": "S'authentifier",
|
||||
"08c74dc9762957593b91f6eb5d65efdfc975bf48": "Identifiant",
|
||||
"c32ef07f8803a223a83ed17024b38e8d82292407": "Mot de Passe",
|
||||
"08c74dc9762957593b91f6eb5d65efdfc975bf48": "Nom d'utilisateur",
|
||||
"c32ef07f8803a223a83ed17024b38e8d82292407": "Mot de passe",
|
||||
"4a0dada6e841a425de3e5006e6a04df26c644fa5": "Audio",
|
||||
"9779715ac05308973d8f1c8658b29b986e92450f": "Vos fichiers audio sont ici",
|
||||
"47546e45bbb476baaaad38244db444c427ddc502": "Listes de lecture",
|
||||
@@ -41,7 +41,7 @@
|
||||
"0f59c46ca29e9725898093c9ea6b586730d0624e": "Aucune liste de lecture disponible. Créez-en une à l'aide du bouton \\\"+\\\" bleu de votre fichier vidéo.",
|
||||
"616e206cb4f25bd5885fc35925365e43cf5fb929": "Nom :",
|
||||
"c52db455cca9109ee47e1a612c3f4117c09eb71b": "URL :",
|
||||
"c6eb45d085384903e53ab001a3513d1de6a1dbac": "Uploader :",
|
||||
"c6eb45d085384903e53ab001a3513d1de6a1dbac": "Chaîne :",
|
||||
"109c6f4a5e46efb933612ededfaf52a13178b7e0": "Taille du fichier :",
|
||||
"bd630d8669b16e5f264ec4649d9b469fe03e5ff4": "Chemin :",
|
||||
"a67e7d843cef735c79d5ef1c8ba4af3e758912bb": "Mise en ligne :",
|
||||
@@ -49,7 +49,7 @@
|
||||
"4f389e41e4592f7f9bb76abdd8af4afdfb13f4f1": "Modifier la liste de lecture",
|
||||
"ca3dbbc7f3e011bffe32a10a3ea45cc84f30ecf1": "ID :",
|
||||
"e684046d73bcee88e82f7ff01e2852789a05fc32": "Compteur :",
|
||||
"28f86ffd419b869711aa13f5e5ff54be6d70731c": "Editer",
|
||||
"28f86ffd419b869711aa13f5e5ff54be6d70731c": "Modifier",
|
||||
"826b25211922a1b46436589233cb6f1a163d89b7": "Effacer",
|
||||
"321e4419a943044e674beb55b8039f42a9761ca5": "Informations",
|
||||
"34504b488c24c27e68089be549f0eeae6ebaf30b": "Supprimer et bannir",
|
||||
@@ -77,7 +77,7 @@
|
||||
"09006404cccc24b7a8f8d1ce0b39f2761ab841d8": "les vidéos téléchargées à partir de vos abonnements sont enregistrées dans un fichier texte dans le sous-répertoire du fichier d'abonnement.",
|
||||
"29ed79a98fc01e7f9537777598e31dbde3aa7981": "Cela vous permet de supprimer définitivement des vidéos de vos abonnements sans vous désabonner et vous permet d'enregistrer les vidéos que vous avez téléchargées en cas de perte de données.",
|
||||
"27a56aad79d8b61269ed303f11664cc78bcc2522": "Thème",
|
||||
"ff7cee38a2259526c519f878e71b964f41db4348": "Default",
|
||||
"ff7cee38a2259526c519f878e71b964f41db4348": "Par défaut",
|
||||
"adb4562d2dbd3584370e44496969d58c511ecb63": "Sombre",
|
||||
"7a6bacee4c31cb5c0ac2d24274fb4610d8858602": "Autoriser le changement du thème",
|
||||
"fe46ccaae902ce974e2441abe752399288298619": "Choix de la langue",
|
||||
@@ -117,8 +117,8 @@
|
||||
"ec71e08aee647ea4a71fd6b7510c54d84a797ca6": "Sélectionner une méthode de téléchargement",
|
||||
"00e274c496b094a019f0679c3fab3945793f3335": "Niveau des logs",
|
||||
"dc3d990391c944d1fbfc7cfb402f7b5e112fb3a8": "Autoriser le téléchargement avancé",
|
||||
"431e5f3a0dde88768d1074baedd65266412b3f02": "Utiliser les Cookies",
|
||||
"80651a7ad1229ea6613557d3559f702cfa5aecf5": "Gérer les Cookies",
|
||||
"431e5f3a0dde88768d1074baedd65266412b3f02": "Utiliser les cookies",
|
||||
"80651a7ad1229ea6613557d3559f702cfa5aecf5": "Gérer les cookies",
|
||||
"bc2e854e111ecf2bd7db170da5e3c2ed08181d88": "Avancé",
|
||||
"37224420db54d4bc7696f157b779a7225f03ca9d": "Autoriser l'enregistrement des utilisateurs",
|
||||
"4d13a9cd5ed3dcee0eab22cb25198d43886942be": "Utilisateurs",
|
||||
@@ -138,8 +138,8 @@
|
||||
"ac9d09de42edca1296371e4d801349c9096ac8de": "UID :",
|
||||
"a5ed099ffc9e96f6970df843289ade8a7d20ab9f": "Créé le :",
|
||||
"fa96f2137af0a24e6d6d54c598c0af7d5d5ad344": "Vous n'êtes pas identifié.",
|
||||
"6765b4c916060f6bc42d9bb69e80377dbcb5e4e9": "Identifiant",
|
||||
"bb694b49d408265c91c62799c2b3a7e3151c824d": "Déconnexion",
|
||||
"6765b4c916060f6bc42d9bb69e80377dbcb5e4e9": "Se connecter",
|
||||
"bb694b49d408265c91c62799c2b3a7e3151c824d": "Se déconnecter",
|
||||
"a1dbca87b9f36d2b06a5cbcffb5814c4ae9b798a": "Créer un compte administrateur",
|
||||
"2d2adf3ca26a676bca2269295b7455a26fd26980": "Aucun compte administrateur détecté. Veuillez définir le mot de passe du compte adminstrateur \\\"admin\\\".",
|
||||
"70a67e04629f6d412db0a12d51820b480788d795": "Créer",
|
||||
@@ -149,8 +149,8 @@
|
||||
"357064ca9d9ac859eb618e28e8126fa32be049e2": "Abonnements",
|
||||
"822fab38216f64e8166d368b59fe756ca39d301b": "Téléchargements",
|
||||
"a249a5ae13e0835383885aaf697d2890cc3e53e9": "Partager une liste de lecture",
|
||||
"15da89490e04496ca9ea1e1b3d44fb5efd4a75d9": "Partager vidéo",
|
||||
"1d540dcd271b316545d070f9d182c372d923aadd": "Partager audio",
|
||||
"15da89490e04496ca9ea1e1b3d44fb5efd4a75d9": "Partager une vidéo",
|
||||
"1d540dcd271b316545d070f9d182c372d923aadd": "Partager un audio",
|
||||
"1f6d14a780a37a97899dc611881e6bc971268285": "Activer le partage",
|
||||
"6580b6a950d952df847cb3d8e7176720a740adc8": "Utiliser l'horodatage",
|
||||
"4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c": "Secondes",
|
||||
@@ -192,7 +192,7 @@
|
||||
"eb98135e35af26a9a326ee69bd8ff104d36dd8ec": "(actual)",
|
||||
"7117fc42f860e86d983bfccfcf2654e5750f3406": "Pas de téléchargements !",
|
||||
"b7ff2e2b909c53abe088fe60b9f4b6ac7757247f": "Ajouter un utilisateur",
|
||||
"024886ca34a6f309e3e51c2ed849320592c3faaa": "Identifiant",
|
||||
"024886ca34a6f309e3e51c2ed849320592c3faaa": "Nom d'utilisateur",
|
||||
"2bd201aea09e43fbfd3cd15ec0499b6755302329": "Gérer l'utilisateur",
|
||||
"29c97c8e76763bb15b6d515648fa5bd1eb0f7510": "Identifiant de l'utilisateur :",
|
||||
"e70e209561583f360b1e9cefd2cbb1fe434b6229": "Nouveau mot de passe",
|
||||
@@ -224,5 +224,46 @@
|
||||
"f61c6867295f3b53d23557021f2f4e0aa1d0b8fc": "Type",
|
||||
"2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4": "Vidéo",
|
||||
"f0baeb8b69d120073b6d60d34785889b0c3232c8": "Audio",
|
||||
"3697f8583ea42868aa269489ad366103d94aece7": "Édition"
|
||||
"3697f8583ea42868aa269489ad366103d94aece7": "Édition",
|
||||
"d02888c485d3aeab6de628508f4a00312a722894": "Mes vidéos",
|
||||
"a0720c36ee1057e5c54a86591b722485c62d7b1a": "Aller aux abonnements",
|
||||
"5656a06f17c24b2d7eae9c221567b209743829a9": "Ouvrir le fichier dans un nouvel onglet",
|
||||
"ccf5ea825526ac490974336cb5c24352886abc07": "Ouvrir le fichier",
|
||||
"8a0bda4c47f10b2423ff183acefbf70d4ab52ea2": "Effacer les journaux",
|
||||
"95b95a9c79e4fd9ed41f6855e37b3b06af25bcab": "Supprimer l'utilisateur",
|
||||
"544e09cdc99a8978f48521d45f62db0da6dcf742": "Utiliser le groupe par défaut",
|
||||
"632e8b20c98e8eec4059a605a4b011bb476137af": "Modifier l'utilisateur",
|
||||
"b6c453e0e61faea184bbaf5c5b0a1e164f4de2a2": "Effacer tous les téléchargements",
|
||||
"cfa67d14d84fe0e9fadf251dc51ffc181173b662": "Search Base",
|
||||
"080cc6abcba236390fc22e79792d0d3443a3bd2a": "Bind Credentials",
|
||||
"f50fa6c09c8944aed504f6325f2913ee6c7a296a": "Bind DN",
|
||||
"1db9789b93069861019bd0ccaa5d4706b00afc61": "LDAP URL",
|
||||
"e3d7c5f019e79a3235a28ba24df24f11712c7627": "LDAP",
|
||||
"56a2a773fbd5a6b9ac2e6b89d29d70a2ed0f3227": "Voir moins.",
|
||||
"ddc31f2885b1b33a7651963254b0c197f2a64086": "Voir plus.",
|
||||
"24dc3ecf7ec2c2144910c4f3d38343828be03a4c": "Généré automatiquement",
|
||||
"c776eb4992b6c98f58cd89b20c1ea8ac37888521": "Sélectionnez un agent de téléchargement",
|
||||
"5fb1e0083c9b2a40ac8ae7dcb2618311c291b8b9": "Télécharger automatiquement la discussion Twitch",
|
||||
"84ffcebac2709ca0785f4a1d5ba274433b5beabc": "Aussi connu sous le nom d'identifiant client.",
|
||||
"8ae23bc4302a479f687f4b20a84c276182e2519c": "Clé API Twitch",
|
||||
"d162f9fcd6a7187b391e004f072ab3da8377c47d": "Utiliser l'API de Twitch",
|
||||
"04201f9d27abd7d6f58a4328ab98063ce1072006": "Catégories",
|
||||
"ef418d4ece7c844f3a5e431da1aa59bedd88da7b": "Arguments personnalisés globaux",
|
||||
"1148fd45287ff09955b938756bc302042bcb29c7": "Le chemin est relatif aux chemins de téléchargement ci-dessus. Ne pas inclure l'extension.",
|
||||
"cfe829634b1144bc44b6d38cf5584ea65db9804f": "Sortie de fichier par défaut",
|
||||
"3d1a47dc18b7bd8b5d9e1eb44b235ed9c4a2b513": "Retélécharger les nouvelles mises en ligne",
|
||||
"13759b09a7f4074ceee8fa2f968f9815fdf63295": "Il arrive que de nouvelles vidéos soient téléchargées avant d'être entièrement traitées. Grâce à ce paramètre, les nouvelles vidéos seront vérifiées pour obtenir une version de meilleure qualité le jour suivant.",
|
||||
"dad95154dcef3509b8cc705046061fd24994bbb7": "vues",
|
||||
"792dc6a57f28a1066db283f2e736484f066005fd": "Télécharger la discussion Twitch",
|
||||
"e4eeb9106dbcbc91ca1ac3fb4068915998a70f37": "Ajouter une nouvelle règle",
|
||||
"2489eefea00931942b91f4a1ae109514b591e2e1": "Règles",
|
||||
"c3b0b86523f1d10e84a71f9b188d54913a11af3b": "Modification de la catégorie",
|
||||
"07db550ae114d9faad3a0cbb68bcc16ab6cd31fc": "En pause",
|
||||
"73423607944a694ce6f9e55cfee329681bb4d9f9": "Aucune vidéo trouvée.",
|
||||
"29376982b1205d9d6ea3d289e8e2f8e1ac2839b1": "Ordre inverse",
|
||||
"33026f57ea65cd9c8a5d917a08083f71a718933a": "Ordre normal",
|
||||
"5caadefa4143cf6766a621b0f54f91f373a1f164": "Ajouter du contenu",
|
||||
"0cc1dec590ecd74bef71a865fb364779bc42a749": "Catégorie :",
|
||||
"303e45ffae995c9817e510e38cb969e6bb3adcbf": "(En pause)",
|
||||
"d641b8fa5ac5e85114c733b1f7de6976bd091f70": "Qualité maximale"
|
||||
}
|
||||
2578
src/assets/i18n/messages.fr.xlf
Normal file
2578
src/assets/i18n/messages.fr.xlf
Normal file
File diff suppressed because it is too large
Load Diff
248
src/assets/i18n/messages.id.json
Normal file
248
src/assets/i18n/messages.id.json
Normal file
@@ -0,0 +1,248 @@
|
||||
{
|
||||
"004b222ff9ef9dd4771b777950ca1d0e4cd4348a": "Tentang",
|
||||
"994363f08f9fbfa3b3994ff7b35c6904fdff18d8": "Profil",
|
||||
"adb4562d2dbd3584370e44496969d58c511ecb63": "Gelap",
|
||||
"121cc5391cd2a5115bc2b3160379ee5b36cd7716": "Pengaturan",
|
||||
"92eee6be6de0b11c924e3ab27db30257159c0a7c": "Beranda",
|
||||
"6765b4c916060f6bc42d9bb69e80377dbcb5e4e9": "Masuk",
|
||||
"357064ca9d9ac859eb618e28e8126fa32be049e2": "Langganan",
|
||||
"822fab38216f64e8166d368b59fe756ca39d301b": "Unduhan",
|
||||
"4a9889d36910edc8323d7bab60858ab3da6d91df": "Hanya Audio",
|
||||
"6a21ba5fb0ac804a525bf9ab168038c3ee88e661": "Unduhan",
|
||||
"a38ae1082fec79ba1f379978337385a539a28e73": "Kualitas",
|
||||
"4be966a9dcfbc9b54dfcc604b831c0289f847fa4": "Gunakan Alamat URL",
|
||||
"d3f02f845e62cebd75fde451ab8479d2a8ad784d": "Tampilkan",
|
||||
"96a01fafe135afc58b0f8071a4ab00234495ce18": "Mode Multi-unduh",
|
||||
"6a3777f913cf3f288664f0632b9f24794fdcc24e": "Batal",
|
||||
"322ed150e02666fe2259c5b4614eac7066f4ffa0": "Khusus",
|
||||
"4e4c721129466be9c3862294dc40241b64045998": "Gunakan arg kustom",
|
||||
"ad2f8ac8b7de7945b80c8e424484da94e597125f": "Arg kustom",
|
||||
"a6911c2157f1b775284bbe9654ce5eb30cf45d7f": "Tidak perlu mencantumkan alamat URL, hanya bagian setelahnya saja. Arg dibatasi menggunakan dua koma seperti ini: ,,",
|
||||
"3a92a3443c65a52f37ca7efb8f453b35dbefbf29": "Gunakan output kustom",
|
||||
"d9c02face477f2f9cdaae318ccee5f89856851fb": "Output kustom",
|
||||
"fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7": "Dokumentasi",
|
||||
"19d1ae64d94d28a29b2c57ae8671aace906b5401": "Path adalah relatif kepada path unduh konfigurasi. Jangan mencantumkan ektensi.",
|
||||
"b7ffe7c6586d6f3f18a9246806a7c7d5538ab43e": "Perintah yang disimulasi:",
|
||||
"8fad10737d3e3735a6699a4d89cbf6c20f6bb55f": "Gunakan otentikasi",
|
||||
"08c74dc9762957593b91f6eb5d65efdfc975bf48": "Nama Pengguna",
|
||||
"c32ef07f8803a223a83ed17024b38e8d82292407": "Kata Sandi",
|
||||
"17f0ea5d2d7a262b0e875acc70475f102aee84e6": "Buat sebuah playlist",
|
||||
"cff1428d10d59d14e45edec3c735a27b5482db59": "Nama",
|
||||
"f61c6867295f3b53d23557021f2f4e0aa1d0b8fc": "Jenis",
|
||||
"f0baeb8b69d120073b6d60d34785889b0c3232c8": "Audio",
|
||||
"2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4": "Video",
|
||||
"f47e2d56dd8a145b2e9599da9730c049d52962a2": "Berkas audio",
|
||||
"a52dae09be10ca3a65da918533ced3d3f4992238": "Video",
|
||||
"a9806cf78ce00eb2613eeca11354a97e033377b8": "Langganan ke playlist atau saluran/channel",
|
||||
"801b98c6f02fe3b32f6afa3ee854c99ed83474e6": "Alamat URL",
|
||||
"93efc99ae087fc116de708ecd3ace86ca237cf30": "Playlist atau alamat URL saluran/channel",
|
||||
"08f5d0ef937ae17feb1b04aff15ad88911e87baf": "Nama kustom",
|
||||
"ea30873bd3f0d5e4fb2378eec3f0a1db77634a28": "Unduh semua unggahan",
|
||||
"d641b8fa5ac5e85114c733b1f7de6976bd091f70": "Kualitas maksimal",
|
||||
"c76a955642714b8949ff3e4b4990864a2e2cac95": "Mode hanya-audio",
|
||||
"408ca4911457e84a348cecf214f02c69289aa8f1": "Mode hanya-streaming",
|
||||
"f432e1a8d6adb12e612127978ce2e0ced933959c": "Ini ditambahkan setelah argumen standar.",
|
||||
"98b6ec9ec138186d663e64770267b67334353d63": "Output berkas kustom",
|
||||
"d7b35c384aecd25a516200d6921836374613dfe7": "Batal",
|
||||
"d0336848b0c375a1c25ba369b3481ee383217a4f": "Langganan",
|
||||
"28a678e9cabf86e44c32594c43fa0e890135c20f": "Unduh video yang diunggah terakhir",
|
||||
"e78c0d60ac39787f62c9159646fe0b3c1ed55a1d": "Jenis:",
|
||||
"c52db455cca9109ee47e1a612c3f4117c09eb71b": "Alamat URL:",
|
||||
"ca3dbbc7f3e011bffe32a10a3ea45cc84f30ecf1": "ID:",
|
||||
"f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8": "Tutup",
|
||||
"8efc77bf327659c0fec1f518cf48a98cdcd9dddf": "Ekspor Arsip",
|
||||
"3042bd3ad8dffcfeca5fd1ae6159fd1047434e95": "Batal Langganan",
|
||||
"303e45ffae995c9817e510e38cb969e6bb3adcbf": "(Dijeda)",
|
||||
"a44d86aa1e6c20ced07aca3a7c081d8db9ded1c6": "Arsip:",
|
||||
"616e206cb4f25bd5885fc35925365e43cf5fb929": "Nama:",
|
||||
"c6eb45d085384903e53ab001a3513d1de6a1dbac": "Pengunggah:",
|
||||
"109c6f4a5e46efb933612ededfaf52a13178b7e0": "Ukuran berkas:",
|
||||
"bd630d8669b16e5f264ec4649d9b469fe03e5ff4": "Jalur/path:",
|
||||
"a67e7d843cef735c79d5ef1c8ba4af3e758912bb": "Tanggal Unggah:",
|
||||
"0cc1dec590ecd74bef71a865fb364779bc42a749": "Kategori:",
|
||||
"d9e83ac17026e70ef6e9c0f3240a3b2450367f40": "Modifikasi arg youtube-dl",
|
||||
"7fc1946abe2b40f60059c6cd19975d677095fd19": "Simulasikan arg baru",
|
||||
"0b71824ae71972f236039bed43f8d2323e8fd570": "Tambah sebuah arg",
|
||||
"c8b0e59eb491f2ac7505f0fbab747062e6b32b23": "Cari berdasarkan kategori",
|
||||
"9eeb91caef5a50256dd87e1c4b7b3e8216479377": "Gunakan nilai arg",
|
||||
"7de2451ed3fb8d8b847979bd3f0c740b970f167b": "Tambah arg",
|
||||
"b2623aee44b70c9a4ba1fce16c8a593b0a4c7974": "Modifikasi",
|
||||
"25d8ad5eba2ec24e68295a27d6a4bb9b49e3dacd": "Nilai arg",
|
||||
"91ecce65f1d23f9419d1c953cd6b7bc7f91c110e": "Pembaruan",
|
||||
"b7ff2e2b909c53abe088fe60b9f4b6ac7757247f": "Daftarkan pengguna",
|
||||
"024886ca34a6f309e3e51c2ed849320592c3faaa": "Nama pengguna",
|
||||
"cfc2f436ec2beffb042e7511a73c89c372e86a6c": "Daftar",
|
||||
"ebadf946ae90f13ecd0c70f09edbc0f983af8a0f": "Unggah cookie baru",
|
||||
"a8b7b9c168fd936a75e500806a8c0d7755ef1198": "CATATAN: Mengunggah cookie baru akan menimpa cookie Anda sebelumnya. Juga ingat bahwa cookie termasuk dalam pengguna-banyak, bukan per-pengguna.",
|
||||
"98a8a42e5efffe17ab786636ed0139b4c7032d0e": "Tarik dan Jatuhkan",
|
||||
"4f389e41e4592f7f9bb76abdd8af4afdfb13f4f1": "Modifikasi playlist",
|
||||
"5caadefa4143cf6766a621b0f54f91f373a1f164": "Tambah konten",
|
||||
"52c9a103b812f258bcddc3d90a6e3f46871d25fe": "Simpan",
|
||||
"33026f57ea65cd9c8a5d917a08083f71a718933a": "Urutan normal",
|
||||
"29376982b1205d9d6ea3d289e8e2f8e1ac2839b1": "Urutan terbalik",
|
||||
"d02888c485d3aeab6de628508f4a00312a722894": "Video saya",
|
||||
"7e892ba15f2c6c17e83510e273b3e10fc32ea016": "Cari",
|
||||
"73423607944a694ce6f9e55cfee329681bb4d9f9": "Tidak ada video ditemukan.",
|
||||
"3697f8583ea42868aa269489ad366103d94aece7": "Menyunting",
|
||||
"07db550ae114d9faad3a0cbb68bcc16ab6cd31fc": "Dijeda",
|
||||
"c3b0b86523f1d10e84a71f9b188d54913a11af3b": "Kategori suntingan",
|
||||
"2489eefea00931942b91f4a1ae109514b591e2e1": "Aturan",
|
||||
"e4eeb9106dbcbc91ca1ac3fb4068915998a70f37": "Tambah aturan baru",
|
||||
"792dc6a57f28a1066db283f2e736484f066005fd": "Unduh Twitch Chat",
|
||||
"28f86ffd419b869711aa13f5e5ff54be6d70731c": "Sunting",
|
||||
"826b25211922a1b46436589233cb6f1a163d89b7": "Hapus",
|
||||
"321e4419a943044e674beb55b8039f42a9761ca5": "Informasi",
|
||||
"e684046d73bcee88e82f7ff01e2852789a05fc32": "Hitung:",
|
||||
"34504b488c24c27e68089be549f0eeae6ebaf30b": "Hapus dan jadikan daftarhitam",
|
||||
"dad95154dcef3509b8cc705046061fd24994bbb7": "dilihat",
|
||||
"5b3075e8dc3f3921ec316b0bd83b6d14a06c1a4f": "Simpan perubahan",
|
||||
"4d8a18b04a1f785ecd8021ac824e0dfd5881dbfc": "Unduhan telah berhasil",
|
||||
"348cc5d553b18e862eb1c1770e5636f6b05ba130": "Sebuah kesalahan telah terjadi",
|
||||
"4f8b2bb476981727ab34ed40fde1218361f92c45": "Rincian",
|
||||
"e9aff8e6df2e2bf6299ea27bb2894c70bc48bd4d": "Sebuah kesalahan telah terjadi:",
|
||||
"77b0c73840665945b25bd128709aa64c8f017e1c": "Unduhan dimulai:",
|
||||
"08ff9375ec078065bcdd7637b7ea65fce2979266": "Unduhan berakhir:",
|
||||
"ad127117f9471612f47d01eae09709da444a36a4": "Jalur file:",
|
||||
"e2319dec5b4ccfb6ed9f55ccabd63650a8fdf547": "Langganan anda",
|
||||
"807cf11e6ac1cde912496f764c176bdfdd6b7e19": "Saluran",
|
||||
"47546e45bbb476baaaad38244db444c427ddc502": "Daftar putar",
|
||||
"29b89f751593e1b347eef103891b7a1ff36ec03f": "Nama tidak tersedia. Pengambilan saluran sedang berlangsung.",
|
||||
"4636cd4a1379c50d471e98786098c4d39e1e82ad": "Anda tidak memiliki saluran langganan.",
|
||||
"2e0a410652cb07d069f576b61eab32586a18320d": "Nama tidak tersedia. Pengambilan daftar-putar sedang berlangsung.",
|
||||
"587b57ced54965d8874c3fd0e9dfedb987e5df04": "Anda tidak memiliki langganan daftar putar.",
|
||||
"82421c3e46a0453a70c42900eab51d58d79e6599": "Utama",
|
||||
"0ba25ad86a240576c4f20a2fada4722ebba77b1e": "Pengunduh",
|
||||
"d5f69691f9f05711633128b5a3db696783266b58": "Ekstra",
|
||||
"bc2e854e111ecf2bd7db170da5e3c2ed08181d88": "Lanjutan",
|
||||
"4d13a9cd5ed3dcee0eab22cb25198d43886942be": "Pengguna",
|
||||
"eb3d5aefff38a814b76da74371cbf02c0789a1ef": "Log",
|
||||
"fe8fd36dbf5deee1d56564965787a782a66eba44": "{VAR_SELECT, select, true {Tutup} false {Batal} other {lainnya}}",
|
||||
"54c512cca1923ab72faf1a0bd98d3d172469629a": "URL aplikasi ini akan diakses dari, tanpa port.",
|
||||
"cb2741a46e3560f6bc6dfd99d385e86b08b26d72": "Port",
|
||||
"22e8f1d0423a3b784fe40fab187b92c06541b577": "Port yang diinginkan. Default-nya adalah 17442.",
|
||||
"d4477669a560750d2064051a510ef4d7679e2f3e": "Mode multi-pengguna",
|
||||
"2eb03565fcdce7a7a67abc277a936a32fcf51557": "Path basis pengguna",
|
||||
"a64505c41150663968e277ec9b3ddaa5f4838798": "Path basis untuk pengguna dan unduhan video mereka.",
|
||||
"4e3120311801c4acd18de7146add2ee4a4417773": "Izinkan langganan",
|
||||
"4bee2a4bef2d26d37c9b353c278e24e5cd309ce3": "Langganan Pangkros Base",
|
||||
"bc9892814ee2d119ae94378c905ea440a249b84a": "Jalur dasar untuk video dari saluran dan daftar putar Anda yang berlangganan. Itu relatif terhadap folder root ytdl-material.",
|
||||
"5bef4b25ba680da7fff06b86a91b1fc7e6a926e3": "Periksa interval",
|
||||
"0f56a7449b77630c114615395bbda4cab398efd8": "Unit adalah detik, hanya termasuk angka.",
|
||||
"13759b09a7f4074ceee8fa2f968f9815fdf63295": "Kadang-kadang video baru diunduh sebelum diproses sepenuhnya. Pengaturan ini akan berarti video baru akan diperiksa untuk versi berkualitas lebih tinggi pada hari berikutnya.",
|
||||
"3d1a47dc18b7bd8b5d9e1eb44b235ed9c4a2b513": "Redownload unggahan segar",
|
||||
"27a56aad79d8b61269ed303f11664cc78bcc2522": "Tema",
|
||||
"ff7cee38a2259526c519f878e71b964f41db4348": "Default",
|
||||
"7a6bacee4c31cb5c0ac2d24274fb4610d8858602": "Izinkan perubahan tema",
|
||||
"fe46ccaae902ce974e2441abe752399288298619": "Bahasa",
|
||||
"ab2756805742e84ad0cc0468f4be2d8aa9f855a5": "Jalur folder audio",
|
||||
"c2c89cdf45d46ea64d2ed2f9ac15dfa4d77e26ca": "Jalur untuk unduhan hanya audio. Ini relatif terhadap folder root ytdl-material.",
|
||||
"46826331da1949bd6fb74624447057099c9d20cd": "Jalur folder video",
|
||||
"17c92e6d47a213fa95b5aa344b3f258147123f93": "Jalur untuk unduhan video. Ini relatif terhadap folder root YTDL-material.",
|
||||
"cfe829634b1144bc44b6d38cf5584ea65db9804f": "Output file default",
|
||||
"1148fd45287ff09955b938756bc302042bcb29c7": "Jalur relatif terhadap jalur unduhan di atas. Jangan sertakan ekstensi.",
|
||||
"ef418d4ece7c844f3a5e431da1aa59bedd88da7b": "Args kustom global",
|
||||
"6b995e7130b4d667eaab6c5f61b362ace486d26d": "Args kustom global untuk unduhan di beranda. Args dibatasi menggunakan dua koma seperti itu: ,,",
|
||||
"04201f9d27abd7d6f58a4328ab98063ce1072006": "Kategori",
|
||||
"78e49b7339b4fa7184dd21bcaae107ce9b7076f6": "Gunakan YouTube-DL Archive",
|
||||
"ffc19f32b1cba0daefc0e5668f89346db1db83ad": "Sertakan thumbnail",
|
||||
"384de8f8f112c9e6092eb2698706d391553f3e8d": "Sertakan metadata",
|
||||
"fb35145bfb84521e21b6385363d59221f436a573": "Bunuh semua unduhan",
|
||||
"61f8fd90b5f8cb20c70371feb2ee5e1fac5a9095": "Top judul",
|
||||
"78d3531417c0d4ba4c90f0d4ae741edc261ec8df": "Manajer file diaktifkan",
|
||||
"a5a1be0a5df07de9eec57f5d2a86ed0204b2e75a": "Unduhan Manager diaktifkan",
|
||||
"c33bd5392b39dbed36b8e5a1145163a15d45835f": "Izinkan kualitas pilih",
|
||||
"bda5508e24e0d77debb28bcd9194d8fefb1cfb92": "Unduh Only Mode",
|
||||
"09d31c803a7252658694e1e3176b97f5655a3fe3": "Izinkan Mode Multi-Unduh",
|
||||
"1c4dbce56d96b8974aac24a02f7ab2ee81415014": "Aktifkan API publik",
|
||||
"23bd81dcc30b74d06279a26d7a42e8901c1b124e": "Kunci API Publik",
|
||||
"41016a73d8ad85e6cb26dffa0a8fab9fe8f60d8e": "Lihat dokumentasi",
|
||||
"00a94f58d9eb2e3aa561440eabea616d0c937fa2": "Ini akan menghapus kunci API lama Anda!",
|
||||
"1b258b258b4cc475ceb2871305b61756b0134f4a": "Menghasilkan",
|
||||
"d5d7c61349f3b0859336066e6d453fc35d334fe5": "Gunakan API YouTube",
|
||||
"ce10d31febb3d9d60c160750570310f303a22c22": "YouTube API Key",
|
||||
"8602e313cdfa7c4cc475ccbe86459fce3c3fd986": "Menghasilkan kunci itu mudah!",
|
||||
"d162f9fcd6a7187b391e004f072ab3da8377c47d": "Gunakan Twitch API",
|
||||
"8ae23bc4302a479f687f4b20a84c276182e2519c": "Kunci Twitch API",
|
||||
"84ffcebac2709ca0785f4a1d5ba274433b5beabc": "Juga dikenal sebagai ID Klien.",
|
||||
"5fb1e0083c9b2a40ac8ae7dcb2618311c291b8b9": "Obrolan Download Otomatis",
|
||||
"9b3cedfa83c6d7acb3210953289d1be4aab115c7": "Klik disini",
|
||||
"7f09776373995003161235c0c8d02b7f91dbc4df": "Untuk mengunduh ekstensi Chrome Bahan YouTubedl resmi secara manual.",
|
||||
"5b5296423906ab3371fdb2b5a5aaa83acaa2ee52": "Anda harus secara manual memuat ekstensi dan memodifikasi pengaturan ekstensi untuk mengatur URL frontend.",
|
||||
"9a2ec6da48771128384887525bdcac992632c863": "Untuk menginstal ekstensi Firefox Bahan YouTubedl resmi langsung dari halaman ekstensi Firefox.",
|
||||
"eb81be6b49e195e5307811d1d08a19259d411f37": "Instruksi pengaturan terperinci.",
|
||||
"cb17ff8fe3961cf90f44bee97c88a3f3347a7e55": "Tidak banyak yang diperlukan selain mengubah pengaturan ekstensi untuk mengatur URL frontend.",
|
||||
"61b81b11aad0b9d970ece2fce18405f07eac69c2": "Seret tautan di bawah ke bookmark Anda, dan Anda baik-baik saja! Cukup navigasikan ke video YouTube yang ingin Anda unduh, dan klik bookmark.",
|
||||
"c505d6c5de63cc700f0aaf8a4b31fae9e18024e5": "Buat 'audio hanya' Bookmarklet",
|
||||
"ec71e08aee647ea4a71fd6b7510c54d84a797ca6": "Pilih pengunduh",
|
||||
"5fab47f146b0a4b809dcebf3db9da94df6299ea1": "Gunakan agen pengunduhan default",
|
||||
"c776eb4992b6c98f58cd89b20c1ea8ac37888521": "Pilih agen unduhan",
|
||||
"0c43af932e6a4ee85500e28f01b3538b4eb27bc4": "Layar log",
|
||||
"db6c192032f4cab809aad35215f0aa4765761897": "Login kedaluwarsa",
|
||||
"dc3d990391c944d1fbfc7cfb402f7b5e112fb3a8": "Izinkan unduhan lanjutan",
|
||||
"431e5f3a0dde88768d1074baedd65266412b3f02": "Gunakan cookie",
|
||||
"80651a7ad1229ea6613557d3559f702cfa5aecf5": "Atur Cookie",
|
||||
"37224420db54d4bc7696f157b779a7225f03ca9d": "Izinkan pendaftaran pengguna",
|
||||
"fa548cee6ea11c160a416cac3e6bdec0363883dc": "Metode Auth",
|
||||
"4f56ced9d6b85aeb1d4346433361d47ea72dac1a": "Intern",
|
||||
"e3d7c5f019e79a3235a28ba24df24f11712c7627": "LDAP",
|
||||
"1db9789b93069861019bd0ccaa5d4706b00afc61": "URL LDAP",
|
||||
"f50fa6c09c8944aed504f6325f2913ee6c7a296a": "Gabung DN",
|
||||
"080cc6abcba236390fc22e79792d0d3443a3bd2a": "Mengikat kredensial",
|
||||
"cfa67d14d84fe0e9fadf251dc51ffc181173b662": "Basis pencarian",
|
||||
"e01d54ecc1a0fcf9525a3c100ed8b83d94e61c23": "Cari Filter",
|
||||
"cec82c0a545f37420d55a9b6c45c20546e82f94e": "Tentang YouTubedl-material",
|
||||
"199c17e5d6a419313af3c325f06dcbb9645ca618": "Adalah pengunduh YouTube open-source yang dibangun di bawah spesifikasi desain bahan Google. Anda dapat mengunduh video favorit Anda dengan mulus sebagai file video atau audio, dan bahkan berlangganan saluran dan daftar putar favorit Anda untuk terus diperbarui dengan video baru mereka.",
|
||||
"bc0ad0ee6630acb7fcb7802ec79f5a0ee943c1a7": "Memiliki beberapa fitur yang luar biasa termasuk! API yang luas, dukungan Docker, dan dukungan pelokalan (terjemahan). Baca pada semua fitur yang didukung dengan mengklik ikon GitHub di atas.",
|
||||
"a45e3b05f0529dc5246d70ef62304c94426d4c81": "Versi yang diinstal:",
|
||||
"b33536f59b94ec935a16bd6869d836895dc5300c": "Menemukan bug atau punya saran?",
|
||||
"e1f398f38ff1534303d4bb80bd6cece245f24016": "Untuk menciptakan masalah!",
|
||||
"e22f3a5351944f3a1a10cfc7da6f65dfbe0037fe": "Memeriksa pembaruan ...",
|
||||
"a16e92385b4fd9677bb830a4b796b8b79c113290": "Pembaruan tersedia",
|
||||
"189b28aaa19b3c51c6111ad039c4fd5e2a22e370": "Anda dapat memperbarui dari menu Pengaturan.",
|
||||
"1372e61c5bd06100844bd43b98b016aabc468f62": "Pilih versi:",
|
||||
"1f6d14a780a37a97899dc611881e6bc971268285": "Aktifkan berbagi",
|
||||
"6580b6a950d952df847cb3d8e7176720a740adc8": "Gunakan Timestamp",
|
||||
"4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c": "Detik",
|
||||
"3a6e5a6aa78ca864f6542410c5dafb6334538106": "Menyalin ke clipboard",
|
||||
"a249a5ae13e0835383885aaf697d2890cc3e53e9": "Bagikan Daftar Putar",
|
||||
"15da89490e04496ca9ea1e1b3d44fb5efd4a75d9": "Berbagi video",
|
||||
"1d540dcd271b316545d070f9d182c372d923aadd": "Bagikan audio",
|
||||
"a1ad8b1be9be43b5183bd2c3186d4e19496f2a0b": "ID Sesi:",
|
||||
"b6c453e0e61faea184bbaf5c5b0a1e164f4de2a2": "Hapus semua unduhan",
|
||||
"eb98135e35af26a9a326ee69bd8ff104d36dd8ec": "(arus)",
|
||||
"7117fc42f860e86d983bfccfcf2654e5750f3406": "Tidak ada unduhan yang tersedia!",
|
||||
"42ff677ec14f111e88bd6cdd30145378e994d1bf": "Profil kamu",
|
||||
"bb694b49d408265c91c62799c2b3a7e3151c824d": "Keluar",
|
||||
"ac9d09de42edca1296371e4d801349c9096ac8de": "UID:",
|
||||
"a5ed099ffc9e96f6970df843289ade8a7d20ab9f": "Diciptakan:",
|
||||
"fa96f2137af0a24e6d6d54c598c0af7d5d5ad344": "Kamu tidak masuk.",
|
||||
"a1dbca87b9f36d2b06a5cbcffb5814c4ae9b798a": "Buat Akun Admin",
|
||||
"2d2adf3ca26a676bca2269295b7455a26fd26980": "Tidak ada akun admin default yang terdeteksi. Ini akan membuat dan mengatur kata sandi untuk akun admin dengan nama pengguna sebagai 'admin'.",
|
||||
"70a67e04629f6d412db0a12d51820b480788d795": "Buat",
|
||||
"4d92a0395dd66778a931460118626c5794a3fc7a": "Tambahkan pengguna",
|
||||
"b0d7dd8a1b0349622d6e0c6e643e24a9ea0efa1d": "Edit peran",
|
||||
"746f64ddd9001ac456327cd9a3d5152203a4b93c": "Nama pengguna",
|
||||
"52c1447c1ec9570a2a3025c7e566557b8d19ed92": "Peran",
|
||||
"59a8c38db3091a63ac1cb9590188dc3a972acfb3": "Tindakan",
|
||||
"2bd201aea09e43fbfd3cd15ec0499b6755302329": "Kelola pengguna",
|
||||
"95b95a9c79e4fd9ed41f6855e37b3b06af25bcab": "Hapus pengguna",
|
||||
"632e8b20c98e8eec4059a605a4b011bb476137af": "Edit Pengguna",
|
||||
"29c97c8e76763bb15b6d515648fa5bd1eb0f7510": "UID pengguna:",
|
||||
"e70e209561583f360b1e9cefd2cbb1fe434b6229": "Kata sandi baru",
|
||||
"6498fa1b8f563988f769654a75411bb8060134b9": "Atur kata sandi baru",
|
||||
"544e09cdc99a8978f48521d45f62db0da6dcf742": "Gunakan default peran",
|
||||
"4f20f2d5a6882190892e58b85f6ccbedfa737952": "Ya",
|
||||
"3d3ae7deebc5949b0c1c78b9847886a94321d9fd": "Tidak",
|
||||
"57c6c05d8ebf4ef1180c2705033c044f655bb2c4": "Kelola peran",
|
||||
"5009630cdf32ab4f1c78737b9617b8773512c05a": "Baris:",
|
||||
"8a0bda4c47f10b2423ff183acefbf70d4ab52ea2": "Hapus log",
|
||||
"24dc3ecf7ec2c2144910c4f3d38343828be03a4c": "Dihasilkan otomatis",
|
||||
"ccf5ea825526ac490974336cb5c24352886abc07": "Buka Berkas",
|
||||
"5656a06f17c24b2d7eae9c221567b209743829a9": "Buka berkas di tab baru",
|
||||
"a0720c36ee1057e5c54a86591b722485c62d7b1a": "Menuju ke langganan",
|
||||
"94e01842dcee90531caa52e4147f70679bac87fe": "Hapus dan unduh ulang",
|
||||
"2031adb51e07a41844e8ba7704b054e98345c9c1": "Hapus selamanya",
|
||||
"ddc31f2885b1b33a7651963254b0c197f2a64086": "Lihat lebih banyak.",
|
||||
"56a2a773fbd5a6b9ac2e6b89d29d70a2ed0f3227": "Lihat lebih sedikit.",
|
||||
"2054791b822475aeaea95c0119113de3200f5e1c": "Panjang:"
|
||||
}
|
||||
2517
src/assets/i18n/messages.id.xlf
Normal file
2517
src/assets/i18n/messages.id.xlf
Normal file
File diff suppressed because it is too large
Load Diff
248
src/assets/i18n/messages.pt.json
Normal file
248
src/assets/i18n/messages.pt.json
Normal file
@@ -0,0 +1,248 @@
|
||||
{
|
||||
"004b222ff9ef9dd4771b777950ca1d0e4cd4348a": "Sobre",
|
||||
"994363f08f9fbfa3b3994ff7b35c6904fdff18d8": "Perfil",
|
||||
"adb4562d2dbd3584370e44496969d58c511ecb63": "Escuro",
|
||||
"121cc5391cd2a5115bc2b3160379ee5b36cd7716": "Configurações",
|
||||
"92eee6be6de0b11c924e3ab27db30257159c0a7c": "Início",
|
||||
"6765b4c916060f6bc42d9bb69e80377dbcb5e4e9": "Entrar",
|
||||
"357064ca9d9ac859eb618e28e8126fa32be049e2": "Inscrições",
|
||||
"822fab38216f64e8166d368b59fe756ca39d301b": "Baixados",
|
||||
"4a9889d36910edc8323d7bab60858ab3da6d91df": "Apenas áudio",
|
||||
"6a21ba5fb0ac804a525bf9ab168038c3ee88e661": "Baixar",
|
||||
"a38ae1082fec79ba1f379978337385a539a28e73": "Qualidade",
|
||||
"4be966a9dcfbc9b54dfcc604b831c0289f847fa4": "Usar URL",
|
||||
"d3f02f845e62cebd75fde451ab8479d2a8ad784d": "Ver",
|
||||
"96a01fafe135afc58b0f8071a4ab00234495ce18": "Modo baixar-múltiplos",
|
||||
"6a3777f913cf3f288664f0632b9f24794fdcc24e": "Cancelar",
|
||||
"322ed150e02666fe2259c5b4614eac7066f4ffa0": "Avançado",
|
||||
"4e4c721129466be9c3862294dc40241b64045998": "Usar argumentos personalizados",
|
||||
"ad2f8ac8b7de7945b80c8e424484da94e597125f": "Argumentos personalizados",
|
||||
"a6911c2157f1b775284bbe9654ce5eb30cf45d7f": "Não é necessário incluir URL, apenas tudo depois. Argumentos são delimitados usando duas vírgulas assim: ,,",
|
||||
"3a92a3443c65a52f37ca7efb8f453b35dbefbf29": "Usar saída personalizada",
|
||||
"d9c02face477f2f9cdaae318ccee5f89856851fb": "Saída personalizada",
|
||||
"fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7": "Documentação",
|
||||
"19d1ae64d94d28a29b2c57ae8671aace906b5401": "Caminho é relativo a configuração do caminho de download. Não inclua a extensão.",
|
||||
"b7ffe7c6586d6f3f18a9246806a7c7d5538ab43e": "Comando simulado:",
|
||||
"8fad10737d3e3735a6699a4d89cbf6c20f6bb55f": "Usar autenticação",
|
||||
"08c74dc9762957593b91f6eb5d65efdfc975bf48": "Nome de usuário",
|
||||
"c32ef07f8803a223a83ed17024b38e8d82292407": "Senha",
|
||||
"17f0ea5d2d7a262b0e875acc70475f102aee84e6": "Criar lista de reprodução",
|
||||
"cff1428d10d59d14e45edec3c735a27b5482db59": "Nome",
|
||||
"f61c6867295f3b53d23557021f2f4e0aa1d0b8fc": "Tipo",
|
||||
"f0baeb8b69d120073b6d60d34785889b0c3232c8": "Áudio",
|
||||
"2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4": "Vídeo",
|
||||
"f47e2d56dd8a145b2e9599da9730c049d52962a2": "Arquivos de áudio",
|
||||
"a52dae09be10ca3a65da918533ced3d3f4992238": "Vídeos",
|
||||
"a9806cf78ce00eb2613eeca11354a97e033377b8": "Inscreva-se numa lista de reprodução ou canal",
|
||||
"801b98c6f02fe3b32f6afa3ee854c99ed83474e6": "URL",
|
||||
"93efc99ae087fc116de708ecd3ace86ca237cf30": "A URL da lista de reprodução ou canal",
|
||||
"08f5d0ef937ae17feb1b04aff15ad88911e87baf": "Nome personalizado",
|
||||
"ea30873bd3f0d5e4fb2378eec3f0a1db77634a28": "Baixar todos uploads",
|
||||
"d641b8fa5ac5e85114c733b1f7de6976bd091f70": "Qualidade máxima",
|
||||
"c76a955642714b8949ff3e4b4990864a2e2cac95": "Modo apenas-áudio",
|
||||
"408ca4911457e84a348cecf214f02c69289aa8f1": "Modo somente streaming",
|
||||
"f432e1a8d6adb12e612127978ce2e0ced933959c": "Eles são adicionados após os argumentos padrão.",
|
||||
"98b6ec9ec138186d663e64770267b67334353d63": "Saída de arquivo personalizado",
|
||||
"d7b35c384aecd25a516200d6921836374613dfe7": "Cancelar",
|
||||
"d0336848b0c375a1c25ba369b3481ee383217a4f": "Inscreva-se",
|
||||
"28a678e9cabf86e44c32594c43fa0e890135c20f": "Baixe vídeos enviados no último",
|
||||
"e78c0d60ac39787f62c9159646fe0b3c1ed55a1d": "Tipo:",
|
||||
"c52db455cca9109ee47e1a612c3f4117c09eb71b": "URL:",
|
||||
"ca3dbbc7f3e011bffe32a10a3ea45cc84f30ecf1": "ID:",
|
||||
"f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8": "Fechar",
|
||||
"8efc77bf327659c0fec1f518cf48a98cdcd9dddf": "Exportar Arquivos",
|
||||
"3042bd3ad8dffcfeca5fd1ae6159fd1047434e95": "Cancelar inscrição",
|
||||
"303e45ffae995c9817e510e38cb969e6bb3adcbf": "(Pausado)",
|
||||
"a44d86aa1e6c20ced07aca3a7c081d8db9ded1c6": "Arquivos:",
|
||||
"616e206cb4f25bd5885fc35925365e43cf5fb929": "Nome:",
|
||||
"c6eb45d085384903e53ab001a3513d1de6a1dbac": "Quem subiu:",
|
||||
"109c6f4a5e46efb933612ededfaf52a13178b7e0": "Tamanho do arquivo:",
|
||||
"bd630d8669b16e5f264ec4649d9b469fe03e5ff4": "Caminho:",
|
||||
"a67e7d843cef735c79d5ef1c8ba4af3e758912bb": "Data de upload:",
|
||||
"0cc1dec590ecd74bef71a865fb364779bc42a749": "Categoria:",
|
||||
"d9e83ac17026e70ef6e9c0f3240a3b2450367f40": "Modificar argumentos do youtube-dl",
|
||||
"7fc1946abe2b40f60059c6cd19975d677095fd19": "Novos argumentos simulados",
|
||||
"0b71824ae71972f236039bed43f8d2323e8fd570": "Adicionar um argumento",
|
||||
"c8b0e59eb491f2ac7505f0fbab747062e6b32b23": "Buscar por categoria",
|
||||
"9eeb91caef5a50256dd87e1c4b7b3e8216479377": "Usar valor do argumento",
|
||||
"7de2451ed3fb8d8b847979bd3f0c740b970f167b": "Adicionar argumento",
|
||||
"b2623aee44b70c9a4ba1fce16c8a593b0a4c7974": "Modificar",
|
||||
"25d8ad5eba2ec24e68295a27d6a4bb9b49e3dacd": "Valor do argumento",
|
||||
"91ecce65f1d23f9419d1c953cd6b7bc7f91c110e": "Atualizador",
|
||||
"b7ff2e2b909c53abe088fe60b9f4b6ac7757247f": "Registrar usuário",
|
||||
"024886ca34a6f309e3e51c2ed849320592c3faaa": "Nome de usuário",
|
||||
"cfc2f436ec2beffb042e7511a73c89c372e86a6c": "Registrar",
|
||||
"ebadf946ae90f13ecd0c70f09edbc0f983af8a0f": "Fazer upload de novos cookies",
|
||||
"a8b7b9c168fd936a75e500806a8c0d7755ef1198": "NOTA: O upload de novos cookies substituirá os cookies anteriores. Observe também que os cookies abrangem toda a instância, não por usuário.",
|
||||
"98a8a42e5efffe17ab786636ed0139b4c7032d0e": "Arrastar e soltar",
|
||||
"4f389e41e4592f7f9bb76abdd8af4afdfb13f4f1": "Modificar lista de reprodução",
|
||||
"5caadefa4143cf6766a621b0f54f91f373a1f164": "Adicionar conteúdo",
|
||||
"52c9a103b812f258bcddc3d90a6e3f46871d25fe": "Salvar",
|
||||
"33026f57ea65cd9c8a5d917a08083f71a718933a": "Ordem normal",
|
||||
"29376982b1205d9d6ea3d289e8e2f8e1ac2839b1": "Ordem reversa",
|
||||
"d02888c485d3aeab6de628508f4a00312a722894": "Meus vídeos",
|
||||
"7e892ba15f2c6c17e83510e273b3e10fc32ea016": "Buscar",
|
||||
"73423607944a694ce6f9e55cfee329681bb4d9f9": "Nenhum vídeo encontrado.",
|
||||
"3697f8583ea42868aa269489ad366103d94aece7": "Editando",
|
||||
"07db550ae114d9faad3a0cbb68bcc16ab6cd31fc": "Em pausa",
|
||||
"c3b0b86523f1d10e84a71f9b188d54913a11af3b": "Editando categoria",
|
||||
"2489eefea00931942b91f4a1ae109514b591e2e1": "Regras",
|
||||
"e4eeb9106dbcbc91ca1ac3fb4068915998a70f37": "Adicionar nova regra",
|
||||
"792dc6a57f28a1066db283f2e736484f066005fd": "Baixar Twitch Chat",
|
||||
"28f86ffd419b869711aa13f5e5ff54be6d70731c": "Editar",
|
||||
"826b25211922a1b46436589233cb6f1a163d89b7": "Excluir",
|
||||
"321e4419a943044e674beb55b8039f42a9761ca5": "Detalhes",
|
||||
"e684046d73bcee88e82f7ff01e2852789a05fc32": "Total:",
|
||||
"34504b488c24c27e68089be549f0eeae6ebaf30b": "Excluir e bloquear",
|
||||
"dad95154dcef3509b8cc705046061fd24994bbb7": "visualizações",
|
||||
"5b3075e8dc3f3921ec316b0bd83b6d14a06c1a4f": "Salvar alterações",
|
||||
"4d8a18b04a1f785ecd8021ac824e0dfd5881dbfc": "Download finalizado com sucesso",
|
||||
"348cc5d553b18e862eb1c1770e5636f6b05ba130": "Ocorreu um erro",
|
||||
"4f8b2bb476981727ab34ed40fde1218361f92c45": "Detalhes",
|
||||
"e9aff8e6df2e2bf6299ea27bb2894c70bc48bd4d": "Ocorreu um erro:",
|
||||
"77b0c73840665945b25bd128709aa64c8f017e1c": "Download iniciado:",
|
||||
"08ff9375ec078065bcdd7637b7ea65fce2979266": "Download finalizado:",
|
||||
"ad127117f9471612f47d01eae09709da444a36a4": "Destino do arquivo:",
|
||||
"e2319dec5b4ccfb6ed9f55ccabd63650a8fdf547": "Suas inscrições",
|
||||
"807cf11e6ac1cde912496f764c176bdfdd6b7e19": "Canais",
|
||||
"47546e45bbb476baaaad38244db444c427ddc502": "Playlists",
|
||||
"29b89f751593e1b347eef103891b7a1ff36ec03f": "Nome não disponível. Carregamento do canal em andamento.",
|
||||
"4636cd4a1379c50d471e98786098c4d39e1e82ad": "Você não está inscrito em um canal.",
|
||||
"2e0a410652cb07d069f576b61eab32586a18320d": "Nome não disponível. Carregamento da playlist em andamento.",
|
||||
"587b57ced54965d8874c3fd0e9dfedb987e5df04": "Você não está inscrito em uma playlist.",
|
||||
"82421c3e46a0453a70c42900eab51d58d79e6599": "Geral",
|
||||
"0ba25ad86a240576c4f20a2fada4722ebba77b1e": "Downloader",
|
||||
"d5f69691f9f05711633128b5a3db696783266b58": "Extra",
|
||||
"bc2e854e111ecf2bd7db170da5e3c2ed08181d88": "Avançado",
|
||||
"4d13a9cd5ed3dcee0eab22cb25198d43886942be": "Usuários",
|
||||
"eb3d5aefff38a814b76da74371cbf02c0789a1ef": "Logs",
|
||||
"fe8fd36dbf5deee1d56564965787a782a66eba44": "{VAR_SELECT, select, true {Fechar} false {Cancelar} other {Outro}}",
|
||||
"54c512cca1923ab72faf1a0bd98d3d172469629a": "URL para acesso ao app, sem porta.",
|
||||
"cb2741a46e3560f6bc6dfd99d385e86b08b26d72": "Porta",
|
||||
"22e8f1d0423a3b784fe40fab187b92c06541b577": "Porta desejada. (Padrão 17442).",
|
||||
"d4477669a560750d2064051a510ef4d7679e2f3e": "Modo multi-usuário",
|
||||
"2eb03565fcdce7a7a67abc277a936a32fcf51557": "Diretório base de usuários",
|
||||
"a64505c41150663968e277ec9b3ddaa5f4838798": "Diretório base para usuários e seus vídeos baixados.",
|
||||
"4e3120311801c4acd18de7146add2ee4a4417773": "Permitir inscrições",
|
||||
"4bee2a4bef2d26d37c9b353c278e24e5cd309ce3": "Diretório base para Inscrições",
|
||||
"bc9892814ee2d119ae94378c905ea440a249b84a": "Diretório base para vídeos das inscrições em canais e playlists. Relativo ao diretório raiz do YTDL-Material.",
|
||||
"5bef4b25ba680da7fff06b86a91b1fc7e6a926e3": "Intervalo de checagem",
|
||||
"0f56a7449b77630c114615395bbda4cab398efd8": "Unidade em segundos, inclua apenas números.",
|
||||
"13759b09a7f4074ceee8fa2f968f9815fdf63295": "Algumas vezes vídeos são baixados antes de serem totalmente processados. Esta configuração faz com que vídeos novos sejam verificados por uma qualidade mais alta no dia seguinte.",
|
||||
"3d1a47dc18b7bd8b5d9e1eb44b235ed9c4a2b513": "Baixar novamente uploads recentes",
|
||||
"27a56aad79d8b61269ed303f11664cc78bcc2522": "Aparência",
|
||||
"ff7cee38a2259526c519f878e71b964f41db4348": "Padrão",
|
||||
"7a6bacee4c31cb5c0ac2d24274fb4610d8858602": "Permitir alteração da aparência",
|
||||
"fe46ccaae902ce974e2441abe752399288298619": "Idioma",
|
||||
"ab2756805742e84ad0cc0468f4be2d8aa9f855a5": "Diretório para áudio",
|
||||
"c2c89cdf45d46ea64d2ed2f9ac15dfa4d77e26ca": "Diretório para downloads de 'áudio apenas'. Relativo ao diretório raiz do YTDL-Material.",
|
||||
"46826331da1949bd6fb74624447057099c9d20cd": "Diretório de Vídeos",
|
||||
"17c92e6d47a213fa95b5aa344b3f258147123f93": "Diretório para download de vídeos. Relativo ao diretório raiz do YTDL-Material.",
|
||||
"cfe829634b1144bc44b6d38cf5584ea65db9804f": "Arquivo de destino padrão",
|
||||
"1148fd45287ff09955b938756bc302042bcb29c7": "O caminho é relativo ao diretório de download acima. Não inclua extensão.",
|
||||
"ef418d4ece7c844f3a5e431da1aa59bedd88da7b": "Parâmetro global personalizado",
|
||||
"6b995e7130b4d667eaab6c5f61b362ace486d26d": "Parâmetro global personalizado para downloads na home page. Parâmetros são delimitados utilizando duas vírgulas. Ex: ,,",
|
||||
"04201f9d27abd7d6f58a4328ab98063ce1072006": "Categorias",
|
||||
"78e49b7339b4fa7184dd21bcaae107ce9b7076f6": "Armazenar youtube-dl",
|
||||
"ffc19f32b1cba0daefc0e5668f89346db1db83ad": "Incluir miniatura",
|
||||
"384de8f8f112c9e6092eb2698706d391553f3e8d": "Incluir metadados",
|
||||
"fb35145bfb84521e21b6385363d59221f436a573": "Parar todos os downloads",
|
||||
"61f8fd90b5f8cb20c70371feb2ee5e1fac5a9095": "Título",
|
||||
"78d3531417c0d4ba4c90f0d4ae741edc261ec8df": "Habilitar gerenciador de arquivos",
|
||||
"a5a1be0a5df07de9eec57f5d2a86ed0204b2e75a": "Habilitar gerenciador de downloads",
|
||||
"c33bd5392b39dbed36b8e5a1145163a15d45835f": "Permitir seleção de qualidade",
|
||||
"bda5508e24e0d77debb28bcd9194d8fefb1cfb92": "Modo Apenas Download",
|
||||
"09d31c803a7252658694e1e3176b97f5655a3fe3": "Permitir modo múltiplos downloads",
|
||||
"1c4dbce56d96b8974aac24a02f7ab2ee81415014": "Habilitar API pública",
|
||||
"23bd81dcc30b74d06279a26d7a42e8901c1b124e": "Chave da API Pública",
|
||||
"41016a73d8ad85e6cb26dffa0a8fab9fe8f60d8e": "Ver documentação",
|
||||
"00a94f58d9eb2e3aa561440eabea616d0c937fa2": "Isso irá excluir sua chave API anterior!",
|
||||
"1b258b258b4cc475ceb2871305b61756b0134f4a": "Gerar",
|
||||
"d5d7c61349f3b0859336066e6d453fc35d334fe5": "Usar API do YouTube",
|
||||
"ce10d31febb3d9d60c160750570310f303a22c22": "Chave da API do YouTube",
|
||||
"8602e313cdfa7c4cc475ccbe86459fce3c3fd986": "Gerar uma chave é fácil!",
|
||||
"d162f9fcd6a7187b391e004f072ab3da8377c47d": "Usar API do Twitch",
|
||||
"8ae23bc4302a479f687f4b20a84c276182e2519c": "Chave da API do Twitch",
|
||||
"84ffcebac2709ca0785f4a1d5ba274433b5beabc": "Também chamado de ID do Cliente (Client ID).",
|
||||
"5fb1e0083c9b2a40ac8ae7dcb2618311c291b8b9": "Baixar Twitch Chat automaticamente",
|
||||
"9b3cedfa83c6d7acb3210953289d1be4aab115c7": "Clique aqui",
|
||||
"7f09776373995003161235c0c8d02b7f91dbc4df": "para baixar a extensão do YoutubeDL-Material para o Chrome manualmente.",
|
||||
"5b5296423906ab3371fdb2b5a5aaa83acaa2ee52": "Você deve carregar a extensão manualmente e alterar as configurações para a URL inicial.",
|
||||
"9a2ec6da48771128384887525bdcac992632c863": "para instalar a extensão oficial do YoutubeDL-Material para o Firefox diretamente da página de extensões.",
|
||||
"eb81be6b49e195e5307811d1d08a19259d411f37": "Instruções de instalação detalhadas.",
|
||||
"cb17ff8fe3961cf90f44bee97c88a3f3347a7e55": "Nada além de alterar a configuração da extensão para a URL inicial é necessário.",
|
||||
"61b81b11aad0b9d970ece2fce18405f07eac69c2": "Arraste o link abaixo para seus Favoritos, e pronto! Navegue para o vídeo do Youtube que deseja baixar e clique no link favoritado.",
|
||||
"c505d6c5de63cc700f0aaf8a4b31fae9e18024e5": "Gerar favorito 'apenas áudio' interativo",
|
||||
"ec71e08aee647ea4a71fd6b7510c54d84a797ca6": "Selecione um downloader",
|
||||
"5fab47f146b0a4b809dcebf3db9da94df6299ea1": "Usar agente de download padrão",
|
||||
"c776eb4992b6c98f58cd89b20c1ea8ac37888521": "Selecionar um agente de download",
|
||||
"0c43af932e6a4ee85500e28f01b3538b4eb27bc4": "Nível do Log",
|
||||
"db6c192032f4cab809aad35215f0aa4765761897": "Expiração do login",
|
||||
"dc3d990391c944d1fbfc7cfb402f7b5e112fb3a8": "Permitir Download avançado",
|
||||
"431e5f3a0dde88768d1074baedd65266412b3f02": "Usar Cookies",
|
||||
"80651a7ad1229ea6613557d3559f702cfa5aecf5": "Configurar Cookies",
|
||||
"37224420db54d4bc7696f157b779a7225f03ca9d": "Permitir cadastro de usuário",
|
||||
"fa548cee6ea11c160a416cac3e6bdec0363883dc": "Método de autenticação",
|
||||
"4f56ced9d6b85aeb1d4346433361d47ea72dac1a": "Interno",
|
||||
"e3d7c5f019e79a3235a28ba24df24f11712c7627": "LDAP",
|
||||
"1db9789b93069861019bd0ccaa5d4706b00afc61": "URL do LDAP",
|
||||
"f50fa6c09c8944aed504f6325f2913ee6c7a296a": "Bind DN",
|
||||
"080cc6abcba236390fc22e79792d0d3443a3bd2a": "Bind Credentials",
|
||||
"cfa67d14d84fe0e9fadf251dc51ffc181173b662": "Search Base",
|
||||
"e01d54ecc1a0fcf9525a3c100ed8b83d94e61c23": "Search Filter",
|
||||
"cec82c0a545f37420d55a9b6c45c20546e82f94e": "Sobre o YoutubeDL-Material",
|
||||
"199c17e5d6a419313af3c325f06dcbb9645ca618": "é um downloader open-source para o Youtube feito nas especificações do Mateerial Design da Google. Você pode baixar seus vídeos favoritos como arquivos de vídeo ou áudio, e até se inscrever nos seus canais ou playlists favoritos para ficar atualizado com os novos vídeos publicados.",
|
||||
"bc0ad0ee6630acb7fcb7802ec79f5a0ee943c1a7": "tem algumas funcionalidades incríveis inclusas! Uma API extensa, suporte ao Docker, suporte à tradução. Leia sobre todas as funcionalidades suportadas clicando no ícone do GitHub acima.",
|
||||
"a45e3b05f0529dc5246d70ef62304c94426d4c81": "Versão instalada:",
|
||||
"b33536f59b94ec935a16bd6869d836895dc5300c": "Achou m bug ou tem uma sugestão?",
|
||||
"e1f398f38ff1534303d4bb80bd6cece245f24016": "para criar uma ocorrência!",
|
||||
"e22f3a5351944f3a1a10cfc7da6f65dfbe0037fe": "Buscando por atualizações...",
|
||||
"a16e92385b4fd9677bb830a4b796b8b79c113290": "Atualização disponível",
|
||||
"189b28aaa19b3c51c6111ad039c4fd5e2a22e370": "Você pode atualizar pelo Menu de Configuração.",
|
||||
"1372e61c5bd06100844bd43b98b016aabc468f62": "Selecionar uma versão:",
|
||||
"1f6d14a780a37a97899dc611881e6bc971268285": "Habilitar compartilhamento",
|
||||
"6580b6a950d952df847cb3d8e7176720a740adc8": "Usar timestamp",
|
||||
"4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c": "Segundos",
|
||||
"3a6e5a6aa78ca864f6542410c5dafb6334538106": "Copiar para a Área de transferência",
|
||||
"a249a5ae13e0835383885aaf697d2890cc3e53e9": "Compartilhar playlist",
|
||||
"15da89490e04496ca9ea1e1b3d44fb5efd4a75d9": "Compartilhar Vídeo",
|
||||
"1d540dcd271b316545d070f9d182c372d923aadd": "Compartilhar Áudio",
|
||||
"a1ad8b1be9be43b5183bd2c3186d4e19496f2a0b": "ID da sessão:",
|
||||
"b6c453e0e61faea184bbaf5c5b0a1e164f4de2a2": "Limpar todos os downloads",
|
||||
"eb98135e35af26a9a326ee69bd8ff104d36dd8ec": "(atual)",
|
||||
"7117fc42f860e86d983bfccfcf2654e5750f3406": "Não há downloads disponíveis!",
|
||||
"42ff677ec14f111e88bd6cdd30145378e994d1bf": "Seu Perfil",
|
||||
"bb694b49d408265c91c62799c2b3a7e3151c824d": "Sair",
|
||||
"ac9d09de42edca1296371e4d801349c9096ac8de": "UID:",
|
||||
"a5ed099ffc9e96f6970df843289ade8a7d20ab9f": "Criado:",
|
||||
"fa96f2137af0a24e6d6d54c598c0af7d5d5ad344": "Você não está logado.",
|
||||
"a1dbca87b9f36d2b06a5cbcffb5814c4ae9b798a": "Criar conta de Administrador",
|
||||
"2d2adf3ca26a676bca2269295b7455a26fd26980": "Conta padrão de Administrador não detectada. Isto irá criar e configurar uma senha para a conta de administrador com o usuário 'admin'.",
|
||||
"70a67e04629f6d412db0a12d51820b480788d795": "Criar",
|
||||
"4d92a0395dd66778a931460118626c5794a3fc7a": "Adicionar Usuários",
|
||||
"b0d7dd8a1b0349622d6e0c6e643e24a9ea0efa1d": "Editar função",
|
||||
"746f64ddd9001ac456327cd9a3d5152203a4b93c": "Nome de usuário",
|
||||
"52c1447c1ec9570a2a3025c7e566557b8d19ed92": "Função",
|
||||
"59a8c38db3091a63ac1cb9590188dc3a972acfb3": "Ações",
|
||||
"2bd201aea09e43fbfd3cd15ec0499b6755302329": "Gerenciar usuário",
|
||||
"95b95a9c79e4fd9ed41f6855e37b3b06af25bcab": "Excluir usuário",
|
||||
"632e8b20c98e8eec4059a605a4b011bb476137af": "Editar usuário",
|
||||
"29c97c8e76763bb15b6d515648fa5bd1eb0f7510": "UID do usuário:",
|
||||
"e70e209561583f360b1e9cefd2cbb1fe434b6229": "Nova senha",
|
||||
"6498fa1b8f563988f769654a75411bb8060134b9": "Aplicar nova senha",
|
||||
"544e09cdc99a8978f48521d45f62db0da6dcf742": "Usar função padrão",
|
||||
"4f20f2d5a6882190892e58b85f6ccbedfa737952": "Sim",
|
||||
"3d3ae7deebc5949b0c1c78b9847886a94321d9fd": "Não",
|
||||
"57c6c05d8ebf4ef1180c2705033c044f655bb2c4": "Gerenciar função",
|
||||
"5009630cdf32ab4f1c78737b9617b8773512c05a": "Linhas:",
|
||||
"8a0bda4c47f10b2423ff183acefbf70d4ab52ea2": "Limpar logs",
|
||||
"24dc3ecf7ec2c2144910c4f3d38343828be03a4c": "Auto-gerado",
|
||||
"ccf5ea825526ac490974336cb5c24352886abc07": "Abrir arquivo",
|
||||
"5656a06f17c24b2d7eae9c221567b209743829a9": "Abrir arquivo em uma nova aba",
|
||||
"a0720c36ee1057e5c54a86591b722485c62d7b1a": "Ir para Inscrições",
|
||||
"94e01842dcee90531caa52e4147f70679bac87fe": "Excluir e baixar novamente",
|
||||
"2031adb51e07a41844e8ba7704b054e98345c9c1": "Excluir para sempre",
|
||||
"ddc31f2885b1b33a7651963254b0c197f2a64086": "Ver mais.",
|
||||
"56a2a773fbd5a6b9ac2e6b89d29d70a2ed0f3227": "Ver menos.",
|
||||
"2054791b822475aeaea95c0119113de3200f5e1c": "Duração:"
|
||||
}
|
||||
2517
src/assets/i18n/messages.pt.xlf
Normal file
2517
src/assets/i18n/messages.pt.xlf
Normal file
File diff suppressed because it is too large
Load Diff
268
src/assets/i18n/messages.ru.json
Normal file
268
src/assets/i18n/messages.ru.json
Normal file
@@ -0,0 +1,268 @@
|
||||
{
|
||||
"17f0ea5d2d7a262b0e875acc70475f102aee84e6": "Создайте список воспроизведения",
|
||||
"cff1428d10d59d14e45edec3c735a27b5482db59": "Имя",
|
||||
"f47e2d56dd8a145b2e9599da9730c049d52962a2": "Аудиофайлы",
|
||||
"a52dae09be10ca3a65da918533ced3d3f4992238": "Видео",
|
||||
"d9e83ac17026e70ef6e9c0f3240a3b2450367f40": "Изменение аргументов youtube-dl",
|
||||
"7fc1946abe2b40f60059c6cd19975d677095fd19": "Моделирование новых аргументов",
|
||||
"0b71824ae71972f236039bed43f8d2323e8fd570": "Добавить аргумент",
|
||||
"c8b0e59eb491f2ac7505f0fbab747062e6b32b23": "Поиск по категориям",
|
||||
"9eeb91caef5a50256dd87e1c4b7b3e8216479377": "Использовать значение аргумента",
|
||||
"25d8ad5eba2ec24e68295a27d6a4bb9b49e3dacd": "Значение аргумента",
|
||||
"7de2451ed3fb8d8b847979bd3f0c740b970f167b": "Добавить аргумент",
|
||||
"d7b35c384aecd25a516200d6921836374613dfe7": "Отмена",
|
||||
"b2623aee44b70c9a4ba1fce16c8a593b0a4c7974": "Модифицировать",
|
||||
"038ebcb2a89155d90c24fa1c17bfe83dbadc3c20": "",
|
||||
"a38ae1082fec79ba1f379978337385a539a28e73": "Качество",
|
||||
"4be966a9dcfbc9b54dfcc604b831c0289f847fa4": "Использовать URL",
|
||||
"d3f02f845e62cebd75fde451ab8479d2a8ad784d": "Вид",
|
||||
"4a9889d36910edc8323d7bab60858ab3da6d91df": "Только аудио",
|
||||
"96a01fafe135afc58b0f8071a4ab00234495ce18": "Режим мультизагрузки",
|
||||
"6a21ba5fb0ac804a525bf9ab168038c3ee88e661": "Загрузка",
|
||||
"6a3777f913cf3f288664f0632b9f24794fdcc24e": "Отмена",
|
||||
"322ed150e02666fe2259c5b4614eac7066f4ffa0": "Расширенный",
|
||||
"b7ffe7c6586d6f3f18a9246806a7c7d5538ab43e": "Имитация команды:",
|
||||
"4e4c721129466be9c3862294dc40241b64045998": "Используйте пользовательские аргументы",
|
||||
"ad2f8ac8b7de7945b80c8e424484da94e597125f": "Пользовательские аргументы",
|
||||
"a6911c2157f1b775284bbe9654ce5eb30cf45d7f": "Нет необходимости включать URL, просто все, что после. Аргументы разграничиваются двумя запятыми следующим образом: ,,",
|
||||
"3a92a3443c65a52f37ca7efb8f453b35dbefbf29": "Использование пользовательского вывода",
|
||||
"d9c02face477f2f9cdaae318ccee5f89856851fb": "Пользовательский вывод",
|
||||
"fcfd4675b4c90f08d18d3abede9a9a4dff4cfdc7": "Документация",
|
||||
"19d1ae64d94d28a29b2c57ae8671aace906b5401": "Путь является относительным к пути загрузки конфигурации. Не включайте расширение.",
|
||||
"8fad10737d3e3735a6699a4d89cbf6c20f6bb55f": "Используйте аутентификацию",
|
||||
"08c74dc9762957593b91f6eb5d65efdfc975bf48": "Имя пользователя",
|
||||
"c32ef07f8803a223a83ed17024b38e8d82292407": "Пароль",
|
||||
"4a0dada6e841a425de3e5006e6a04df26c644fa5": "",
|
||||
"9779715ac05308973d8f1c8658b29b986e92450f": "",
|
||||
"47546e45bbb476baaaad38244db444c427ddc502": "Плейлисты",
|
||||
"78bd81adb4609b68cfa4c589222bdc233ba1faaa": "",
|
||||
"9d2b62bb0b91e2e17fb4177a7e3d6756a2e6ee33": "",
|
||||
"960582a8b9d7942716866ecfb7718309728f2916": "",
|
||||
"0f59c46ca29e9725898093c9ea6b586730d0624e": "",
|
||||
"616e206cb4f25bd5885fc35925365e43cf5fb929": "Имя:",
|
||||
"c52db455cca9109ee47e1a612c3f4117c09eb71b": "URL-адрес:",
|
||||
"c6eb45d085384903e53ab001a3513d1de6a1dbac": "Загрузчик:",
|
||||
"109c6f4a5e46efb933612ededfaf52a13178b7e0": "Размер файла:",
|
||||
"bd630d8669b16e5f264ec4649d9b469fe03e5ff4": "Путь:",
|
||||
"a67e7d843cef735c79d5ef1c8ba4af3e758912bb": "Дата загрузки:",
|
||||
"f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8": "Закрыть",
|
||||
"4f389e41e4592f7f9bb76abdd8af4afdfb13f4f1": "Изменить список воспроизведения",
|
||||
"ca3dbbc7f3e011bffe32a10a3ea45cc84f30ecf1": "ID:",
|
||||
"e684046d73bcee88e82f7ff01e2852789a05fc32": "Подсчет:",
|
||||
"28f86ffd419b869711aa13f5e5ff54be6d70731c": "Редактировать",
|
||||
"826b25211922a1b46436589233cb6f1a163d89b7": "Удалить",
|
||||
"321e4419a943044e674beb55b8039f42a9761ca5": "Информация",
|
||||
"34504b488c24c27e68089be549f0eeae6ebaf30b": "Удаление и черный список",
|
||||
"ebadf946ae90f13ecd0c70f09edbc0f983af8a0f": "Загрузка новых файлов cookie",
|
||||
"98a8a42e5efffe17ab786636ed0139b4c7032d0e": "Перетаскивание",
|
||||
"85e0725c870b28458fd3bbba905397d890f00a69": "",
|
||||
"121cc5391cd2a5115bc2b3160379ee5b36cd7716": "Настройки",
|
||||
"801b98c6f02fe3b32f6afa3ee854c99ed83474e6": "URL-адрес",
|
||||
"54c512cca1923ab72faf1a0bd98d3d172469629a": "URL, с которого будет осуществляться доступ к этому приложению, без указания порта.",
|
||||
"cb2741a46e3560f6bc6dfd99d385e86b08b26d72": "Порт",
|
||||
"22e8f1d0423a3b784fe40fab187b92c06541b577": "Желаемый порт. По умолчанию - 17442.",
|
||||
"d4477669a560750d2064051a510ef4d7679e2f3e": "Многопользовательский режим",
|
||||
"2eb03565fcdce7a7a67abc277a936a32fcf51557": "Базовый путь пользователей",
|
||||
"a64505c41150663968e277ec9b3ddaa5f4838798": "Базовый путь для пользователей и их загруженных видео.",
|
||||
"cbe16a57be414e84b6a68309d08fad894df797d6": "",
|
||||
"0c1875a79b7ecc792cc1bebca3e063e40b5764f9": "",
|
||||
"736551b93461d2de64b118cf4043eee1d1c2cb2c": "",
|
||||
"4e3120311801c4acd18de7146add2ee4a4417773": "Разрешить подписки",
|
||||
"4bee2a4bef2d26d37c9b353c278e24e5cd309ce3": "Базовый путь подписки",
|
||||
"bc9892814ee2d119ae94378c905ea440a249b84a": "Базовый путь для видео из подписанных вами каналов и плейлистов. Он является относительным к корневой папке YTDL-Material.",
|
||||
"5bef4b25ba680da7fff06b86a91b1fc7e6a926e3": "Контрольный интервал",
|
||||
"0f56a7449b77630c114615395bbda4cab398efd8": "Единица измерения - секунды, включайте только цифры.",
|
||||
"78e49b7339b4fa7184dd21bcaae107ce9b7076f6": "Используйте архив youtube-dl",
|
||||
"fa9fe4255231dd1cc6b29d3d254a25cb7c764f0f": "",
|
||||
"09006404cccc24b7a8f8d1ce0b39f2761ab841d8": "",
|
||||
"29ed79a98fc01e7f9537777598e31dbde3aa7981": "",
|
||||
"27a56aad79d8b61269ed303f11664cc78bcc2522": "Тема",
|
||||
"ff7cee38a2259526c519f878e71b964f41db4348": "По умолчанию",
|
||||
"adb4562d2dbd3584370e44496969d58c511ecb63": "Тёмный",
|
||||
"7a6bacee4c31cb5c0ac2d24274fb4610d8858602": "Разрешить смену темы",
|
||||
"fe46ccaae902ce974e2441abe752399288298619": "Язык",
|
||||
"82421c3e46a0453a70c42900eab51d58d79e6599": "Главная",
|
||||
"ab2756805742e84ad0cc0468f4be2d8aa9f855a5": "Путь к папке аудио",
|
||||
"c2c89cdf45d46ea64d2ed2f9ac15dfa4d77e26ca": "Путь для загрузки только аудиофайлов. Он является относительным к корневой папке YTDL-Material.",
|
||||
"46826331da1949bd6fb74624447057099c9d20cd": "Путь к папке с видео",
|
||||
"17c92e6d47a213fa95b5aa344b3f258147123f93": "Путь для загрузки видео. Относится к корневой папке YTDL-Material.",
|
||||
"6b995e7130b4d667eaab6c5f61b362ace486d26d": "Глобальные пользовательские аргументы для загрузок на главной странице. Аргументы разграничиваются с помощью двух запятых следующим образом: ,,",
|
||||
"d01715b75228878a773ae6d059acc639d4898a03": "",
|
||||
"0ba25ad86a240576c4f20a2fada4722ebba77b1e": "Загрузчик",
|
||||
"61f8fd90b5f8cb20c70371feb2ee5e1fac5a9095": "Верхний заголовок",
|
||||
"78d3531417c0d4ba4c90f0d4ae741edc261ec8df": "Включен файловый менеджер",
|
||||
"a5a1be0a5df07de9eec57f5d2a86ed0204b2e75a": "Включен менеджер загрузок",
|
||||
"c33bd5392b39dbed36b8e5a1145163a15d45835f": "Разрешить выбор качества",
|
||||
"bda5508e24e0d77debb28bcd9194d8fefb1cfb92": "Режим только загрузки",
|
||||
"09d31c803a7252658694e1e3176b97f5655a3fe3": "Разрешить режим мультизагрузки",
|
||||
"d8b47221b5af9e9e4cd5cb434d76fc0c91611409": "",
|
||||
"f5ec7b2cdf87d41154f4fcbc86e856314409dcb9": "",
|
||||
"1c4dbce56d96b8974aac24a02f7ab2ee81415014": "Включить публичный API",
|
||||
"23bd81dcc30b74d06279a26d7a42e8901c1b124e": "Открытый ключ API",
|
||||
"41016a73d8ad85e6cb26dffa0a8fab9fe8f60d8e": "Просмотр документации",
|
||||
"1b258b258b4cc475ceb2871305b61756b0134f4a": "Создать",
|
||||
"d5d7c61349f3b0859336066e6d453fc35d334fe5": "Используйте API YouTube",
|
||||
"ce10d31febb3d9d60c160750570310f303a22c22": "Ключ API Youtube",
|
||||
"8602e313cdfa7c4cc475ccbe86459fce3c3fd986": "Сгенерировать ключ очень просто!",
|
||||
"9b3cedfa83c6d7acb3210953289d1be4aab115c7": "Нажмите здесь",
|
||||
"7f09776373995003161235c0c8d02b7f91dbc4df": "чтобы загрузить официальное расширение YoutubeDL-Material Chrome вручную.",
|
||||
"5b5296423906ab3371fdb2b5a5aaa83acaa2ee52": "Вы должны вручную загрузить расширение и изменить его настройки, чтобы установить URL-адрес фронтенда.",
|
||||
"9a2ec6da48771128384887525bdcac992632c863": "чтобы установить официальное расширение YoutubeDL-Material Firefox прямо со страницы расширений Firefox.",
|
||||
"eb81be6b49e195e5307811d1d08a19259d411f37": "Подробные инструкции по настройке.",
|
||||
"cb17ff8fe3961cf90f44bee97c88a3f3347a7e55": "Не требуется ничего особенного, кроме изменения настроек расширения для установки внешнего URL.",
|
||||
"61b81b11aad0b9d970ece2fce18405f07eac69c2": "Перетащите приведенную ниже ссылку в закладки, и все готово! Просто перейдите к видео YouTube, которое вы хотите загрузить, и нажмите на закладку.",
|
||||
"c505d6c5de63cc700f0aaf8a4b31fae9e18024e5": "Создать букмарклет \"только аудио\"",
|
||||
"d5f69691f9f05711633128b5a3db696783266b58": "Дополнительно",
|
||||
"5fab47f146b0a4b809dcebf3db9da94df6299ea1": "Использовать агент загрузки по умолчанию",
|
||||
"ec71e08aee647ea4a71fd6b7510c54d84a797ca6": "Выберите программу загрузки",
|
||||
"00e274c496b094a019f0679c3fab3945793f3335": "",
|
||||
"dc3d990391c944d1fbfc7cfb402f7b5e112fb3a8": "Разрешить расширенную загрузку",
|
||||
"431e5f3a0dde88768d1074baedd65266412b3f02": "Использование файлов cookie",
|
||||
"80651a7ad1229ea6613557d3559f702cfa5aecf5": "Установить Cookies",
|
||||
"bc2e854e111ecf2bd7db170da5e3c2ed08181d88": "Продвинутый",
|
||||
"37224420db54d4bc7696f157b779a7225f03ca9d": "Разрешить регистрацию пользователей",
|
||||
"4d13a9cd5ed3dcee0eab22cb25198d43886942be": "Пользователи",
|
||||
"eb3d5aefff38a814b76da74371cbf02c0789a1ef": "Журналы",
|
||||
"52c9a103b812f258bcddc3d90a6e3f46871d25fe": "Сохранить",
|
||||
"fe8fd36dbf5deee1d56564965787a782a66eba44": "{VAR_SELECT, select, true {Close} false {Cancel} other {otha}}",
|
||||
"cec82c0a545f37420d55a9b6c45c20546e82f94e": "О YoutubeDL-Material",
|
||||
"199c17e5d6a419313af3c325f06dcbb9645ca618": "это загрузчик YouTube с открытым исходным кодом, созданный в соответствии со спецификациями Material Design от Google. Вы можете легко загружать любимые видеоролики в виде видео- или аудиофайлов и даже подписываться на любимые каналы и плейлисты, чтобы быть в курсе их новых видео.",
|
||||
"bc0ad0ee6630acb7fcb7802ec79f5a0ee943c1a7": "включает в себя несколько потрясающих функций! Обширный API, поддержка Docker и поддержка локализации (перевода). Ознакомьтесь со всеми поддерживаемыми функциями, нажав на значок GitHub выше.",
|
||||
"a45e3b05f0529dc5246d70ef62304c94426d4c81": "Установленная версия:",
|
||||
"e22f3a5351944f3a1a10cfc7da6f65dfbe0037fe": "Проверяем обновления...",
|
||||
"a16e92385b4fd9677bb830a4b796b8b79c113290": "Доступно обновление",
|
||||
"189b28aaa19b3c51c6111ad039c4fd5e2a22e370": "Обновление можно выполнить в меню настроек.",
|
||||
"b33536f59b94ec935a16bd6869d836895dc5300c": "Нашли ошибку или у вас есть предложение?",
|
||||
"e1f398f38ff1534303d4bb80bd6cece245f24016": "чтобы создать проблему!",
|
||||
"42ff677ec14f111e88bd6cdd30145378e994d1bf": "Ваш профиль",
|
||||
"ac9d09de42edca1296371e4d801349c9096ac8de": "UID:",
|
||||
"a5ed099ffc9e96f6970df843289ade8a7d20ab9f": "Создан:",
|
||||
"fa96f2137af0a24e6d6d54c598c0af7d5d5ad344": "Вы не вошли в систему.",
|
||||
"6765b4c916060f6bc42d9bb69e80377dbcb5e4e9": "Логин",
|
||||
"bb694b49d408265c91c62799c2b3a7e3151c824d": "Выход из системы",
|
||||
"a1dbca87b9f36d2b06a5cbcffb5814c4ae9b798a": "Создайте учетную запись администратора",
|
||||
"2d2adf3ca26a676bca2269295b7455a26fd26980": "Учетная запись администратора по умолчанию не обнаружена. Это создаст и установит пароль для учетной записи администратора с именем пользователя 'admin'.",
|
||||
"70a67e04629f6d412db0a12d51820b480788d795": "Создать",
|
||||
"994363f08f9fbfa3b3994ff7b35c6904fdff18d8": "Профиль",
|
||||
"004b222ff9ef9dd4771b777950ca1d0e4cd4348a": "О",
|
||||
"92eee6be6de0b11c924e3ab27db30257159c0a7c": "Дом",
|
||||
"357064ca9d9ac859eb618e28e8126fa32be049e2": "Подписки",
|
||||
"822fab38216f64e8166d368b59fe756ca39d301b": "Загрузки",
|
||||
"a249a5ae13e0835383885aaf697d2890cc3e53e9": "Поделиться плейлистом",
|
||||
"15da89490e04496ca9ea1e1b3d44fb5efd4a75d9": "Поделиться видео",
|
||||
"1d540dcd271b316545d070f9d182c372d923aadd": "Поделиться аудиозаписью",
|
||||
"1f6d14a780a37a97899dc611881e6bc971268285": "Включить совместное использование",
|
||||
"6580b6a950d952df847cb3d8e7176720a740adc8": "Используйте метку времени",
|
||||
"4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c": "Секунды",
|
||||
"3a6e5a6aa78ca864f6542410c5dafb6334538106": "Копировать в буфер обмена",
|
||||
"5b3075e8dc3f3921ec316b0bd83b6d14a06c1a4f": "Сохранить изменения",
|
||||
"4f8b2bb476981727ab34ed40fde1218361f92c45": "Подробности",
|
||||
"e9aff8e6df2e2bf6299ea27bb2894c70bc48bd4d": "Произошла ошибка:",
|
||||
"77b0c73840665945b25bd128709aa64c8f017e1c": "Начало загрузки:",
|
||||
"08ff9375ec078065bcdd7637b7ea65fce2979266": "Конец загрузки:",
|
||||
"ad127117f9471612f47d01eae09709da444a36a4": "Путь(и) к файлам:",
|
||||
"a9806cf78ce00eb2613eeca11354a97e033377b8": "Подписаться на плейлист или канал",
|
||||
"93efc99ae087fc116de708ecd3ace86ca237cf30": "URL-адрес списка воспроизведения или канала",
|
||||
"08f5d0ef937ae17feb1b04aff15ad88911e87baf": "Пользовательское имя",
|
||||
"ea30873bd3f0d5e4fb2378eec3f0a1db77634a28": "Загрузить все загруженные файлы",
|
||||
"28a678e9cabf86e44c32594c43fa0e890135c20f": "Скачать видео, загруженное за последние время",
|
||||
"c76a955642714b8949ff3e4b4990864a2e2cac95": "Только аудио режим",
|
||||
"408ca4911457e84a348cecf214f02c69289aa8f1": "Режим только для потокового вещания",
|
||||
"f432e1a8d6adb12e612127978ce2e0ced933959c": "Они добавляются после стандартных аргументов.",
|
||||
"98b6ec9ec138186d663e64770267b67334353d63": "Пользовательский вывод файлов",
|
||||
"d0336848b0c375a1c25ba369b3481ee383217a4f": "Подписаться",
|
||||
"e78c0d60ac39787f62c9159646fe0b3c1ed55a1d": "Тип:",
|
||||
"a44d86aa1e6c20ced07aca3a7c081d8db9ded1c6": "Архив:",
|
||||
"8efc77bf327659c0fec1f518cf48a98cdcd9dddf": "Экспорт архива",
|
||||
"3042bd3ad8dffcfeca5fd1ae6159fd1047434e95": "Отписаться от рассылки",
|
||||
"e2319dec5b4ccfb6ed9f55ccabd63650a8fdf547": "Ваши подписки",
|
||||
"807cf11e6ac1cde912496f764c176bdfdd6b7e19": "Каналы",
|
||||
"29b89f751593e1b347eef103891b7a1ff36ec03f": "Имя недоступно. Идет поиск канала.",
|
||||
"4636cd4a1379c50d471e98786098c4d39e1e82ad": "У вас нет подписок на каналы.",
|
||||
"2e0a410652cb07d069f576b61eab32586a18320d": "Имя недоступно. Идет поиск списка воспроизведения.",
|
||||
"587b57ced54965d8874c3fd0e9dfedb987e5df04": "У вас нет подписок на плейлисты.",
|
||||
"7e892ba15f2c6c17e83510e273b3e10fc32ea016": "Поиск",
|
||||
"2054791b822475aeaea95c0119113de3200f5e1c": "Длина:",
|
||||
"94e01842dcee90531caa52e4147f70679bac87fe": "Удаление и повторная загрузка",
|
||||
"2031adb51e07a41844e8ba7704b054e98345c9c1": "Удалить навсегда",
|
||||
"91ecce65f1d23f9419d1c953cd6b7bc7f91c110e": "Обновление",
|
||||
"1372e61c5bd06100844bd43b98b016aabc468f62": "Выберите версию:",
|
||||
"cfc2f436ec2beffb042e7511a73c89c372e86a6c": "Зарегистрироваться",
|
||||
"a1ad8b1be9be43b5183bd2c3186d4e19496f2a0b": "Идентификатор сессии:",
|
||||
"eb98135e35af26a9a326ee69bd8ff104d36dd8ec": "(текущий)",
|
||||
"7117fc42f860e86d983bfccfcf2654e5750f3406": "Загрузка недоступна!",
|
||||
"b7ff2e2b909c53abe088fe60b9f4b6ac7757247f": "Зарегистрировать пользователя",
|
||||
"024886ca34a6f309e3e51c2ed849320592c3faaa": "Имя пользователя",
|
||||
"2bd201aea09e43fbfd3cd15ec0499b6755302329": "Управление пользователями",
|
||||
"29c97c8e76763bb15b6d515648fa5bd1eb0f7510": "Идентификатор пользователя:",
|
||||
"e70e209561583f360b1e9cefd2cbb1fe434b6229": "Новый пароль",
|
||||
"6498fa1b8f563988f769654a75411bb8060134b9": "Установите новый пароль",
|
||||
"40da072004086c9ec00d125165da91eaade7f541": "",
|
||||
"4f20f2d5a6882190892e58b85f6ccbedfa737952": "Да",
|
||||
"3d3ae7deebc5949b0c1c78b9847886a94321d9fd": "Нет",
|
||||
"57c6c05d8ebf4ef1180c2705033c044f655bb2c4": "Управлять ролью",
|
||||
"746f64ddd9001ac456327cd9a3d5152203a4b93c": "Имя пользователя",
|
||||
"52c1447c1ec9570a2a3025c7e566557b8d19ed92": "Роль",
|
||||
"59a8c38db3091a63ac1cb9590188dc3a972acfb3": "Действия",
|
||||
"4d92a0395dd66778a931460118626c5794a3fc7a": "Добавить пользователей",
|
||||
"b0d7dd8a1b0349622d6e0c6e643e24a9ea0efa1d": "Редактировать роль",
|
||||
"fd59fb984749fcdb5e386ae85faec82f8e5ac098": "",
|
||||
"5009630cdf32ab4f1c78737b9617b8773512c05a": "Линии:",
|
||||
"56a2a773fbd5a6b9ac2e6b89d29d70a2ed0f3227": "Смотреть меньше.",
|
||||
"ddc31f2885b1b33a7651963254b0c197f2a64086": "См. подробнее.",
|
||||
"a0720c36ee1057e5c54a86591b722485c62d7b1a": "Перейти к подписке",
|
||||
"5656a06f17c24b2d7eae9c221567b209743829a9": "Открыть файл в новой вкладке",
|
||||
"ccf5ea825526ac490974336cb5c24352886abc07": "Открыть файл",
|
||||
"24dc3ecf7ec2c2144910c4f3d38343828be03a4c": "Автогенерируемый",
|
||||
"8a0bda4c47f10b2423ff183acefbf70d4ab52ea2": "Очистить журналы",
|
||||
"544e09cdc99a8978f48521d45f62db0da6dcf742": "Использовать роль по умолчанию",
|
||||
"632e8b20c98e8eec4059a605a4b011bb476137af": "Редактировать пользователя",
|
||||
"95b95a9c79e4fd9ed41f6855e37b3b06af25bcab": "Удалить пользователя",
|
||||
"b6c453e0e61faea184bbaf5c5b0a1e164f4de2a2": "Очистить все загрузки",
|
||||
"e01d54ecc1a0fcf9525a3c100ed8b83d94e61c23": "Фильтр поиска",
|
||||
"cfa67d14d84fe0e9fadf251dc51ffc181173b662": "База поиска",
|
||||
"080cc6abcba236390fc22e79792d0d3443a3bd2a": "Связать учетные данные",
|
||||
"f50fa6c09c8944aed504f6325f2913ee6c7a296a": "Привязать DN",
|
||||
"1db9789b93069861019bd0ccaa5d4706b00afc61": "URL-адрес LDAP",
|
||||
"e3d7c5f019e79a3235a28ba24df24f11712c7627": "LDAP",
|
||||
"4f56ced9d6b85aeb1d4346433361d47ea72dac1a": "Внутренний",
|
||||
"fa548cee6ea11c160a416cac3e6bdec0363883dc": "Метод авторизации",
|
||||
"db6c192032f4cab809aad35215f0aa4765761897": "Истечение срока действия логина",
|
||||
"0c43af932e6a4ee85500e28f01b3538b4eb27bc4": "Уровень журнала",
|
||||
"c776eb4992b6c98f58cd89b20c1ea8ac37888521": "Выберите агент загрузки",
|
||||
"5fb1e0083c9b2a40ac8ae7dcb2618311c291b8b9": "Автоматическая загрузка чата Twitch",
|
||||
"84ffcebac2709ca0785f4a1d5ba274433b5beabc": "Также известен как идентификатор клиента.",
|
||||
"8ae23bc4302a479f687f4b20a84c276182e2519c": "Ключ API Twitch",
|
||||
"d162f9fcd6a7187b391e004f072ab3da8377c47d": "Используйте API Twitch",
|
||||
"00a94f58d9eb2e3aa561440eabea616d0c937fa2": "Это удалит ваш старый ключ API!",
|
||||
"fb35145bfb84521e21b6385363d59221f436a573": "Убить все загрузки",
|
||||
"384de8f8f112c9e6092eb2698706d391553f3e8d": "Включить метаданные",
|
||||
"ffc19f32b1cba0daefc0e5668f89346db1db83ad": "Включить уменьшенное изображение",
|
||||
"04201f9d27abd7d6f58a4328ab98063ce1072006": "Категории",
|
||||
"ef418d4ece7c844f3a5e431da1aa59bedd88da7b": "Глобальные пользовательские аргументы",
|
||||
"1148fd45287ff09955b938756bc302042bcb29c7": "Путь является относительным по отношению к вышеуказанным путям загрузки. Не включайте расширение.",
|
||||
"cfe829634b1144bc44b6d38cf5584ea65db9804f": "Вывод файлов по умолчанию",
|
||||
"3d1a47dc18b7bd8b5d9e1eb44b235ed9c4a2b513": "Повторная загрузка свежих загрузок",
|
||||
"13759b09a7f4074ceee8fa2f968f9815fdf63295": "Иногда новые видео загружаются до полной обработки. Эта настройка означает, что новые видео будут проверяться на наличие версии более высокого качества на следующий день.",
|
||||
"348cc5d553b18e862eb1c1770e5636f6b05ba130": "Произошла ошибка",
|
||||
"4d8a18b04a1f785ecd8021ac824e0dfd5881dbfc": "Загрузка прошла успешно",
|
||||
"dad95154dcef3509b8cc705046061fd24994bbb7": "просмотры",
|
||||
"792dc6a57f28a1066db283f2e736484f066005fd": "Скачать Чат Twitch",
|
||||
"e4eeb9106dbcbc91ca1ac3fb4068915998a70f37": "Добавить новое правило",
|
||||
"2489eefea00931942b91f4a1ae109514b591e2e1": "Правила",
|
||||
"c3b0b86523f1d10e84a71f9b188d54913a11af3b": "Категория редактирования",
|
||||
"07db550ae114d9faad3a0cbb68bcc16ab6cd31fc": "Приостановлено",
|
||||
"3697f8583ea42868aa269489ad366103d94aece7": "Редактирование",
|
||||
"73423607944a694ce6f9e55cfee329681bb4d9f9": "Видео не найдено.",
|
||||
"d02888c485d3aeab6de628508f4a00312a722894": "Мои видео",
|
||||
"29376982b1205d9d6ea3d289e8e2f8e1ac2839b1": "Обратный порядок",
|
||||
"33026f57ea65cd9c8a5d917a08083f71a718933a": "Обычный порядок",
|
||||
"5caadefa4143cf6766a621b0f54f91f373a1f164": "Добавить содержание",
|
||||
"a8b7b9c168fd936a75e500806a8c0d7755ef1198": "ПРИМЕЧАНИЕ: Загрузка новых файлов cookie отменяет предыдущие файлы cookie. Также обратите внимание, что файлы cookie используются в масштабах всего экземпляра, а не каждого пользователя.",
|
||||
"0cc1dec590ecd74bef71a865fb364779bc42a749": "Категория:",
|
||||
"303e45ffae995c9817e510e38cb969e6bb3adcbf": "(Пауза)",
|
||||
"d641b8fa5ac5e85114c733b1f7de6976bd091f70": "Максимальное качество",
|
||||
"2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4": "Видео",
|
||||
"f0baeb8b69d120073b6d60d34785889b0c3232c8": "Аудио",
|
||||
"f61c6867295f3b53d23557021f2f4e0aa1d0b8fc": "Тип"
|
||||
}
|
||||
2589
src/assets/i18n/messages.ru.xlf
Normal file
2589
src/assets/i18n/messages.ru.xlf
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user