From: Chocobozzz Date: Tue, 12 Oct 2021 11:50:48 +0000 (+0200) Subject: Merge branch 'release/3.4.0' into develop X-Git-Tag: v4.0.0-rc.1~287 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=10ef089102f2225c5ec3ed426bc612e4f2bc8655;hp=3c25d37aef66b125e8c66d38b04eb763f1b17bc6;p=github%2FChocobozzz%2FPeerTube.git Merge branch 'release/3.4.0' into develop --- diff --git a/client/package.json b/client/package.json index ffe7df4cd..afa0efe13 100644 --- a/client/package.json +++ b/client/package.json @@ -128,7 +128,6 @@ "typescript": "~4.3.4", "video.js": "^7", "videojs-contextmenu-pt": "^5.4.1", - "videojs-contrib-quality-levels": "^2.0.9", "videojs-dock": "^2.0.2", "videojs-hotkeys": "^0.2.27", "videostream": "~3.2.1", diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html index 3ceea02ca..6ae7b1b79 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html +++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.html @@ -63,7 +63,7 @@
-
+
There are errors in the form:
    @@ -77,7 +77,11 @@ You cannot allow live replay if you don't enable transcoding. - + + You cannot change the server configuration because it's managed externally. + + +
diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.scss b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.scss index 5951d0aaa..0458d257f 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.scss +++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.scss @@ -33,6 +33,11 @@ input[type=number] { top: 5px; right: 2.5rem; } + + input[disabled] { + background-color: #f9f9f9; + pointer-events: none; + } } input[type=checkbox] { @@ -93,6 +98,11 @@ textarea { } } +input[disabled] { + opacity: 0.5; +} + + .form-group-right { padding-top: 2px; } diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts index f13fe4bf9..04b0175a7 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts +++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts @@ -258,6 +258,9 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit { this.loadConfigAndUpdateForm() this.loadCategoriesAndLanguages() + if (!this.serverConfig.allowEdits) { + this.form.disable() + } } formValidated () { diff --git a/client/src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts b/client/src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts index d6959a50e..8fba423c3 100644 --- a/client/src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts +++ b/client/src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts @@ -155,7 +155,7 @@ export class MyVideoPlaylistElementsComponent implements OnInit, OnDestroy { } private loadElements () { - this.videoPlaylistService.getPlaylistVideos(this.videoPlaylistId, this.pagination) + this.videoPlaylistService.getPlaylistVideos({ videoPlaylistId: this.videoPlaylistId, componentPagination: this.pagination }) .subscribe(({ total, data }) => { this.playlistElements = this.playlistElements.concat(data) this.pagination.totalItems = total diff --git a/client/src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts b/client/src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts index 78b3af4a7..b2863fed6 100644 --- a/client/src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts +++ b/client/src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts @@ -1,6 +1,14 @@ import { Component, EventEmitter, Input, Output } from '@angular/core' import { Router } from '@angular/router' -import { AuthService, ComponentPagination, LocalStorageService, Notifier, SessionStorageService, UserService } from '@app/core' +import { + AuthService, + ComponentPagination, + HooksService, + LocalStorageService, + Notifier, + SessionStorageService, + UserService +} from '@app/core' import { VideoPlaylist, VideoPlaylistElement, VideoPlaylistService } from '@app/shared/shared-video-playlist' import { peertubeLocalStorage, peertubeSessionStorage } from '@root-helpers/peertube-web-storage' import { VideoPlaylistPrivacy } from '@shared/models' @@ -34,6 +42,7 @@ export class VideoWatchPlaylistComponent { currentPlaylistPosition: number constructor ( + private hooks: HooksService, private userService: UserService, private auth: AuthService, private notifier: Notifier, @@ -87,31 +96,38 @@ export class VideoWatchPlaylistComponent { } loadPlaylistElements (playlist: VideoPlaylist, redirectToFirst = false, position?: number) { - this.videoPlaylist.getPlaylistVideos(playlist.uuid, this.playlistPagination) - .subscribe(({ total, data }) => { - this.playlistElements = this.playlistElements.concat(data) - this.playlistPagination.totalItems = total - - const firstAvailableVideo = this.playlistElements.find(e => !!e.video) - if (!firstAvailableVideo) { - this.noPlaylistVideos = true - return - } - - if (position) this.updatePlaylistIndex(position) - - if (redirectToFirst) { - const extras = { - queryParams: { - start: firstAvailableVideo.startTimestamp, - stop: firstAvailableVideo.stopTimestamp, - playlistPosition: firstAvailableVideo.position - }, - replaceUrl: true - } - this.router.navigate([], extras) - } - }) + const obs = this.hooks.wrapObsFun( + this.videoPlaylist.getPlaylistVideos.bind(this.videoPlaylist), + { videoPlaylistId: playlist.uuid, componentPagination: this.playlistPagination }, + 'video-watch', + 'filter:api.video-watch.video-playlist-elements.get.params', + 'filter:api.video-watch.video-playlist-elements.get.result' + ) + + obs.subscribe(({ total, data: playlistElements }) => { + this.playlistElements = this.playlistElements.concat(playlistElements) + this.playlistPagination.totalItems = total + + const firstAvailableVideo = this.playlistElements.find(e => !!e.video) + if (!firstAvailableVideo) { + this.noPlaylistVideos = true + return + } + + if (position) this.updatePlaylistIndex(position) + + if (redirectToFirst) { + const extras = { + queryParams: { + start: firstAvailableVideo.startTimestamp, + stop: firstAvailableVideo.stopTimestamp, + playlistPosition: firstAvailableVideo.position + }, + replaceUrl: true + } + this.router.navigate([], extras) + } + }) } updatePlaylistIndex (position: number) { diff --git a/client/src/app/+videos/+video-watch/video-watch.component.ts b/client/src/app/+videos/+video-watch/video-watch.component.ts index acfd46a41..f0d159be3 100644 --- a/client/src/app/+videos/+video-watch/video-watch.component.ts +++ b/client/src/app/+videos/+video-watch/video-watch.component.ts @@ -455,7 +455,13 @@ export class VideoWatchComponent implements OnInit, OnDestroy { this.zone.run(() => this.theaterEnabled = enabled) }) - this.hooks.runAction('action:video-watch.player.loaded', 'video-watch', { player: this.player, videojs, video: this.video }) + this.hooks.runAction('action:video-watch.player.loaded', 'video-watch', { + player: this.player, + playlist: this.playlist, + playlistPosition: this.playlistPosition, + videojs, + video: this.video + }) }) } diff --git a/client/src/app/core/routing/menu-guard.service.ts b/client/src/app/core/routing/menu-guard.service.ts index 8c5bbfde9..58ad31cf4 100644 --- a/client/src/app/core/routing/menu-guard.service.ts +++ b/client/src/app/core/routing/menu-guard.service.ts @@ -4,11 +4,10 @@ import { MenuService } from '../menu' import { ScreenService } from '../wrappers' abstract class MenuGuard implements CanActivate, CanDeactivate { - display = true canDeactivate = this.canActivate - constructor (protected menu: MenuService, protected screen: ScreenService, display: boolean) { - this.display = display + constructor (protected menu: MenuService, protected screen: ScreenService, protected display: boolean) { + } canActivate (): boolean { diff --git a/client/src/app/helpers/utils/url.ts b/client/src/app/helpers/utils/url.ts index 82d9cc11b..b3cded8f4 100644 --- a/client/src/app/helpers/utils/url.ts +++ b/client/src/app/helpers/utils/url.ts @@ -1,19 +1,5 @@ import { environment } from '../../../environments/environment' -// Thanks: https://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript -function getParameterByName (name: string, url: string) { - if (!url) url = window.location.href - name = name.replace(/[[\]]/g, '\\$&') - - const regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)') - const results = regex.exec(url) - - if (!results) return null - if (!results[2]) return '' - - return decodeURIComponent(results[2].replace(/\+/g, ' ')) -} - function getAbsoluteAPIUrl () { let absoluteAPIUrl = environment.hmr === true ? 'http://localhost:9000' @@ -64,7 +50,6 @@ function objectToFormData (obj: any, form?: FormData, namespace?: string) { } export { - getParameterByName, objectToFormData, getAbsoluteAPIUrl, getAbsoluteEmbedUrl diff --git a/client/src/app/shared/shared-forms/markdown-textarea.component.html b/client/src/app/shared/shared-forms/markdown-textarea.component.html index 6e70e2f37..a460cb9b7 100644 --- a/client/src/app/shared/shared-forms/markdown-textarea.component.html +++ b/client/src/app/shared/shared-forms/markdown-textarea.component.html @@ -2,6 +2,7 @@ @@ -25,11 +26,11 @@
diff --git a/client/src/app/shared/shared-forms/markdown-textarea.component.ts b/client/src/app/shared/shared-forms/markdown-textarea.component.ts index 8f51d47df..dcb5d20da 100644 --- a/client/src/app/shared/shared-forms/markdown-textarea.component.ts +++ b/client/src/app/shared/shared-forms/markdown-textarea.component.ts @@ -45,6 +45,7 @@ export class MarkdownTextareaComponent implements ControlValueAccessor, OnInit { previewHTML: SafeHtml | string = '' isMaximized = false + disabled = false maximizeInText = $localize`Maximize editor` maximizeOutText = $localize`Exit maximized editor` @@ -108,6 +109,10 @@ export class MarkdownTextareaComponent implements ControlValueAccessor, OnInit { } } + setDisabledState (isDisabled: boolean) { + this.disabled = isDisabled + } + private lockBodyScroll () { this.scrollPosition = this.viewportScroller.getScrollPosition() document.getElementById('content').classList.add('lock-scroll') @@ -132,8 +137,6 @@ export class MarkdownTextareaComponent implements ControlValueAccessor, OnInit { const result = await this.customMarkdownRenderer(text) if (result instanceof HTMLElement) { - html = '' - const wrapperElement = this.previewElement.nativeElement as HTMLElement wrapperElement.innerHTML = '' wrapperElement.appendChild(result) diff --git a/client/src/app/shared/shared-forms/select/select-checkbox.component.html b/client/src/app/shared/shared-forms/select/select-checkbox.component.html index 7b49a0c01..03db2875b 100644 --- a/client/src/app/shared/shared-forms/select/select-checkbox.component.html +++ b/client/src/app/shared/shared-forms/select/select-checkbox.component.html @@ -7,6 +7,7 @@ [multiple]="true" [searchable]="true" [closeOnSelect]="false" + [disabled]="disabled" bindValue="id" bindLabel="label" diff --git a/client/src/app/shared/shared-forms/select/select-checkbox.component.ts b/client/src/app/shared/shared-forms/select/select-checkbox.component.ts index 12f697628..c9a500324 100644 --- a/client/src/app/shared/shared-forms/select/select-checkbox.component.ts +++ b/client/src/app/shared/shared-forms/select/select-checkbox.component.ts @@ -23,6 +23,8 @@ export class SelectCheckboxComponent implements OnInit, ControlValueAccessor { @Input() selectableGroupAsModel: boolean @Input() placeholder: string + disabled = false + ngOnInit () { if (!this.placeholder) this.placeholder = $localize`Add a new option` } @@ -59,6 +61,10 @@ export class SelectCheckboxComponent implements OnInit, ControlValueAccessor { this.propagateChange(this.selectedItems) } + setDisabledState (isDisabled: boolean) { + this.disabled = isDisabled + } + compareFn (item: SelectOptionsItem, selected: ItemSelectCheckboxValue) { if (typeof selected === 'string' || typeof selected === 'number') { return item.id === selected diff --git a/client/src/app/shared/shared-forms/select/select-custom-value.component.html b/client/src/app/shared/shared-forms/select/select-custom-value.component.html index 9dc8c2ec2..69fdedc10 100644 --- a/client/src/app/shared/shared-forms/select/select-custom-value.component.html +++ b/client/src/app/shared/shared-forms/select/select-custom-value.component.html @@ -5,6 +5,7 @@ [searchable]="searchable" [groupBy]="groupBy" [labelForId]="labelForId" + [disabled]="disabled" [(ngModel)]="selectedId" (ngModelChange)="onModelChange()" diff --git a/client/src/app/shared/shared-forms/select/select-custom-value.component.ts b/client/src/app/shared/shared-forms/select/select-custom-value.component.ts index bc6b863c7..636bd6101 100644 --- a/client/src/app/shared/shared-forms/select/select-custom-value.component.ts +++ b/client/src/app/shared/shared-forms/select/select-custom-value.component.ts @@ -25,6 +25,7 @@ export class SelectCustomValueComponent implements ControlValueAccessor, OnChang customValue: number | string = '' selectedId: number | string + disabled = false itemsWithCustom: SelectOptionsItem[] = [] @@ -75,4 +76,8 @@ export class SelectCustomValueComponent implements ControlValueAccessor, OnChang isCustomValue () { return this.selectedId === 'other' } + + setDisabledState (isDisabled: boolean) { + this.disabled = isDisabled + } } diff --git a/client/src/app/shared/shared-forms/select/select-options.component.html b/client/src/app/shared/shared-forms/select/select-options.component.html index 3b1761255..83c7de9f5 100644 --- a/client/src/app/shared/shared-forms/select/select-options.component.html +++ b/client/src/app/shared/shared-forms/select/select-options.component.html @@ -7,6 +7,7 @@ [labelForId]="labelForId" [searchable]="searchable" [searchFn]="searchFn" + [disabled]="disabled" bindLabel="label" bindValue="id" diff --git a/client/src/app/shared/shared-forms/select/select-options.component.ts b/client/src/app/shared/shared-forms/select/select-options.component.ts index 8482b9dea..820a82c24 100644 --- a/client/src/app/shared/shared-forms/select/select-options.component.ts +++ b/client/src/app/shared/shared-forms/select/select-options.component.ts @@ -23,6 +23,7 @@ export class SelectOptionsComponent implements ControlValueAccessor { @Input() searchFn: any selectedId: number | string + disabled = false propagateChange = (_: any) => { /* empty */ } @@ -48,4 +49,8 @@ export class SelectOptionsComponent implements ControlValueAccessor { onModelChange () { this.propagateChange(this.selectedId) } + + setDisabledState (isDisabled: boolean) { + this.disabled = isDisabled + } } diff --git a/client/src/app/shared/shared-main/video-channel/video-channel.model.ts b/client/src/app/shared/shared-main/video-channel/video-channel.model.ts index 66d4cac68..ac2679b42 100644 --- a/client/src/app/shared/shared-main/video-channel/video-channel.model.ts +++ b/client/src/app/shared/shared-main/video-channel/video-channel.model.ts @@ -41,7 +41,7 @@ export class VideoChannel extends Actor implements ServerVideoChannel { } static GET_DEFAULT_AVATAR_URL () { - return `${window.location.origin}/client/assets/images/default-avatar-videochannel.png` + return `${window.location.origin}/client/assets/images/default-avatar-video-channel.png` } constructor (hash: Partial) { diff --git a/client/src/app/shared/shared-video-playlist/video-playlist.service.ts b/client/src/app/shared/shared-video-playlist/video-playlist.service.ts index 0a01af593..76835b9fc 100644 --- a/client/src/app/shared/shared-video-playlist/video-playlist.service.ts +++ b/client/src/app/shared/shared-video-playlist/video-playlist.service.ts @@ -256,12 +256,12 @@ export class VideoPlaylistService { ) } - getPlaylistVideos ( - videoPlaylistId: number | string, + getPlaylistVideos (options: { + videoPlaylistId: number | string componentPagination: ComponentPaginationLight - ): Observable> { - const path = VideoPlaylistService.BASE_VIDEO_PLAYLIST_URL + videoPlaylistId + '/videos' - const pagination = this.restService.componentPaginationToRestPagination(componentPagination) + }): Observable> { + const path = VideoPlaylistService.BASE_VIDEO_PLAYLIST_URL + options.videoPlaylistId + '/videos' + const pagination = this.restService.componentPaginationToRestPagination(options.componentPagination) let params = new HttpParams() params = this.restService.addRestGetParams(params, pagination) diff --git a/client/src/assets/images/default-avatar-videochannel.png b/client/src/assets/images/default-avatar-video-channel.png similarity index 100% rename from client/src/assets/images/default-avatar-videochannel.png rename to client/src/assets/images/default-avatar-video-channel.png diff --git a/client/src/assets/player/p2p-media-loader/hls-plugin.ts b/client/src/assets/player/p2p-media-loader/hls-plugin.ts index a1b07aea6..17b9aba97 100644 --- a/client/src/assets/player/p2p-media-loader/hls-plugin.ts +++ b/client/src/assets/player/p2p-media-loader/hls-plugin.ts @@ -1,9 +1,9 @@ // Thanks https://github.com/streamroot/videojs-hlsjs-plugin // We duplicated this plugin to choose the hls.js version we want, because streamroot only provide a bundled file -import Hlsjs, { ErrorData, HlsConfig, Level, ManifestLoadedData } from 'hls.js' +import Hlsjs, { ErrorData, HlsConfig, Level, LevelSwitchingData, ManifestParsedData } from 'hls.js' import videojs from 'video.js' -import { HlsjsConfigHandlerOptions, QualityLevelRepresentation, QualityLevels, VideoJSTechHLS } from '../peertube-videojs-typings' +import { HlsjsConfigHandlerOptions, PeerTubeResolution, VideoJSTechHLS } from '../peertube-videojs-typings' type ErrorCounts = { [ type: string ]: number @@ -102,15 +102,10 @@ class Html5Hlsjs { private dvrDuration: number = null private edgeMargin: number = null - private handlers: { [ id in 'play' | 'playing' | 'textTracksChange' | 'audioTracksChange' ]: EventListener } = { - play: null, - playing: null, - textTracksChange: null, - audioTracksChange: null + private handlers: { [ id in 'play' ]: EventListener } = { + play: null } - private uiTextTrackHandled = false - constructor (vjs: typeof videojs, source: videojs.Tech.SourceObject, tech: videojs.Tech) { this.vjs = vjs this.source = source @@ -177,10 +172,6 @@ class Html5Hlsjs { // See comment for `initialize` method. dispose () { this.videoElement.removeEventListener('play', this.handlers.play) - this.videoElement.removeEventListener('playing', this.handlers.playing) - - this.player.textTracks().removeEventListener('change', this.handlers.textTracksChange) - this.uiTextTrackHandled = false this.hls.destroy() } @@ -281,11 +272,7 @@ class Html5Hlsjs { } } - private switchQuality (qualityId: number) { - this.hls.currentLevel = qualityId - } - - private _levelLabel (level: Level) { + private buildLevelLabel (level: Level) { if (this.player.srOptions_.levelLabelHandler) { return this.player.srOptions_.levelLabelHandler(level as any) } @@ -294,167 +281,37 @@ class Html5Hlsjs { if (level.width) return Math.round(level.width * 9 / 16) + 'p' if (level.bitrate) return (level.bitrate / 1000) + 'kbps' - return 0 - } - - private _relayQualityChange (qualityLevels: QualityLevels) { - // Determine if it is "Auto" (all tracks enabled) - let isAuto = true - - for (let i = 0; i < qualityLevels.length; i++) { - if (!qualityLevels[i]._enabled) { - isAuto = false - break - } - } - - // Interact with ME - if (isAuto) { - this.hls.currentLevel = -1 - return - } - - // Find ID of highest enabled track - let selectedTrack: number - - for (selectedTrack = qualityLevels.length - 1; selectedTrack >= 0; selectedTrack--) { - if (qualityLevels[selectedTrack]._enabled) { - break - } - } - - this.hls.currentLevel = selectedTrack - } - - private _handleQualityLevels () { - if (!this.metadata) return - - const qualityLevels = this.player.qualityLevels?.() - if (!qualityLevels) return - - for (let i = 0; i < this.metadata.levels.length; i++) { - const details = this.metadata.levels[i] - const representation: QualityLevelRepresentation = { - id: i, - width: details.width, - height: details.height, - bandwidth: details.bitrate, - bitrate: details.bitrate, - _enabled: true - } - - const self = this - representation.enabled = function (this: QualityLevels, level: number, toggle?: boolean) { - // Brightcove switcher works TextTracks-style (enable tracks that it wants to ABR on) - if (typeof toggle === 'boolean') { - this[level]._enabled = toggle - self._relayQualityChange(this) - } - - return this[level]._enabled - } - - qualityLevels.addQualityLevel(representation) - } + return '0' } private _notifyVideoQualities () { if (!this.metadata) return - const cleanTracklist = [] - if (this.metadata.levels.length > 1) { - const autoLevel = { - id: -1, - label: 'auto', - selected: this.hls.manualLevel === -1 - } - cleanTracklist.push(autoLevel) - } + const resolutions: PeerTubeResolution[] = [] this.metadata.levels.forEach((level, index) => { - // Don't write in level (shared reference with Hls.js) - const quality = { + resolutions.push({ id: index, - selected: index === this.hls.manualLevel, - label: this._levelLabel(level) - } - - cleanTracklist.push(quality) + height: level.height, + width: level.width, + bitrate: level.bitrate, + label: this.buildLevelLabel(level), + selected: level.id === this.hls.manualLevel, + + selectCallback: () => { + this.hls.currentLevel = index + } + }) }) - const payload = { - qualityData: { video: cleanTracklist }, - qualitySwitchCallback: this.switchQuality.bind(this) - } - - this.tech.trigger('loadedqualitydata', payload) - - // Self-de-register so we don't raise the payload multiple times - this.videoElement.removeEventListener('playing', this.handlers.playing) - } - - private _updateSelectedAudioTrack () { - const playerAudioTracks = this.tech.audioTracks() - for (let j = 0; j < playerAudioTracks.length; j++) { - // FIXME: typings - if ((playerAudioTracks[j] as any).enabled) { - this.hls.audioTrack = j - break - } - } - } - - private _onAudioTracks () { - const hlsAudioTracks = this.hls.audioTracks - const playerAudioTracks = this.tech.audioTracks() - - if (hlsAudioTracks.length > 1 && playerAudioTracks.length === 0) { - // Add Hls.js audio tracks if not added yet - for (let i = 0; i < hlsAudioTracks.length; i++) { - playerAudioTracks.addTrack(new this.vjs.AudioTrack({ - id: i.toString(), - kind: 'alternative', - label: hlsAudioTracks[i].name || hlsAudioTracks[i].lang, - language: hlsAudioTracks[i].lang, - enabled: i === this.hls.audioTrack - })) - } - - // Handle audio track change event - this.handlers.audioTracksChange = this._updateSelectedAudioTrack.bind(this) - playerAudioTracks.addEventListener('change', this.handlers.audioTracksChange) - } - } - - private _getTextTrackLabel (textTrack: TextTrack) { - // Label here is readable label and is optional (used in the UI so if it is there it should be different) - return textTrack.label ? textTrack.label : textTrack.language - } - - private _isSameTextTrack (track1: TextTrack, track2: TextTrack) { - return this._getTextTrackLabel(track1) === this._getTextTrackLabel(track2) && - track1.kind === track2.kind - } - - private _updateSelectedTextTrack () { - const playerTextTracks = this.player.textTracks() - let activeTrack: TextTrack = null - - for (let j = 0; j < playerTextTracks.length; j++) { - if (playerTextTracks[j].mode === 'showing') { - activeTrack = playerTextTracks[j] - break - } - } + resolutions.push({ + id: -1, + label: this.player.localize('Auto'), + selected: true, + selectCallback: () => this.hls.currentLevel = -1 + }) - const hlsjsTracks = this.videoElement.textTracks - for (let k = 0; k < hlsjsTracks.length; k++) { - if (hlsjsTracks[k].kind === 'subtitles' || hlsjsTracks[k].kind === 'captions') { - hlsjsTracks[k].mode = activeTrack && this._isSameTextTrack(hlsjsTracks[k], activeTrack) - ? 'showing' - : 'disabled' - } - } + this.player.peertubeResolutions().add(resolutions) } private _startLoad () { @@ -472,97 +329,10 @@ class Html5Hlsjs { return result } - private _filterDisplayableTextTracks (textTracks: TextTrackList) { - const displayableTracks = [] - - // Filter out tracks that is displayable (captions or subtitles) - for (let idx = 0; idx < textTracks.length; idx++) { - if (textTracks[idx].kind === 'subtitles' || textTracks[idx].kind === 'captions') { - displayableTracks.push(textTracks[idx]) - } - } - - return displayableTracks - } - - private _updateTextTrackList () { - const displayableTracks = this._filterDisplayableTextTracks(this.videoElement.textTracks) - const playerTextTracks = this.player.textTracks() - - // Add stubs to make the caption switcher shows up - // Adding the Hls.js text track in will make us have double captions - for (let idx = 0; idx < displayableTracks.length; idx++) { - let isAdded = false - - for (let jdx = 0; jdx < playerTextTracks.length; jdx++) { - if (this._isSameTextTrack(displayableTracks[idx], playerTextTracks[jdx])) { - isAdded = true - break - } - } - - if (!isAdded) { - const hlsjsTextTrack = displayableTracks[idx] - this.player.addRemoteTextTrack({ - kind: hlsjsTextTrack.kind as videojs.TextTrack.Kind, - label: this._getTextTrackLabel(hlsjsTextTrack), - language: hlsjsTextTrack.language, - srclang: hlsjsTextTrack.language - }, false) - } - } - - // Handle UI switching - this._updateSelectedTextTrack() - - if (!this.uiTextTrackHandled) { - this.handlers.textTracksChange = this._updateSelectedTextTrack.bind(this) - playerTextTracks.addEventListener('change', this.handlers.textTracksChange) - - this.uiTextTrackHandled = true - } - } - - private _onMetaData (_event: any, data: ManifestLoadedData) { + private _onMetaData (_event: any, data: ManifestParsedData) { // This could arrive before 'loadedqualitydata' handlers is registered, remember it so we can raise it later - this.metadata = data as any - this._handleQualityLevels() - } - - private _createCueHandler (captionConfig: any) { - return { - newCue: (track: any, startTime: number, endTime: number, captionScreen: { rows: any[] }) => { - let row: any - let cue: VTTCue - let text: string - const VTTCue = (window as any).VTTCue || (window as any).TextTrackCue - - for (let r = 0; r < captionScreen.rows.length; r++) { - row = captionScreen.rows[r] - text = '' - - if (!row.isEmpty()) { - for (let c = 0; c < row.chars.length; c++) { - text += row.chars[c].ucharj - } - - cue = new VTTCue(startTime, endTime, text.trim()) - - // typeof null === 'object' - if (captionConfig != null && typeof captionConfig === 'object') { - // Copy client overridden property into the cue object - const configKeys = Object.keys(captionConfig) - - for (let k = 0; k < configKeys.length; k++) { - cue[configKeys[k]] = captionConfig[configKeys[k]] - } - } - track.addCue(cue) - if (endTime === startTime) track.addCue(new VTTCue(endTime + 5, '')) - } - } - } - } + this.metadata = data + this._notifyVideoQualities() } private _initHlsjs () { @@ -577,11 +347,6 @@ class Html5Hlsjs { this.hlsjsConfig.autoStartLoad = false } - const captionConfig = srOptions_?.captionConfig || techOptions.captionConfig - if (captionConfig) { - this.hlsjsConfig.cueHandler = this._createCueHandler(captionConfig) - } - // If the user explicitly sets autoStartLoad to false, we're not going to enter the if block above // That's why we have a separate if block here to set the 'play' listener if (this.hlsjsConfig.autoStartLoad === false) { @@ -589,17 +354,12 @@ class Html5Hlsjs { this.videoElement.addEventListener('play', this.handlers.play) } - // _notifyVideoQualities sometimes runs before the quality picker event handler is registered -> no video switcher - this.handlers.playing = this._notifyVideoQualities.bind(this) - this.videoElement.addEventListener('playing', this.handlers.playing) - this.hls = new Hlsjs(this.hlsjsConfig) this._executeHooksFor('beforeinitialize') this.hls.on(Hlsjs.Events.ERROR, (event, data) => this._onError(event, data)) - this.hls.on(Hlsjs.Events.AUDIO_TRACKS_UPDATED, () => this._onAudioTracks()) - this.hls.on(Hlsjs.Events.MANIFEST_PARSED, (event, data) => this._onMetaData(event, data as any)) // FIXME: typings + this.hls.on(Hlsjs.Events.MANIFEST_PARSED, (event, data) => this._onMetaData(event, data)) this.hls.on(Hlsjs.Events.LEVEL_LOADED, (event, data) => { // The DVR plugin will auto seek to "live edge" on start up if (this.hlsjsConfig.liveSyncDuration) { @@ -612,12 +372,25 @@ class Html5Hlsjs { this.dvrDuration = data.details.totalduration this._duration = this.isLive ? Infinity : data.details.totalduration }) + this.hls.once(Hlsjs.Events.FRAG_LOADED, () => { // Emit custom 'loadedmetadata' event for parity with `videojs-contrib-hls` // Ref: https://github.com/videojs/videojs-contrib-hls#loadedmetadata this.tech.trigger('loadedmetadata') }) + this.hls.on(Hlsjs.Events.LEVEL_SWITCHING, (_e, data: LevelSwitchingData) => { + const resolutionId = this.hls.autoLevelEnabled + ? -1 + : data.level + + const autoResolutionChosenId = this.hls.autoLevelEnabled + ? data.level + : -1 + + this.player.peertubeResolutions().select({ id: resolutionId, autoResolutionChosenId, byEngine: true }) + }) + this.hls.attachMedia(this.videoElement) this.hls.loadSource(this.source.src) diff --git a/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts b/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts index acd40636e..d917fda03 100644 --- a/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts +++ b/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts @@ -116,14 +116,6 @@ class P2pMediaLoaderPlugin extends Plugin { const options = this.player.tech(true).options_ as any this.p2pEngine = options.hlsjsConfig.loader.getEngine() - this.hlsjs.on(Hlsjs.Events.LEVEL_SWITCHING, (_: any, data: any) => { - this.trigger('resolutionChange', { auto: this.hlsjs.autoLevelEnabled, resolutionId: data.height }) - }) - - this.hlsjs.on(Hlsjs.Events.MANIFEST_LOADED, (_: any, data: any) => { - this.trigger('resolutionsLoaded') - }) - this.p2pEngine.on(Events.SegmentError, (segment: Segment, err) => { console.error('Segment error.', segment, err) diff --git a/client/src/assets/player/peertube-player-manager.ts b/client/src/assets/player/peertube-player-manager.ts index f3c21fc4c..230d6298b 100644 --- a/client/src/assets/player/peertube-player-manager.ts +++ b/client/src/assets/player/peertube-player-manager.ts @@ -1,13 +1,13 @@ import 'videojs-hotkeys/videojs.hotkeys' import 'videojs-dock' import 'videojs-contextmenu-pt' -import 'videojs-contrib-quality-levels' import './upnext/end-card' import './upnext/upnext-plugin' import './stats/stats-card' import './stats/stats-plugin' import './bezels/bezels-plugin' import './peertube-plugin' +import './peertube-resolutions-plugin' import './videojs-components/next-previous-video-button' import './videojs-components/p2p-info-button' import './videojs-components/peertube-link-button' diff --git a/client/src/assets/player/peertube-plugin.ts b/client/src/assets/player/peertube-plugin.ts index b4841b235..9b4dc9bd5 100644 --- a/client/src/assets/player/peertube-plugin.ts +++ b/client/src/assets/player/peertube-plugin.ts @@ -1,4 +1,3 @@ -import './videojs-components/settings-menu-button' import videojs from 'video.js' import { timeToInt } from '@shared/core-utils' import { @@ -10,7 +9,7 @@ import { saveVideoWatchHistory, saveVolumeInStore } from './peertube-player-local-storage' -import { PeerTubePluginOptions, ResolutionUpdateData, UserWatching, VideoJSCaption } from './peertube-videojs-typings' +import { PeerTubePluginOptions, UserWatching, VideoJSCaption } from './peertube-videojs-typings' import { isMobile } from './utils' const Plugin = videojs.getPlugin('plugin') @@ -27,7 +26,6 @@ class PeerTubePlugin extends Plugin { private videoViewInterval: any private userWatchingVideoInterval: any - private lastResolutionChange: ResolutionUpdateData private isLive: boolean @@ -54,22 +52,6 @@ class PeerTubePlugin extends Plugin { this.player.ready(() => { const playerOptions = this.player.options_ - if (options.mode === 'webtorrent') { - this.player.webtorrent().on('resolutionChange', (_: any, d: any) => this.handleResolutionChange(d)) - this.player.webtorrent().on('autoResolutionChange', (_: any, d: any) => this.trigger('autoResolutionChange', d)) - } - - if (options.mode === 'p2p-media-loader') { - this.player.p2pMediaLoader().on('resolutionChange', (_: any, d: any) => this.handleResolutionChange(d)) - } - - this.player.tech(true).on('loadedqualitydata', () => { - setTimeout(() => { - // Replay a resolution change, now we loaded all quality data - if (this.lastResolutionChange) this.handleResolutionChange(this.lastResolutionChange) - }, 0) - }) - const volume = getStoredVolume() if (volume !== undefined) this.player.volume(volume) @@ -97,7 +79,7 @@ class PeerTubePlugin extends Plugin { }) } - this.player.textTracks().on('change', () => { + this.player.textTracks().addEventListener('change', () => { const showing = this.player.textTracks().tracks_.find(t => { return t.kind === 'captions' && t.mode === 'showing' }) @@ -216,22 +198,6 @@ class PeerTubePlugin extends Plugin { return fetch(url, { method: 'PUT', body, headers }) } - private handleResolutionChange (data: ResolutionUpdateData) { - this.lastResolutionChange = data - - const qualityLevels = this.player.qualityLevels() - - for (let i = 0; i < qualityLevels.length; i++) { - if (qualityLevels[i].height === data.resolutionId) { - data.id = qualityLevels[i].id - break - } - } - - console.log('Resolution changed.', data) - this.trigger('resolutionChange', data) - } - private listenControlBarMouse () { this.player.controlBar.on('mouseenter', () => { this.mouseInControlBar = true diff --git a/client/src/assets/player/peertube-resolutions-plugin.ts b/client/src/assets/player/peertube-resolutions-plugin.ts new file mode 100644 index 000000000..cc36f18f3 --- /dev/null +++ b/client/src/assets/player/peertube-resolutions-plugin.ts @@ -0,0 +1,88 @@ +import videojs from 'video.js' +import { PeerTubeResolution } from './peertube-videojs-typings' + +const Plugin = videojs.getPlugin('plugin') + +class PeerTubeResolutionsPlugin extends Plugin { + private currentSelection: PeerTubeResolution + private resolutions: PeerTubeResolution[] = [] + + private autoResolutionChosenId: number + private autoResolutionEnabled = true + + add (resolutions: PeerTubeResolution[]) { + for (const r of resolutions) { + this.resolutions.push(r) + } + + this.currentSelection = this.getSelected() + + this.sort() + this.trigger('resolutionsAdded') + } + + getResolutions () { + return this.resolutions + } + + getSelected () { + return this.resolutions.find(r => r.selected) + } + + getAutoResolutionChosen () { + return this.resolutions.find(r => r.id === this.autoResolutionChosenId) + } + + select (options: { + id: number + byEngine: boolean + autoResolutionChosenId?: number + }) { + const { id, autoResolutionChosenId, byEngine } = options + + if (this.currentSelection?.id === id && this.autoResolutionChosenId === autoResolutionChosenId) return + + this.autoResolutionChosenId = autoResolutionChosenId + + for (const r of this.resolutions) { + r.selected = r.id === id + + if (r.selected) { + this.currentSelection = r + + if (!byEngine) r.selectCallback() + } + } + + this.trigger('resolutionChanged') + } + + disableAutoResolution () { + this.autoResolutionEnabled = false + this.trigger('autoResolutionEnabledChanged') + } + + enabledAutoResolution () { + this.autoResolutionEnabled = true + this.trigger('autoResolutionEnabledChanged') + } + + isAutoResolutionEnabeld () { + return this.autoResolutionEnabled + } + + private sort () { + this.resolutions.sort((a, b) => { + if (a.id === -1) return 1 + if (b.id === -1) return -1 + + if (a.height > b.height) return -1 + if (a.height === b.height) return 0 + return 1 + }) + } + +} + +videojs.registerPlugin('peertubeResolutions', PeerTubeResolutionsPlugin) +export { PeerTubeResolutionsPlugin } diff --git a/client/src/assets/player/peertube-videojs-typings.ts b/client/src/assets/player/peertube-videojs-typings.ts index 97828c802..bd6db4ffc 100644 --- a/client/src/assets/player/peertube-videojs-typings.ts +++ b/client/src/assets/player/peertube-videojs-typings.ts @@ -1,6 +1,3 @@ -// FIXME: lint -/* eslint-disable @typescript-eslint/ban-types */ - import { HlsConfig, Level } from 'hls.js' import videojs from 'video.js' import { VideoFile, VideoPlaylist, VideoPlaylistElement } from '@shared/models' @@ -8,11 +5,12 @@ import { P2pMediaLoaderPlugin } from './p2p-media-loader/p2p-media-loader-plugin import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager' import { PlayerMode } from './peertube-player-manager' import { PeerTubePlugin } from './peertube-plugin' +import { PeerTubeResolutionsPlugin } from './peertube-resolutions-plugin' import { PlaylistPlugin } from './playlist/playlist-plugin' -import { EndCardOptions } from './upnext/end-card' import { StatsCardOptions } from './stats/stats-card' -import { WebTorrentPlugin } from './webtorrent/webtorrent-plugin' import { StatsForNerdsPlugin } from './stats/stats-plugin' +import { EndCardOptions } from './upnext/end-card' +import { WebTorrentPlugin } from './webtorrent/webtorrent-plugin' declare module 'video.js' { @@ -37,16 +35,15 @@ declare module 'video.js' { p2pMediaLoader (): P2pMediaLoaderPlugin + peertubeResolutions (): PeerTubeResolutionsPlugin + contextmenuUI (options: any): any bezels (): void stats (options?: StatsCardOptions): StatsForNerdsPlugin - qualityLevels (): QualityLevels - textTracks (): TextTrackList & { - on: Function tracks_: (TextTrack & { id: string, label: string, src: string })[] } @@ -69,24 +66,16 @@ export interface HlsjsConfigHandlerOptions { levelLabelHandler?: (level: Level) => string } -type QualityLevelRepresentation = { +type PeerTubeResolution = { id: number - height: number + height?: number label?: string width?: number - bandwidth?: number bitrate?: number - enabled?: Function - _enabled: boolean -} - -type QualityLevels = QualityLevelRepresentation[] & { - selectedIndex: number - selectedIndex_: number - - addQualityLevel (representation: QualityLevelRepresentation): void + selected: boolean + selectCallback: () => void } type VideoJSCaption = { @@ -131,7 +120,7 @@ type PlaylistPluginOptions = { type NextPreviousVideoButtonOptions = { type: 'next' | 'previous' - handler: Function + handler: () => void isDisabled: () => boolean } @@ -214,7 +203,7 @@ type PlayerNetworkInfo = { type PlaylistItemOptions = { element: VideoPlaylistElement - onClicked: Function + onClicked: () => void } export { @@ -229,9 +218,8 @@ export { PeerTubePluginOptions, WebtorrentPluginOptions, P2PMediaLoaderPluginOptions, + PeerTubeResolution, VideoJSPluginOptions, LoadedQualityData, - QualityLevelRepresentation, - PeerTubeLinkButtonOptions, - QualityLevels + PeerTubeLinkButtonOptions } diff --git a/client/src/assets/player/utils.ts b/client/src/assets/player/utils.ts index f2e9adb14..cbca1065f 100644 --- a/client/src/assets/player/utils.ts +++ b/client/src/assets/player/utils.ts @@ -1,4 +1,3 @@ -import { escapeHTML } from '@shared/core-utils/renderer' import { VideoFile } from '@shared/models' function toTitleCase (str: string) { @@ -44,14 +43,15 @@ function isMobile () { } function buildVideoOrPlaylistEmbed (embedUrl: string, embedTitle: string) { - const title = escapeHTML(embedTitle) - - return '' + const iframe = document.createElement('iframe') + + iframe.title = embedTitle + iframe.src = embedUrl + iframe.frameBorder = '0' + iframe.allowFullscreen = true + iframe.sandbox.add('allow-same-origin', 'allow-scripts', 'allow-popups') + + return iframe.outerHTML } function videoFileMaxByResolution (files: VideoFile[]) { diff --git a/client/src/assets/player/videojs-components/resolution-menu-button.ts b/client/src/assets/player/videojs-components/resolution-menu-button.ts index 98e7f56fc..8bd5b4f03 100644 --- a/client/src/assets/player/videojs-components/resolution-menu-button.ts +++ b/client/src/assets/player/videojs-components/resolution-menu-button.ts @@ -1,6 +1,4 @@ import videojs from 'video.js' - -import { LoadedQualityData } from '../peertube-videojs-typings' import { ResolutionMenuItem } from './resolution-menu-item' const Menu = videojs.getComponent('Menu') @@ -13,9 +11,12 @@ class ResolutionMenuButton extends MenuButton { this.controlText('Quality') - player.tech(true).on('loadedqualitydata', (e: any, data: any) => this.buildQualities(data)) + player.peertubeResolutions().on('resolutionsAdded', () => this.buildQualities()) - player.peertube().on('resolutionChange', () => setTimeout(() => this.trigger('updateLabel'), 0)) + // For parent + player.peertubeResolutions().on('resolutionChanged', () => { + setTimeout(() => this.trigger('labelUpdated')) + }) } createEl () { @@ -58,20 +59,8 @@ class ResolutionMenuButton extends MenuButton { }) } - private buildQualities (data: LoadedQualityData) { - // The automatic resolution item will need other labels - const labels: { [ id: number ]: string } = {} - - data.qualityData.video.sort((a, b) => { - if (a.id > b.id) return -1 - if (a.id === b.id) return 0 - return 1 - }) - - for (const d of data.qualityData.video) { - // Skip auto resolution, we'll add it ourselves - if (d.id === -1) continue - + private buildQualities () { + for (const d of this.player().peertubeResolutions().getResolutions()) { const label = d.label === '0p' ? this.player().localize('Audio-only') : d.label @@ -81,25 +70,11 @@ class ResolutionMenuButton extends MenuButton { { id: d.id, label, - selected: d.selected, - callback: data.qualitySwitchCallback + selected: d.selected }) ) - - labels[d.id] = d.label } - this.menu.addChild(new ResolutionMenuItem( - this.player_, - { - id: -1, - label: this.player_.localize('Auto'), - labels, - callback: data.qualitySwitchCallback, - selected: true // By default, in auto mode - } - )) - for (const m of this.menu.children()) { this.addClickListener(m) } diff --git a/client/src/assets/player/videojs-components/resolution-menu-item.ts b/client/src/assets/player/videojs-components/resolution-menu-item.ts index c1f502600..6047f52f7 100644 --- a/client/src/assets/player/videojs-components/resolution-menu-item.ts +++ b/client/src/assets/player/videojs-components/resolution-menu-item.ts @@ -1,82 +1,72 @@ import videojs from 'video.js' -import { AutoResolutionUpdateData, ResolutionUpdateData } from '../peertube-videojs-typings' const MenuItem = videojs.getComponent('MenuItem') export interface ResolutionMenuItemOptions extends videojs.MenuItemOptions { - labels?: { [id: number]: string } id: number - callback: (resolutionId: number, type: 'video') => void } class ResolutionMenuItem extends MenuItem { private readonly resolutionId: number private readonly label: string - // Only used for the automatic item - private readonly labels: { [id: number]: string } - private readonly callback: (resolutionId: number, type: 'video') => void - private autoResolutionPossible: boolean - private currentResolutionLabel: string + private autoResolutionEnabled: boolean + private autoResolutionChosen: string constructor (player: videojs.Player, options?: ResolutionMenuItemOptions) { options.selectable = true super(player, options) - this.autoResolutionPossible = true - this.currentResolutionLabel = '' + this.autoResolutionEnabled = true + this.autoResolutionChosen = '' this.resolutionId = options.id this.label = options.label - this.labels = options.labels - this.callback = options.callback - player.peertube().on('resolutionChange', (_: any, data: ResolutionUpdateData) => this.updateSelection(data)) + player.peertubeResolutions().on('resolutionChanged', () => this.updateSelection()) // We only want to disable the "Auto" item if (this.resolutionId === -1) { - player.peertube().on('autoResolutionChange', (_: any, data: AutoResolutionUpdateData) => this.updateAutoResolution(data)) + player.peertubeResolutions().on('autoResolutionEnabledChanged', () => this.updateAutoResolution()) } } handleClick (event: any) { // Auto button disabled? - if (this.autoResolutionPossible === false && this.resolutionId === -1) return + if (this.autoResolutionEnabled === false && this.resolutionId === -1) return super.handleClick(event) - this.callback(this.resolutionId, 'video') + this.player().peertubeResolutions().select({ id: this.resolutionId, byEngine: false }) } - updateSelection (data: ResolutionUpdateData) { - if (this.resolutionId === -1) { - this.currentResolutionLabel = this.labels[data.id] - } + updateSelection () { + const selectedResolution = this.player().peertubeResolutions().getSelected() - // Automatic resolution only - if (data.auto === true) { - this.selected(this.resolutionId === -1) - return + if (this.resolutionId === -1) { + this.autoResolutionChosen = this.player().peertubeResolutions().getAutoResolutionChosen()?.label } - this.selected(this.resolutionId === data.id) + this.selected(this.resolutionId === selectedResolution.id) } - updateAutoResolution (data: AutoResolutionUpdateData) { + updateAutoResolution () { + const enabled = this.player().peertubeResolutions().isAutoResolutionEnabeld() + // Check if the auto resolution is enabled or not - if (data.possible === false) { + if (enabled === false) { this.addClass('disabled') } else { this.removeClass('disabled') } - this.autoResolutionPossible = data.possible + this.autoResolutionEnabled = enabled } getLabel () { if (this.resolutionId === -1) { - return this.label + ' ' + this.currentResolutionLabel + '' + return this.label + ' ' + this.autoResolutionChosen + '' } return this.label diff --git a/client/src/assets/player/videojs-components/settings-menu-item.ts b/client/src/assets/player/videojs-components/settings-menu-item.ts index 1871d41f8..48fed0fd9 100644 --- a/client/src/assets/player/videojs-components/settings-menu-item.ts +++ b/client/src/assets/player/videojs-components/settings-menu-item.ts @@ -248,7 +248,7 @@ class SettingsMenuItem extends MenuItem { } build () { - this.subMenu.on('updateLabel', () => { + this.subMenu.on('labelUpdated', () => { this.update() }) this.subMenu.on('menuChanged', () => { diff --git a/client/src/assets/player/webtorrent/webtorrent-plugin.ts b/client/src/assets/player/webtorrent/webtorrent-plugin.ts index 0587ddee6..1a1cd7f1a 100644 --- a/client/src/assets/player/webtorrent/webtorrent-plugin.ts +++ b/client/src/assets/player/webtorrent/webtorrent-plugin.ts @@ -9,7 +9,7 @@ import { getStoredVolume, saveAverageBandwidth } from '../peertube-player-local-storage' -import { LoadedQualityData, PlayerNetworkInfo, WebtorrentPluginOptions } from '../peertube-videojs-typings' +import { PeerTubeResolution, PlayerNetworkInfo, WebtorrentPluginOptions } from '../peertube-videojs-typings' import { getRtcConfig, isIOS, videoFileMaxByResolution, videoFileMinByResolution } from '../utils' import { PeertubeChunkStore } from './peertube-chunk-store' import { renderVideo } from './video-renderer' @@ -175,11 +175,10 @@ class WebTorrentPlugin extends Plugin { return done() }) - this.changeQuality() - this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.currentVideoFile.resolution.id }) + this.selectAppropriateResolution(true) } - updateResolution (resolutionId: number, delay = 0) { + updateEngineResolution (resolutionId: number, delay = 0) { // Remember player state const currentTime = this.player.currentTime() const isPaused = this.player.paused() @@ -219,17 +218,10 @@ class WebTorrentPlugin extends Plugin { } } - enableAutoResolution () { - this.autoResolution = true - this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.getCurrentResolutionId() }) - } - - disableAutoResolution (forbid = false) { - if (forbid === true) this.autoResolutionPossible = false - + disableAutoResolution () { this.autoResolution = false - this.trigger('autoResolutionChange', { possible: this.autoResolutionPossible }) - this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.getCurrentResolutionId() }) + this.autoResolutionPossible = false + this.player.peertubeResolutions().disableAutoResolution() } isAutoResolutionPossible () { @@ -244,6 +236,22 @@ class WebTorrentPlugin extends Plugin { return this.currentVideoFile } + changeQuality (id: number) { + if (id === -1) { + if (this.autoResolutionPossible === true) { + this.autoResolution = true + + this.selectAppropriateResolution(false) + } + + return + } + + this.autoResolution = false + this.updateEngineResolution(id) + this.selectAppropriateResolution(false) + } + private addTorrent ( magnetOrTorrentUrl: string, previousVideoFile: VideoFile, @@ -466,7 +474,7 @@ class WebTorrentPlugin extends Plugin { } if (changeResolution === true) { - this.updateResolution(file.resolution.id, changeResolutionDelay) + this.updateEngineResolution(file.resolution.id, changeResolutionDelay) // Wait some seconds in observation of our new resolution this.isAutoResolutionObservation = true @@ -516,7 +524,7 @@ class WebTorrentPlugin extends Plugin { private fallbackToHttp (options: PlayOptions, done?: (err?: Error) => void) { const paused = this.player.paused() - this.disableAutoResolution(true) + this.disableAutoResolution() this.flushVideoFile(this.currentVideoFile, true) this.torrent = null @@ -528,7 +536,7 @@ class WebTorrentPlugin extends Plugin { this.player.src = this.savePlayerSrcFunction this.player.src(httpUrl) - this.changeQuality() + this.selectAppropriateResolution(true) // We changed the source, so reinit captions this.player.trigger('sourcechange') @@ -601,32 +609,22 @@ class WebTorrentPlugin extends Plugin { } private buildQualities () { - const qualityLevelsPayload = [] - - for (const file of this.videoFiles) { - const representation = { - id: file.resolution.id, - label: this.buildQualityLabel(file), - height: file.resolution.id, - _enabled: true - } - - this.player.qualityLevels().addQualityLevel(representation) - - qualityLevelsPayload.push({ - id: representation.id, - label: representation.label, - selected: false - }) - } + const resolutions: PeerTubeResolution[] = this.videoFiles.map(file => ({ + id: file.resolution.id, + label: this.buildQualityLabel(file), + height: file.resolution.id, + selected: false, + selectCallback: () => this.changeQuality(file.resolution.id) + })) + + resolutions.push({ + id: -1, + label: this.player.localize('Auto'), + selected: true, + selectCallback: () => this.changeQuality(-1) + }) - const payload: LoadedQualityData = { - qualitySwitchCallback: (d: any) => this.qualitySwitchCallback(d), - qualityData: { - video: qualityLevelsPayload - } - } - this.player.tech(true).trigger('loadedqualitydata', payload) + this.player.peertubeResolutions().add(resolutions) } private buildQualityLabel (file: VideoFile) { @@ -639,29 +637,16 @@ class WebTorrentPlugin extends Plugin { return label } - private qualitySwitchCallback (id: number) { - if (id === -1) { - if (this.autoResolutionPossible === true) this.enableAutoResolution() - return - } - - this.disableAutoResolution() - this.updateResolution(id) - } - - private changeQuality () { - const resolutionId = this.currentVideoFile.resolution.id as number - const qualityLevels = this.player.qualityLevels() + private selectAppropriateResolution (byEngine: boolean) { + const resolution = this.autoResolution + ? -1 + : this.getCurrentResolutionId() - if (resolutionId === -1) { - qualityLevels.selectedIndex = -1 - return - } + const autoResolutionChosen = this.autoResolution + ? this.getCurrentResolutionId() + : undefined - for (let i = 0; i < qualityLevels.length; i++) { - const q = qualityLevels[i] - if (q.height === resolutionId) qualityLevels.selectedIndex_ = i - } + this.player.peertubeResolutions().select({ id: resolution, autoResolutionChosenId: autoResolutionChosen, byEngine }) } } diff --git a/client/src/locale/angular.ar.xlf b/client/src/locale/angular.ar.xlf index a64bf6cfd..9535d9e94 100644 --- a/client/src/locale/angular.ar.xlf +++ b/client/src/locale/angular.ar.xlf @@ -5,65 +5,64 @@ Close the left menu أغلق القائمة اليسرى - - src/app/app.component.ts133 + src/app/app.component.ts133 + Open the left menu افتح القائمة اليسرى - - src/app/app.component.ts135 + src/app/app.component.ts135 + - - - - - - - - - - - - - src/app/+videos/+video-watch/video-watch.component.html77src/app/menu/menu.component.html105src/app/shared/shared-main/buttons/action-dropdown.component.html22src/app/shared/shared-main/misc/top-menu-dropdown.component.html14src/app/shared/shared-main/misc/top-menu-dropdown.component.html24src/app/shared/shared-video-miniature/video-download.component.html27src/app/shared/shared-video-miniature/video-download.component.html52src/app/shared/shared-video-miniature/video-download.component.html78src/app/shared/shared-video-miniature/video-download.component.html89src/app/shared/shared-video-miniature/video-download.component.html101src/app/shared/shared-video-miniature/videos-selection.component.html1 + src/app/+videos/+video-watch/video-watch.component.html77 + src/app/menu/menu.component.html105 + src/app/shared/shared-main/buttons/action-dropdown.component.html22 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html14 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html24 + src/app/shared/shared-video-miniature/video-download.component.html27 + src/app/shared/shared-video-miniature/video-download.component.html52 + src/app/shared/shared-video-miniature/video-download.component.html78 + src/app/shared/shared-video-miniature/video-download.component.html89 + src/app/shared/shared-video-miniature/video-download.component.html101 + src/app/shared/shared-video-miniature/videos-selection.component.html1 + My watch history سجل مشاهداتي - - - src/app/+my-library/my-history/my-history.component.html3src/app/+my-library/my-history/my-history.component.ts68 + src/app/+my-library/my-history/my-history.component.html3 + src/app/+my-library/my-history/my-history.component.ts68 + Delete احذف - - - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts88src/app/+admin/moderation/video-block-list/video-block-list.component.ts92src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164src/app/+admin/users/user-list/user-list.component.ts81src/app/+admin/users/user-list/user-list.component.ts195src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.html50src/app/+my-library/my-videos/my-videos.component.ts117src/app/+my-library/my-videos/my-videos.component.ts144src/app/+my-library/my-videos/my-videos.component.ts185src/app/+videos/+video-edit/shared/video-edit.component.html178src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts145src/app/shared/shared-abuse-list/abuse-list-table.component.ts388src/app/shared/shared-abuse-list/abuse-list-table.component.ts423src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts88 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts92 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164 + src/app/+admin/users/user-list/user-list.component.ts81 + src/app/+admin/users/user-list/user-list.component.ts195 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.html50 + src/app/+my-library/my-videos/my-videos.component.ts117 + src/app/+my-library/my-videos/my-videos.component.ts144 + src/app/+my-library/my-videos/my-videos.component.ts185 + src/app/+videos/+video-edit/shared/video-edit.component.html178 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts388 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts423 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + Only live videos مقاطع الفيديو المباشرة فقط @@ -189,7 +188,7 @@ mentioned you on video - mentioned you on video + ذكرك في فيديو src/app/shared/shared-main/users/user-notifications.component.html 164 @@ -207,7 +206,7 @@ A new version of the plugin/theme is available: - A new version of the plugin/theme is available: + تتوفر نخسة أحدث لسمة/إضافة src/app/shared/shared-main/users/user-notifications.component.html 198,199 @@ -215,7 +214,7 @@ A new version of PeerTube is available: - A new version of PeerTube is available: + تتوفر نسخة أحدث من بيرتيوب: src/app/shared/shared-main/users/user-notifications.component.html 206,207 @@ -239,10 +238,10 @@ subscribers مشترك - - - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html25src/app/+search/search.component.html55src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 + src/app/+search/search.component.html55 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + Upload a new avatar ارفع صورة رمزية جديدة @@ -257,11 +256,12 @@ Hide أخفِ - - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-forms/input-toggle-hidden.component.ts38src/app/shared/shared-user-settings/user-video-settings.component.html16src/app/shared/shared-video-miniature/video-filters-header.component.html76 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-forms/input-toggle-hidden.component.ts38 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/shared/shared-video-miniature/video-filters-header.component.html76 + Show اعرض @@ -297,13 +297,11 @@ Save احفظ - - - - - - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38src/app/shared/shared-user-settings/user-interface-settings.component.html16src/app/shared/shared-user-settings/user-video-settings.component.html72src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38 + src/app/shared/shared-user-settings/user-interface-settings.component.html16 + src/app/shared/shared-user-settings/user-video-settings.component.html72 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + Default policy on videos containing sensitive content السياسة الفيديوهات ذات المحتوى الحساس @@ -347,39 +345,39 @@ Add a new language أضف لغة جديدة - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71src/app/shared/shared-forms/select/select-languages.component.html6 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71 + src/app/shared/shared-forms/select/select-languages.component.html6 + The sharing system implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. يشير نظام المشاركة إلى أنه يمكن إرسال بعض المعلومات الفنية حول نظامك (مثل عنوان IP) إلى الأقران الآخرين ، ولكنه يساعد بشكل كبير في تقليل حمل الخادم. - - src/app/shared/shared-user-settings/user-video-settings.component.html45 + src/app/shared/shared-user-settings/user-video-settings.component.html45 + Help share videos being played المساهمة في نشر الفيديوهات - - src/app/shared/shared-user-settings/user-video-settings.component.html42 + src/app/shared/shared-user-settings/user-video-settings.component.html42 + When on a video page, directly start playing the video. عندما تكون في صفحة فيديو ، شغِل الفيديو. - - src/app/shared/shared-user-settings/user-video-settings.component.html56 + src/app/shared/shared-user-settings/user-video-settings.component.html56 + Automatically play videos شغّل الفيديوهات تلقائيا - - src/app/shared/shared-user-settings/user-video-settings.component.html53 + src/app/shared/shared-user-settings/user-video-settings.component.html53 + When a video ends, follow up with the next suggested video. عندما ينتهي الفيديو ، شغّل الفيديو المقترح التالي. - - src/app/shared/shared-user-settings/user-video-settings.component.html67 + src/app/shared/shared-user-settings/user-video-settings.component.html67 + Automatically start playing the next video شغّل الفيديو التالي تلقائيا - - src/app/shared/shared-user-settings/user-video-settings.component.html64 + src/app/shared/shared-user-settings/user-video-settings.component.html64 + yes نعم @@ -458,10 +456,11 @@ Video quota حصة الفيديو - - - - src/app/+admin/users/user-edit/user-edit.component.html151src/app/+admin/users/user-edit/user-edit.component.html151src/app/+admin/users/user-list/user-list.component.ts113src/app/shared/shared-instance/instance-features-table.component.html47 + src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/+admin/users/user-list/user-list.component.ts113 + src/app/shared/shared-instance/instance-features-table.component.html47 + Unlimited ( per day) غير محدود ( في اليوم الواحد) @@ -502,14 +501,14 @@ Search ابحث - - - - - - - - src/app/+admin/plugins/plugins.component.html5src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts260src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/shared/shared-main/misc/simple-search-input.component.ts12src/app/shared/shared-main/misc/simple-search-input.component.ts13 + src/app/+admin/plugins/plugins.component.html5 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts260 + src/app/header/search-typeahead.component.html8 + src/app/shared/shared-instance/instance-features-table.component.html122 + src/app/shared/shared-main/misc/simple-search-input.component.ts12 + src/app/shared/shared-main/misc/simple-search-input.component.ts13 + Users can resolve distant content يمكن للمستخدمين من تحليل المحتوى البعيد @@ -523,8 +522,9 @@ Local المحلية - - src/app/shared/shared-instance/instance-statistics.component.html4src/app/shared/shared-video-miniature/video-filters.model.ts125 + src/app/shared/shared-instance/instance-statistics.component.html4 + src/app/shared/shared-video-miniature/video-filters.model.ts125 + users مستخدمون @@ -557,8 +557,10 @@ الفديرالية src/app/+admin/admin.component.ts26 src/app/shared/shared-instance/instance-statistics.component.html58 - - FollowingFollowing + + + Following + يتابع src/app/+admin/admin.component.ts 29 @@ -571,8 +573,10 @@ src/app/+admin/follows/follows.routes.ts 28 - - FollowersFollowers + + + Followers + متابِعون src/app/+admin/admin.component.ts 34 @@ -595,35 +599,35 @@ The upload failed فشل الرفع - - src/app/helpers/utils/upload.ts12 + src/app/helpers/utils/upload.ts12 + The connection was interrupted قُطع الاتصال - - src/app/helpers/utils/upload.ts16 + src/app/helpers/utils/upload.ts16 + The server encountered an error خطأ على مستوى الخادم - - src/app/helpers/utils/upload.ts19 + src/app/helpers/utils/upload.ts19 + Your file couldn't be transferred before the set timeout (usually 10min) Your file couldn't be transferred before the set timeout (usually 10min) - - src/app/helpers/utils/upload.ts22 + src/app/helpers/utils/upload.ts22 + Your file was too large (max. size: ) حجم ملف كبير ( حد الحجم: ) - - src/app/helpers/utils/upload.ts26 + src/app/helpers/utils/upload.ts26 + User مستخدم - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Configuration warning! تحذير التكوين! @@ -656,7 +660,7 @@ How you plan to pay for keeping your instance running - How you plan to pay for keeping your instance running + كيف تخطط لتمويل مصاريف مثيل الخادم src/app/modal/instance-config-warning-modal.component.html 18 @@ -715,81 +719,84 @@ Welcome to PeerTube, dear administrator! مرحبًا بك في بيرتيوب ، مديرنا العزيز! - - src/app/modal/admin-welcome-modal.component.html3 + src/app/modal/admin-welcome-modal.component.html3 + CLI documentation وثائق CLI - - src/app/modal/admin-welcome-modal.component.html12 + src/app/modal/admin-welcome-modal.component.html12 + Upload or import videos, parse logs, prune storage directories, reset user password... ارفع أو استورد ملفات الفيديو ،راجع السجلات، نظف أدلة التخزين، أو أعد تعيين كلمة مرور المستخدم ... - - src/app/modal/admin-welcome-modal.component.html15 + src/app/modal/admin-welcome-modal.component.html15 + Administer documentation توثيق الإدارة - - src/app/modal/admin-welcome-modal.component.html19 + src/app/modal/admin-welcome-modal.component.html19 + Managing users, following other instances, dealing with spammers... إدارة المستخدمين ، متابعة مثيلات الخادم الأخرى ، التعامل مع مرسلي الرسائل غير المرغوب فيها ... - - src/app/modal/admin-welcome-modal.component.html22 + src/app/modal/admin-welcome-modal.component.html22 + Use documentation وثائق الاستخدام - - src/app/modal/admin-welcome-modal.component.html26 + src/app/modal/admin-welcome-modal.component.html26 + Setup your account, managing video playlists, discover third-party applications... قم بإعداد حسابك ، وإدارة قوائم تشغيل الفيديو ، واكتشاف تطبيقات الطرف الثالث ... - - src/app/modal/admin-welcome-modal.component.html29 + src/app/modal/admin-welcome-modal.component.html29 + Useful links روابط مفيدة - - src/app/modal/admin-welcome-modal.component.html39 + src/app/modal/admin-welcome-modal.component.html39 + Official PeerTube website (news, support, contribute...): https://joinpeertube.org موقع PeerTube الرسمي (الأخبار ، الدعم ، المساهمة ...): https://joinpeertube.org - - src/app/modal/admin-welcome-modal.component.html42 + src/app/modal/admin-welcome-modal.component.html42 + Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances أضف مثيل الخادم الخاص بك الى فهرس PeerTube العام: https://instances.joinpeertube.org/instances - - src/app/modal/admin-welcome-modal.component.html45 + src/app/modal/admin-welcome-modal.component.html45 + It's time to configure your instance! حان الوقت تكوين مثيل الخادم الخاص بك! - - src/app/modal/admin-welcome-modal.component.html55 + src/app/modal/admin-welcome-modal.component.html55 + Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are. أختيارك اسما لمثيل الخادم واعدادك لوصف ، تحدد فيه من أنت ، لماذا قمت بأنشاء هذا المثيل، وكم من الوقت تخطط لإبقائه شغالا. أمر مهم ليفهم الزوار نوع مثيل الخادم الذي يستخدمونه. - - src/app/modal/admin-welcome-modal.component.html58 + src/app/modal/admin-welcome-modal.component.html58 + If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. إذا أردت فتح التسجيل، رجاء حدد قواعد الاشراف، واكتب شروط استخدام مثيل الخادم ،وحدد الفئات واللغات التي تستخدم. بهذا ستسمح للمتسخدمين بتحديد مثيل الخادم الذي يناسبهم. - - src/app/modal/admin-welcome-modal.component.html64 + src/app/modal/admin-welcome-modal.component.html64 + Remind me later ذكرني لاحقا - - src/app/modal/account-setup-warning-modal.component.html28src/app/modal/admin-welcome-modal.component.html74 - Set up Set up - - src/app/modal/account-setup-warning-modal.component.html35 + src/app/modal/account-setup-warning-modal.component.html28 + src/app/modal/admin-welcome-modal.component.html74 + + + Set up + ثبّت + src/app/modal/account-setup-warning-modal.component.html35 + Configure my instance كوّن مثيل الخادم الخاص بي - - src/app/modal/admin-welcome-modal.component.html81 + src/app/modal/admin-welcome-modal.component.html81 + Close this message أغلق هذه الرسالة @@ -883,22 +890,24 @@ Login لِج - - - - src/app/+login/login-routing.module.ts12src/app/+login/login.component.html48src/app/menu/menu.component.html99 + src/app/+login/login-routing.module.ts12 + src/app/+login/login.component.html48 + src/app/menu/menu.component.html99 + Create an account أنشئ حسابًا - - - src/app/+login/login.component.html54src/app/menu/menu.component.html100 + src/app/+login/login.component.html54 + src/app/menu/menu.component.html100 + Videos الفيديوهات - - - src/app/+accounts/account-videos/account-videos.component.ts17src/app/+my-library/my-library.component.ts52src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17src/app/core/menu/menu.service.ts76 + src/app/+accounts/account-videos/account-videos.component.ts17 + src/app/+my-library/my-library.component.ts52 + src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17 + src/app/core/menu/menu.service.ts76 + Interface: الواجهة: @@ -913,11 +922,11 @@ Subscriptions الإشتراكات - - - - - src/app/+my-library/my-library.component.ts64src/app/+videos/video-list/video-user-subscriptions.component.ts25src/app/+videos/videos-routing.module.ts58src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts64 + src/app/+videos/video-list/video-user-subscriptions.component.ts25 + src/app/+videos/videos-routing.module.ts58 + src/app/core/menu/menu.service.ts91 + History السجل @@ -927,10 +936,10 @@ VIDEOS الفيديوهات - - - - src/app/+accounts/accounts.component.ts82src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215src/app/+video-channels/video-channels.component.ts76 + src/app/+accounts/accounts.component.ts82 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215 + src/app/+video-channels/video-channels.component.ts76 + Import jobs concurrency Import jobs concurrency @@ -971,9 +980,9 @@ Contact اتصل - - - src/app/+about/about-routing.module.ts36src/app/menu/menu.component.html136 + src/app/+about/about-routing.module.ts36 + src/app/menu/menu.component.html136 + Help مساعدة @@ -1045,23 +1054,35 @@ See all your notifications اعرض كل اشعاراتك src/app/menu/notification.component.html49 - - Welcome to , dear user!Welcome to , dear user! - - src/app/modal/account-setup-warning-modal.component.html3 - It's time to set up your account profile!It's time to set up your account profile! - - src/app/modal/account-setup-warning-modal.component.html10 - Help moderators and other users to know who you are by:Help moderators and other users to know who you are by: - - src/app/modal/account-setup-warning-modal.component.html12 - Uploading an avatarUploading an avatar - - src/app/modal/account-setup-warning-modal.component.html15 - Writing a descriptionWriting a description - - src/app/modal/account-setup-warning-modal.component.html16 - Don't show me this anymoreDon't show me this anymore + + + Welcome to , dear user! + عزيز المستخدم مرحبًا بك في + src/app/modal/account-setup-warning-modal.component.html3 + + + It's time to set up your account profile! + حان الوقت لتكوين حسابك + src/app/modal/account-setup-warning-modal.component.html10 + + + Help moderators and other users to know who you are by: + ساعد المشرفين والمستخدمين الأخرين لتعرف عليك عبر: + src/app/modal/account-setup-warning-modal.component.html12 + + + Uploading an avatar + رفع صورة رمزية + src/app/modal/account-setup-warning-modal.component.html15 + + + Writing a description + وصف نفسك + src/app/modal/account-setup-warning-modal.component.html16 + + + Don't show me this anymore + لا تريني هذا مجددًا src/app/modal/account-setup-warning-modal.component.html 23 @@ -1069,9 +1090,9 @@ I'm a teapot - I'm a teapot - - src/app/+page-not-found/page-not-found.component.ts27 + أنا إبريق شاي + src/app/+page-not-found/page-not-found.component.ts27 + That's an error. هذا خطأ. @@ -1082,7 +1103,7 @@ We couldn't find any video tied to the URL you were looking for. - We couldn't find any video tied to the URL you were looking for. + لم نجد فيديو مرتبط بالرابط src/app/+page-not-found/page-not-found.component.html 7 @@ -1090,7 +1111,7 @@ We couldn't find any resource tied to the URL you were looking for. - We couldn't find any resource tied to the URL you were looking for. + لم يّعثر على أي مصدر يقود إليه الرابط. src/app/+page-not-found/page-not-found.component.html 8 @@ -1109,7 +1130,7 @@ The video may have been moved or deleted - The video may have been moved or deleted + إما أن الفيديو نُقل أو حُذف src/app/+page-not-found/page-not-found.component.html 17 @@ -1117,7 +1138,7 @@ The resource may have been moved or deleted - The resource may have been moved or deleted + ربما حُذف المصدر أو نُقل src/app/+page-not-found/page-not-found.component.html 18 @@ -1130,12 +1151,12 @@ You are not authorized here. - You are not authorized here. + ليس لديك تصريح للتواجد هنا. src/app/+page-not-found/page-not-found.component.html27 You might need to check your account is allowed by the video or instance owner. - You might need to check your account is allowed by the video or instance owner. + تحقق إن اعطاك مالك المثيل أو الفيديو تصريحًا src/app/+page-not-found/page-not-found.component.html 30 @@ -1143,7 +1164,7 @@ You might need to check your account is allowed by the resource or instance owner. - You might need to check your account is allowed by the resource or instance owner. + تحقق إن كان مصُرحًا لك الوصول لهذا المصدر src/app/+page-not-found/page-not-found.component.html 31 @@ -1164,8 +1185,8 @@ Media is too large for the server. Please contact you administrator if you want to increase the limit size. هذا الملف كبير. اتصل بالمدير حتى يزيد حد الرفع. - - src/app/core/rest/rest-extractor.service.ts65 + src/app/core/rest/rest-extractor.service.ts65 + In this instance's network في شبكة هذ المثيل @@ -1193,7 +1214,7 @@ Your query will be matched against video names or descriptions, channel names. - Your query will be matched against video names or descriptions, channel names. + سيُطابق طلبك مع اسماء الفيديوهات و وصفها وأسماء القنوات. src/app/header/search-typeahead.component.html 37 @@ -1233,32 +1254,33 @@ Cancel ألغِ - - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+admin/follows/following-list/follow-modal.component.html33src/app/+login/login.component.html121src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/video-add-components/video-upload.component.html81src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73src/app/+videos/+video-watch/video-watch.component.ts416src/app/modal/confirm.component.html20src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-video-miniature/video-download.component.html152 + src/app/+about/about-instance/contact-admin-modal.component.html48 + src/app/+admin/follows/following-list/follow-modal.component.html33 + src/app/+login/login.component.html121 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html22 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html69 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73 + src/app/+videos/+video-watch/video-watch.component.ts416 + src/app/modal/confirm.component.html20 + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26 + src/app/shared/shared-moderation/batch-domains-modal.component.html31 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/video-report.component.html92 + src/app/shared/shared-moderation/user-ban-modal.component.html26 + src/app/shared/shared-moderation/video-block.component.html38 + src/app/shared/shared-video-miniature/video-download.component.html152 + Ban احظر - - - - src/app/+admin/users/user-list/user-list.component.ts87src/app/shared/shared-moderation/user-ban-modal.component.html3src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + src/app/+admin/users/user-list/user-list.component.ts87 + src/app/shared/shared-moderation/user-ban-modal.component.html3 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + Reason... السبب… @@ -1298,8 +1320,10 @@ Blocking this live will automatically terminate the live stream. حجب هذا البث المباشر سينهيه تلقائيا. src/app/shared/shared-moderation/video-block.component.html33 - - Element not foundElement not found + + + Element not found + لم يُعثر على العنصر src/app/shared/shared-search/find-in-bulk.service.ts 80 @@ -1322,7 +1346,7 @@ The contact form is not enabled on this instance. - The contact form is not enabled on this instance. + نموذج المراسلة غير مفعل على هذا المثيل. src/app/+about/about-instance/contact-admin-modal.component.html 56 @@ -1389,14 +1413,14 @@ Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed? تجديد الرمز سيمنع العملاء الذين يستخدمون الرمز القديم من جلب الخلاصات، لذا عليك تكوينهم لاستخدام الرمز الجديد. تُتابع؟ - - src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + Renew token جدد الرمز - - - src/app/+my-account/my-account-applications/my-account-applications.component.html35src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + src/app/+my-account/my-account-applications/my-account-applications.component.html35 + src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + Token renewed. Update your client configuration accordingly. Token renewed. Update your client configuration accordingly. @@ -1414,7 +1438,7 @@ SUBSCRIPTION FEED - SUBSCRIPTION FEED + تغذية الاشتراكات src/app/+my-account/my-account-applications/my-account-applications.component.html 8 @@ -1438,7 +1462,7 @@ Feed Token - Feed Token + رمز التغذية src/app/+my-account/my-account-applications/my-account-applications.component.html 23 @@ -1446,7 +1470,7 @@ ⚠️ Never share your feed token with anyone. - ⚠️ Never share your feed token with anyone. + ⚠️ لا تشارك رمز التغذية مع أي أحد. src/app/+my-account/my-account-applications/my-account-applications.component.html 26 @@ -1470,14 +1494,14 @@ Clear filters امسح المرشحات - - src/app/shared/shared-forms/advanced-input-filter.component.html23src/app/shared/shared-main/misc/simple-search-input.component.html14 + src/app/shared/shared-forms/advanced-input-filter.component.html23 + src/app/shared/shared-main/misc/simple-search-input.component.html14 + Video/Comment/Account فيديو\تعليق\حساب src/app/shared/shared-abuse-list/abuse-list-table.component.html22 - State حالة @@ -1554,8 +1578,6 @@ يعرض ل من متابع src/app/+admin/follows/followers-list/followers-list.component.html11 - - Redundancy allowed Redundancy allowed @@ -1564,9 +1586,8 @@ Unfollow ألغ المتابعة - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab افتح مثيل الخادم في لسان جديد @@ -1577,13 +1598,13 @@ No host found matching current filters. لم يُعثر على مضيف مطابق للمرشحات الحالية. - - src/app/+admin/follows/following-list/following-list.component.html71 + src/app/+admin/follows/following-list/following-list.component.html71 + Your instance is not following anyone. مثيل الخادم الخاص بك لا يتابع أي شخص. - - src/app/+admin/follows/following-list/following-list.component.html72 + src/app/+admin/follows/following-list/following-list.component.html72 + Showing to of hosts يعرض ل من مضيفا @@ -1592,13 +1613,11 @@ It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. يبدو أنك لست على خادم HTTPS. يحتاج خادم الويب الخاص بك إلى تنشيط TLS لمتابعة الخوادم. - - src/app/+admin/follows/following-list/follow-modal.component.html28 - - + src/app/+admin/follows/following-list/follow-modal.component.html28 + Action - Action + الإجراء src/app/+admin/follows/following-list/following-list.component.html30 src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html27 src/app/shared/shared-moderation/account-blocklist.component.html22 @@ -1677,16 +1696,16 @@ Create إنشاء - - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html8src/app/+admin/users/user-edit/user-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + {VAR_PLURAL, plural, =1 {Video} other {Videos} } {VAR_PLURAL, plural, =1 {فيديو} other {مقاطع فيديو} } @@ -1732,11 +1751,12 @@ Username اسم المستخدم - - - - - src/app/+admin/users/user-edit/user-edit.component.html83src/app/+admin/users/user-edit/user-edit.component.html83src/app/+admin/users/user-list/user-list.component.ts111src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6src/app/+signup/+register/register-step-user.component.html23 + src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+admin/users/user-list/user-list.component.ts111 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6 + src/app/+signup/+register/register-step-user.component.html23 + e.g. jane_doe مثل jane_doe @@ -1752,14 +1772,15 @@ Email البريد الإلكتروني - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html105src/app/+admin/users/user-edit/user-edit.component.html105src/app/+admin/users/user-list/user-list.component.ts112src/app/+login/login.component.html111src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4src/app/+signup/+register/register-step-user.component.html45src/app/+signup/+register/register-step-user.component.html47src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+admin/users/user-list/user-list.component.ts112 + src/app/+login/login.component.html111 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4 + src/app/+signup/+register/register-step-user.component.html45 + src/app/+signup/+register/register-step-user.component.html47 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html8 + mail@example.com mail@example.com @@ -1769,15 +1790,15 @@ Password كلمة المرور - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html117src/app/+admin/users/user-edit/user-edit.component.html117src/app/+login/login.component.html38src/app/+login/login.component.html40src/app/+reset-password/reset-password.component.html8src/app/+reset-password/reset-password.component.html10src/app/+signup/+register/register-step-user.component.html56src/app/+signup/+register/register-step-user.component.html58 + src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+login/login.component.html38 + src/app/+login/login.component.html40 + src/app/+reset-password/reset-password.component.html8 + src/app/+reset-password/reset-password.component.html10 + src/app/+signup/+register/register-step-user.component.html56 + src/app/+signup/+register/register-step-user.component.html58 + If you leave the password empty, an email will be sent to the user. إذا تركت كلمة المرور فارغة ، فسيتم إرسال بريد إلكتروني إلى المستخدم. @@ -1787,9 +1808,10 @@ Role الدور - - - src/app/+admin/users/user-edit/user-edit.component.html136src/app/+admin/users/user-edit/user-edit.component.html136src/app/+admin/users/user-list/user-list.component.ts114 + src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-list/user-list.component.ts114 + Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . تحويل الترميز مفعل. سيقتطع الحجم الأصلي للفيديو من حصة الفيديو.يمكن لهذا المستخدم رفع ~ كحد أقصى. @@ -1806,9 +1828,10 @@ Auth plugin Auth plugin - - - src/app/+admin/users/user-edit/user-edit.component.html188src/app/+admin/users/user-edit/user-edit.component.html188src/app/+admin/users/user-list/user-list.component.ts121 + src/app/+admin/users/user-edit/user-edit.component.html188 + src/app/+admin/users/user-edit/user-edit.component.html188 + src/app/+admin/users/user-list/user-list.component.ts121 + None (local authentication) بدون (استيثاق محلي) @@ -1867,9 +1890,9 @@ Create user إنشاء مستخدِم - - - src/app/+admin/users/user-edit/user-create.component.ts96src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts96 + src/app/+admin/users/user-list/user-list.component.html20 + Table parameters معاملات الجدول @@ -1933,7 +1956,7 @@ Banned users - Banned users + المستخدمون المحظورون src/app/+admin/users/user-list/user-list.component.ts 40 @@ -2044,12 +2067,12 @@ More information المزيد من التفاصيل - - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html36src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56src/app/+admin/system/jobs/jobs.component.html56src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + src/app/+admin/moderation/video-block-list/video-block-list.component.html36 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56 + src/app/+admin/system/jobs/jobs.component.html56 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + The video was blocked due to automatic blocking of new videos حُحب الفيديو بسبب الحجب التلقائي لمقاطع الفيديو الجديدة @@ -2068,8 +2091,10 @@ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html65 src/app/+my-library/my-ownership/my-ownership.component.html18 src/app/shared/shared-abuse-list/abuse-list-table.component.html41 - - FollowerFollower + + + Follower + متابِع src/app/+admin/follows/followers-list/followers-list.component.html 24 @@ -2092,7 +2117,7 @@ Local comments - Local comments + التعليقات المحلية src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts 48 @@ -2100,7 +2125,7 @@ Remote comments - Remote comments + التعليقات البعيدة src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts 52 @@ -2119,28 +2144,28 @@ Unsolved reports Unsolved reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts43 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts43 + Accepted reports - Accepted reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts47 + الإبلاغات المقبولة + src/app/shared/shared-abuse-list/abuse-list-table.component.ts47 + Refused reports - Refused reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts51 + الإبلاغات المرفوضة + src/app/shared/shared-abuse-list/abuse-list-table.component.ts51 + Reports with blocked videos - Reports with blocked videos - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts55 + إبلاغات مقاطع الفيديو المحجوبة + src/app/shared/shared-abuse-list/abuse-list-table.component.ts55 + Reports with deleted videos Reports with deleted videos - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts59 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts59 + Block reason: سبب الحجب: @@ -2158,14 +2183,14 @@ Automatic blocks - Automatic blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts32 + حجب تلقائي + src/app/+admin/moderation/video-block-list/video-block-list.component.ts32 + Manual blocks - Manual blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts36 + حجب يدوي + src/app/+admin/moderation/video-block-list/video-block-list.component.ts36 + Showing to of blocked videos يعرض ل من فيديوهات محجوبة @@ -2221,9 +2246,9 @@ Comment علّق - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + This video has been reported multiple times. تم الإبلاغ عن هذا الفيديو عدة مرات. @@ -2243,10 +2268,10 @@ Deleted حذف - - - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html47src/app/shared/shared-abuse-list/abuse-list-table.component.html91src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html47 + src/app/shared/shared-abuse-list/abuse-list-table.component.html91 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + Video was deleted تم حذف الفيديو @@ -2262,7 +2287,6 @@ يعرض ل من إبلغا src/app/shared/shared-abuse-list/abuse-list-table.component.html6 - Reportee مراسل @@ -2338,11 +2362,11 @@ Instance مثيل خادم - - - - - src/app/+about/about.component.html5src/app/+search/search-filters.component.html192src/app/shared/shared-moderation/server-blocklist.component.html31src/app/shared/shared-moderation/server-blocklist.component.html31 + src/app/+about/about.component.html5 + src/app/+search/search-filters.component.html192 + src/app/shared/shared-moderation/server-blocklist.component.html31 + src/app/shared/shared-moderation/server-blocklist.component.html31 + Muted at كُتم على @@ -2446,29 +2470,29 @@ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36 src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 - Videos with the most interactions for recent videos Videos with the most interactions for recent videos - - src/app/+videos/video-list/videos-list-common-page.component.ts204 + src/app/+videos/video-list/videos-list-common-page.component.ts204 + Videos with the most views during the last 24 hours Videos with the most views during the last 24 hours - - src/app/+videos/video-list/videos-list-common-page.component.ts208 - Videos with the most views during the last daysVideos with the most views during the last days + src/app/+videos/video-list/videos-list-common-page.component.ts208 + + + Videos with the most views during the last days + Videos with the most views during the last days src/app/+videos/video-list/videos-list-common-page.component.ts 209 - Videos that have the most likes Videos that have the most likes - - src/app/+videos/video-list/videos-list-common-page.component.ts205 + src/app/+videos/video-list/videos-list-common-page.component.ts205 + Search... البحث… @@ -2554,18 +2578,18 @@ comments deleted. comments deleted. - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + Do you really want to delete all comments of ? Do you really want to delete all comments of ? - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + Comments of will be deleted in a few minutes Comments of will be deleted in a few minutes - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + Video comments Video comments @@ -2729,8 +2753,9 @@ Add a new category أضف فئة جديدة - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57src/app/shared/shared-forms/select/select-categories.component.html5 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + src/app/shared/shared-forms/select/select-categories.component.html5 + Main languages you/your moderators speak اللغات الرئيسية التي تتحدثها أنت / المشرفون لديك @@ -3562,8 +3587,8 @@ color: red; Options الخيارات - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + Search playlists البحث عن قوائم التشغيل @@ -3593,10 +3618,10 @@ color: red; Private خاص - - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10src/app/shared/shared-video-miniature/video-miniature.component.html7src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10 + src/app/shared/shared-video-miniature/video-miniature.component.html7 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + Edit starts/stops at تحرير يبدأ / يتوقف عند @@ -3610,9 +3635,9 @@ color: red; {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {لا توجد فيديوهات} =1 {فيديو واحد} other { فيديو}} - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html32src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + src/app/+my-library/+my-video-channels/my-video-channels.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + @@ -3635,14 +3660,14 @@ color: red; subtitles ترجمات - - src/app/shared/shared-video-miniature/video-download.component.ts57 + src/app/shared/shared-video-miniature/video-download.component.ts57 + video فيديو - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. @@ -3710,12 +3735,12 @@ color: red; Your video quota is exceeded with this video (video size: , used: , quota: ) Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles ترجمات @@ -3724,9 +3749,9 @@ color: red; Unlisted غير مفهرس - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html9src/app/shared/shared-video-miniature/video-miniature.component.html6 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html9 + src/app/shared/shared-video-miniature/video-miniature.component.html6 + {VAR_PLURAL, plural, =1 {1 view} other { views}} {VAR_PLURAL, plural, =1 {مشاهدة واحدة} other { مشاهدة}} @@ -3761,8 +3786,8 @@ color: red; Cannot fetch information of this remote account Cannot fetch information of this remote account - - src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + Blocked محجوب @@ -3776,28 +3801,21 @@ color: red; No results. لا نتائج. - - - - - - - - - - src/app/+videos/video-list/overview/video-overview.component.html4src/app/shared/shared-video-miniature/videos-list.component.html41src/app/shared/shared-video-miniature/videos-selection.component.ts23 - + src/app/+videos/video-list/overview/video-overview.component.html4 + src/app/shared/shared-video-miniature/videos-list.component.html41 + src/app/shared/shared-video-miniature/videos-selection.component.ts23 + Videos with the most interactions for recent videos, minus user history Videos with the most interactions for recent videos, minus user history - - src/app/+videos/video-list/videos-list-common-page.component.ts203 + src/app/+videos/video-list/videos-list-common-page.component.ts203 + Cancel الغاء - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 No results. No results. @@ -3870,7 +3888,6 @@ color: red; إشترك مستخدماً حسابك المحلي src/app/shared/shared-user-subscription/subscribe-button.component.html58 - The live stream will be automatically terminated. The live stream will be automatically terminated. @@ -3986,9 +4003,9 @@ color: red; Change ownership تغيير المالك - - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts180 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts180 + Select the next owner أدخل المالك الجديد @@ -4099,9 +4116,9 @@ color: red; Account page صفحة الحساب - - - src/app/+videos/+video-watch/video-watch.component.html70src/app/+videos/+video-watch/video-watch.component.html76 + src/app/+videos/+video-watch/video-watch.component.html70 + src/app/+videos/+video-watch/video-watch.component.html76 + @@ -4135,16 +4152,16 @@ color: red; Delete your account احذف حسابك - - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 + Channel page صفحة القناة - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html25src/app/+my-library/my-subscriptions/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+my-library/+my-video-channels/my-video-channels.component.html25 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html67 + subscribers مشتركا @@ -4168,8 +4185,8 @@ color: red; You don't have any video in your watch history yet. You don't have any video in your watch history yet. - - src/app/+my-library/my-history/my-history.component.html29 + src/app/+my-library/my-history/my-history.component.html29 + Open syndication dropdown Open syndication dropdown @@ -4181,14 +4198,18 @@ color: red; src/app/shared/shared-main/feeds/feed.component.html 3 - - Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description.Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + + + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. src/app/shared/shared-main/misc/channels-setup-message.component.html 5 - - Set up my channelsSet up my channels + + + Set up my channels + Set up my channels src/app/shared/shared-main/misc/channels-setup-message.component.html 6 @@ -4245,16 +4266,16 @@ color: red; Privacy الخصوصية - - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+videos/+video-edit/shared/video-edit.component.html106src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29src/app/+videos/+video-edit/video-add-components/video-upload.component.html26src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2src/app/shared/shared-abuse-list/abuse-details.component.ts22 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+videos/+video-edit/shared/video-edit.component.html106 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html26 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2 + src/app/shared/shared-abuse-list/abuse-details.component.ts22 + Channel القناة @@ -4276,8 +4297,8 @@ color: red; Create playlist إنشاء قائمة تشغيل - - src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + My video channels My video channels @@ -4316,22 +4337,22 @@ color: red; Create video channel أنشئ قناة فيديو - - src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + No channel found. No channel found. - - src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} {VAR_PLURAL, plural, =1 {نشترك واحد} other { مشتركا}} - - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html30src/app/+video-channels/video-channels.component.html73src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + src/app/+video-channels/video-channels.component.html73 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 videos} other { videos}} @@ -4361,8 +4382,10 @@ It will delete videos uploa channel with the same name ()! أتريد حذف ؟ ستحذف جميع فيديوهات قناة ، ولن تتمكن من إنشاء قناة بنفس الاسم ()! src/app/+my-library/+my-video-channels/my-video-channels.component.ts44 - - Please type the name of the video channel () to confirmPlease type the name of the video channel () to confirm + + + Please type the name of the video channel () to confirm + Please type the name of the video channel () to confirm src/app/+my-library/+my-video-channels/my-video-channels.component.ts 48 @@ -4426,8 +4449,10 @@ channel with the same name ()!If you need help to use PeerTube, you can have a look at the documentation. اذا أردت تعليمات لاستخدام بيرتيوب راجع التوثيق src/app/+signup/shared/signup-success.component.html14 - - To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + + + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. src/app/+signup/shared/signup-success.component.html 18,19 @@ -4491,13 +4516,13 @@ channel with the same name ()! This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. - - src/app/+login/login.component.html64 + src/app/+login/login.component.html64 + Currently this instance doesn't allow for user registration, you may check the Terms for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: https://joinpeertube.org/instances. Currently this instance doesn't allow for user registration, you may check the Terms for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: https://joinpeertube.org/instances. - - src/app/+login/login.component.html69 + src/app/+login/login.component.html69 + Request email for account verification طلب البريد الإلكتروني للتحقق من الحساب @@ -4506,15 +4531,15 @@ channel with the same name ()! Email address عنوان البريد الإلكتروني - - - src/app/+login/login.component.html113src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + src/app/+login/login.component.html113 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + Reset Reset Password reset button - - src/app/+login/login.component.html126 + src/app/+login/login.component.html126 + Send verification email إرسال رسالة التأكيد @@ -4618,8 +4643,8 @@ channel with the same name ()! CHANNELS CHANNELS - - src/app/+accounts/accounts.component.ts81 + src/app/+accounts/accounts.component.ts81 + Video channels قنوات الفيديو @@ -4684,7 +4709,6 @@ channel with the same name ()!16 - Your name اسمك @@ -4709,8 +4733,10 @@ channel with the same name ()!About حول src/app/+about/about-instance/about-instance.component.html5 - - Contact usContact us + + + Contact us + Contact us src/app/+about/about-instance/about-instance.component.html 7 @@ -4720,7 +4746,6 @@ channel with the same name ()!3 - This instance is dedicated to sensitive/NSFW content. هذا المثيل مخصص لمحتوى حساس / NSFW. @@ -4975,24 +5000,26 @@ channel with the same name ()! About this instance حول هذا المثيل - - src/app/+about/about-routing.module.ts24 + src/app/+about/about-routing.module.ts24 + About PeerTube حول بِيرتيوب - - src/app/+about/about-routing.module.ts49 + src/app/+about/about-routing.module.ts49 + About this instance's network About this instance's network - - src/app/+about/about-routing.module.ts58 + src/app/+about/about-routing.module.ts58 + Link copied Link copied src/app/+about/about-instance/about-instance.component.ts98 - - Contact the administrator(s)Contact the administrator(s) + + + Contact the administrator(s) + Contact the administrator(s) src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -5171,8 +5198,8 @@ channel with the same name ()!Signup Signup Button on the registration form to finalize the account and channel creation - - src/app/+signup/+register/register.component.ts67 + src/app/+signup/+register/register.component.ts67 + Login تسجل الدخول @@ -5187,8 +5214,10 @@ channel with the same name ()!Username or email address اسم المستخدم أو عنوان البريد الإلكتروني src/app/+login/login.component.html23 - - ⚠️ Most email addresses do not include capital letters. ⚠️ Most email addresses do not include capital letters. + + + ⚠️ Most email addresses do not include capital letters. + ⚠️ Most email addresses do not include capital letters. src/app/+login/login.component.html 33,34 @@ -5197,38 +5226,38 @@ channel with the same name ()! Click here to reset your password انقر هنا لإعادة تعيين كلمة المرور الخاصة بك - - src/app/+login/login.component.html51 + src/app/+login/login.component.html51 + I forgot my password I forgot my password - - src/app/+login/login.component.html51 + src/app/+login/login.component.html51 + Logging into an account lets you publish content Logging into an account lets you publish content - - src/app/+login/login.component.html60 + src/app/+login/login.component.html60 + Or sign in with أو قم بتسجيل الدخول باستخدام - - src/app/+login/login.component.html76 + src/app/+login/login.component.html76 + Forgot your password نسيتَ كلمة المرور - - src/app/+login/login.component.html95 + src/app/+login/login.component.html95 + We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. عذرًا ، لا يمكنك استرداد كلمة المرور الخاصة بك لأن مدير مثيل الخادم الخاص بك لم يقم بتكوين نظام البريد الإلكتروني لبيرتيوب. - - src/app/+login/login.component.html103 + src/app/+login/login.component.html103 + Enter your email address and we will send you a link to reset your password. Enter your email address and we will send you a link to reset your password. - - src/app/+login/login.component.html107 + src/app/+login/login.component.html107 + An email with the reset password instructions will be sent to . The link will expire within 1 hour. @@ -5261,8 +5290,8 @@ The link will expire within 1 hour. No results found لم يتم العثور على نتائج - - src/app/+search/search.component.html33 + src/app/+search/search.component.html33 + subscribers @@ -5278,19 +5307,19 @@ The link will expire within 1 hour. Reset إعادة تعيين - - - - - - - - - - - - - src/app/+search/search-filters.component.html9src/app/+search/search-filters.component.html23src/app/+search/search-filters.component.html42src/app/+search/search-filters.component.html61src/app/+search/search-filters.component.html75src/app/+search/search-filters.component.html110src/app/+search/search-filters.component.html123src/app/+search/search-filters.component.html136src/app/+search/search-filters.component.html149src/app/+search/search-filters.component.html164src/app/+search/search-filters.component.html172src/app/+search/search-filters.component.html205 + src/app/+search/search-filters.component.html9 + src/app/+search/search-filters.component.html23 + src/app/+search/search-filters.component.html42 + src/app/+search/search-filters.component.html61 + src/app/+search/search-filters.component.html75 + src/app/+search/search-filters.component.html110 + src/app/+search/search-filters.component.html123 + src/app/+search/search-filters.component.html136 + src/app/+search/search-filters.component.html149 + src/app/+search/search-filters.component.html164 + src/app/+search/search-filters.component.html172 + src/app/+search/search-filters.component.html205 + Display only Display only @@ -5302,15 +5331,19 @@ The link will expire within 1 hour. Live videos Live videos - - - src/app/+search/search-filters.component.html29src/app/+search/search-filters.component.ts64src/app/shared/shared-video-miniature/video-filters-header.component.html104src/app/shared/shared-video-miniature/video-filters.model.ts158 + src/app/+search/search-filters.component.html29 + src/app/+search/search-filters.component.ts64 + src/app/shared/shared-video-miniature/video-filters-header.component.html104 + src/app/shared/shared-video-miniature/video-filters.model.ts158 + VOD videos VOD videos - - - src/app/+search/search-filters.component.html34src/app/+search/search-filters.component.ts60src/app/shared/shared-video-miniature/video-filters-header.component.html109src/app/shared/shared-video-miniature/video-filters.model.ts164 + src/app/+search/search-filters.component.html34 + src/app/+search/search-filters.component.ts60 + src/app/shared/shared-video-miniature/video-filters-header.component.html109 + src/app/shared/shared-video-miniature/video-filters.model.ts164 + Display sensitive content عرض المحتوى الحساس @@ -5349,16 +5382,16 @@ The link will expire within 1 hour. Duration المدّة - - - src/app/+search/search-filters.component.html108src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html60 + src/app/+search/search-filters.component.html108 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html60 + Category الفئة - - - - src/app/+search/search-filters.component.html121src/app/+videos/+video-edit/shared/video-edit.component.html63src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html25 + src/app/+search/search-filters.component.html121 + src/app/+videos/+video-edit/shared/video-edit.component.html63 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html25 + Reset إعادة تعيين @@ -5376,10 +5409,10 @@ The link will expire within 1 hour. Licence الرخصة - - - - src/app/+search/search-filters.component.html134src/app/+videos/+video-edit/shared/video-edit.component.html74src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html34 + src/app/+search/search-filters.component.html134 + src/app/+videos/+video-edit/shared/video-edit.component.html74 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html34 + Display all licenses عرض جميع التراخيص @@ -5388,11 +5421,11 @@ The link will expire within 1 hour. Language اللغة - - - - - src/app/+search/search-filters.component.html147src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10src/app/+videos/+video-edit/shared/video-edit.component.html94src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html43 + src/app/+search/search-filters.component.html147 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10 + src/app/+videos/+video-edit/shared/video-edit.component.html94 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html43 + Display all languages عرض جميع اللغات @@ -5407,8 +5440,10 @@ The link will expire within 1 hour. One of these tags واحد مِن هذه الوسوم src/app/+search/search-filters.component.html170 - - PeerTube instance hostPeerTube instance host + + + PeerTube instance host + PeerTube instance host src/app/+search/search-filters.component.html 178 @@ -5417,13 +5452,13 @@ The link will expire within 1 hour. Search target هدف البحث - - src/app/+search/search-filters.component.html187 + src/app/+search/search-filters.component.html187 + Vidiverse Vidiverse - - src/app/+search/search-filters.component.html197 + src/app/+search/search-filters.component.html197 + Reset إعادة تعيين @@ -5432,8 +5467,8 @@ The link will expire within 1 hour. Filter مرشح - - src/app/+search/search-filters.component.html208 + src/app/+search/search-filters.component.html208 + Add caption إضافة تسمية توضيحية @@ -5467,9 +5502,9 @@ The link will expire within 1 hour. Tags الوسوم - - - src/app/+videos/+video-edit/shared/video-edit.component.html19src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + src/app/+videos/+video-edit/shared/video-edit.component.html19 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag. Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag. @@ -5483,14 +5518,14 @@ The link will expire within 1 hour. extensions extensions - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. This image is too large. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Upload a new banner @@ -5515,13 +5550,13 @@ The link will expire within 1 hour. Account avatar Account avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Channel avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Markdown compatible that also supports custom PeerTube HTML tags @@ -5537,26 +5572,34 @@ The link will expire within 1 hour. src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html 24 - - Error in channel miniature component: Error in channel miniature component: + + + Error in channel miniature component: + Error in channel miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts 57 - - Error in playlist miniature component: Error in playlist miniature component: + + + Error in playlist miniature component: + Error in playlist miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts 47 - - Error in video miniature component: Error in video miniature component: + + + Error in video miniature component: + Error in video miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts 59 - - Error in videos list component: Error in videos list component: + + + Error in videos list component: + Error in videos list component: src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts 77 @@ -5619,10 +5662,10 @@ The link will expire within 1 hour. Captions التسميات التوضيحية - - - - src/app/+videos/+video-edit/shared/video-edit.component.html155src/app/shared/shared-abuse-list/abuse-details.component.ts26src/app/shared/shared-moderation/abuse.service.ts181 + src/app/+videos/+video-edit/shared/video-edit.component.html155 + src/app/shared/shared-abuse-list/abuse-details.component.ts26 + src/app/shared/shared-moderation/abuse.service.ts181 + Add another caption أضف تسمية توضيحية أخرى @@ -5824,23 +5867,23 @@ The link will expire within 1 hour. Torrents with only 1 file are supported. Torrents with only 1 file are supported. - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + Cannot create live because this instance have too many created lives Cannot create live because this instance have too many created lives - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + Cannot create live because you created too many lives Cannot create live because you created too many lives - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + Live published. Live published. - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + Go Live Go Live @@ -5855,17 +5898,17 @@ The link will expire within 1 hour. Update تحديث - - - - - - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61 + src/app/+videos/+video-edit/video-update.component.html3 + src/app/+videos/+video-edit/video-update.component.html18 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + URL الرابط @@ -5892,13 +5935,13 @@ The link will expire within 1 hour. Scheduled مجدول - - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 + Hide the video until a specific date أخفِ الفيديو حتى تاريخ معين - - src/app/+videos/+video-edit/shared/video-edit.component.ts193 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 + Video background image صورة خلفية الفيديو @@ -5945,25 +5988,31 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. عذرا، عُطلت خاصية الرفع في حسابك، اتصل بمدير المنصة ليقوم بفك قَفل حصتك. - - src/app/+videos/+video-edit/video-add.component.ts102 - Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + src/app/+videos/+video-edit/video-add.component.ts102 + + + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. src/app/+videos/+video-edit/video-add.component.ts 104 - - Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + + + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. src/app/+videos/+video-edit/video-add.component.ts 106 - - Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + + + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. src/app/+videos/+video-edit/video-add.component.ts 108 @@ -5972,58 +6021,58 @@ The link will expire within 1 hour. Read instance rules for help اقرأ قوانين المثيل للمساعدة - - src/app/+videos/+video-edit/video-add.component.html2 + src/app/+videos/+video-edit/video-add.component.html2 + We recommend you to not use the root user to publish your videos, since it's the super-admin account of your instance. Instead, create a dedicated account to upload your videos. نقترح ألاّ تستخدم حساب الجذر لنشر الفيديوهات.بدلا من ذلك نقترح إنشاء حساب عادي لرفع فيديوهاتك. - - src/app/+videos/+video-edit/video-add.component.html34 + src/app/+videos/+video-edit/video-add.component.html34 + Import استورد - - src/app/+videos/+video-edit/video-add.component.html44 + src/app/+videos/+video-edit/video-add.component.html44 + Upload ارفع - - src/app/+videos/+video-edit/video-add.component.html45 + src/app/+videos/+video-edit/video-add.component.html45 + Upload a file إرفع ملفًا - - src/app/+videos/+video-edit/video-add.component.html53 + src/app/+videos/+video-edit/video-add.component.html53 + Import with URL استيراد عن طريق رابط - - src/app/+videos/+video-edit/video-add.component.html63 + src/app/+videos/+video-edit/video-add.component.html63 + Import with torrent استيراد عبر التورنت - - src/app/+videos/+video-edit/video-add.component.html73 + src/app/+videos/+video-edit/video-add.component.html73 + Go live Go live - - src/app/+videos/+video-edit/video-add.component.html83 + src/app/+videos/+video-edit/video-add.component.html83 + Other videos فيديوهات أخرى - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + AUTOPLAY تشغيل تلقائي - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + Report this comment أبلغ عن هذا التعليق - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + Share شارك @@ -6134,65 +6183,61 @@ The link will expire within 1 hour. Public للعامة - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 - - - - - + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 + This video is blocked. هذا الفيديو محجوب. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + Published Published - - - src/app/+videos/+video-watch/video-watch.component.html31 + src/app/+videos/+video-watch/video-watch.component.html31 + SUPPORT الدعم - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + SHARE شارك - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + SAVE حفظ - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + DOWNLOAD نزِّل - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + By بواسطة - - src/app/+videos/+video-watch/video-watch.component.html71 + src/app/+videos/+video-watch/video-watch.component.html71 + Show more عرض المزيد - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + Show less عرض القليل - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + Origin Origin - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 - Open the video on the origin instanceOpen the video on the origin instance + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 + + + Open the video on the origin instance + Open the video on the origin instance src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html 14 @@ -6201,196 +6246,202 @@ The link will expire within 1 hour. Originally published نشر في الأصل - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html20 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html20 + Friendly Reminder: تذكير ودي: - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. يشير نظام المشاركة المستخدم لهذا الفيديو إلى أنه يمكن إرسال بعض المعلومات الفنية حول نظامك (مثل عنوان IP العام) إلى نظرائك الآخرين. - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + Get more information احصل على معلومات أكثر - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + OK موافق - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 - The video is being imported, it will be available when the import is finished. - The video is being imported, it will be available when the import is finished. + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 + + + The video is being imported, it will be available when the import is finished. + The video is being imported, it will be available when the import is finished. src/app/+videos/+video-watch/shared/information/video-alert.component.html 2,3 - - The video is being transcoded, it may not work properly. - The video is being transcoded, it may not work properly. + + + The video is being transcoded, it may not work properly. + The video is being transcoded, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 6,7 - - The video is being moved to an external server, it may not work properly. - The video is being moved to an external server, it may not work properly. + + + The video is being moved to an external server, it may not work properly. + The video is being moved to an external server, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 10,11 - - This video will be published on . - This video will be published on . + + + This video will be published on . + This video will be published on . - - src/app/+videos/+video-watch/shared/information/video-alert.component.html13 - This live has not started yet. - This live has not started yet. + src/app/+videos/+video-watch/shared/information/video-alert.component.html13 + + + This live has not started yet. + This live has not started yet. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html18 - This live has ended. - This live has ended. + src/app/+videos/+video-watch/shared/information/video-alert.component.html18 + + + This live has ended. + This live has ended. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + SORT BY ترتيب حسب - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + Most recent first (default) الأحدث أولاً (افتراضي) - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + Most replies first الأكثر ردودًا أولاً - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + No comments. ليس هناك تعليقات. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + View from and others View from and others - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + {VAR_PLURAL, plural, =1 {1 reply} other { replies}} {VAR_PLURAL, plural, =1 {1 reply} other { replies}} - - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74src/app/+videos/+video-watch/shared/comment/video-comments.component.html77src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + View from View from - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + View View - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + Comments are disabled. تم تعطيل التعليقات. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + The deletion will be sent to remote instances so they can reflect the change. سيتم إرسال الحذف إلى المثيلات البعيدة بحيث تعكس التغيير. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts175 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts175 + It is a remote comment, so the deletion will only be effective on your instance. إنه تعليق عن بعد ، لذلك لن يكون الحذف ساريًا إلا على المنصة الخاص بك. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts177 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts177 + Delete and re-draft احذف وأعد الصياغة - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + Do you really want to delete and re-draft this comment? أتريد حذف وإعادة صياغة هذا التعليق؟ - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + Add comment... إضافة تعليق… - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + Markdown compatible متوافق مع ماركداون - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + Markdown compatible that supports: توافق ماركداون يدعم: - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + Auto generated links روابط مولدة تلقائيا - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + Break lines قسم السطور - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + Lists القوائم - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23src/app/shared/shared-main/misc/help.component.ts84 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23 + src/app/shared/shared-main/misc/help.component.ts84 + Emphasis تشديد - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25src/app/shared/shared-main/misc/help.component.ts81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25 + src/app/shared/shared-main/misc/help.component.ts81 + bold عريض - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + italic مائل - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + Emoji shortcuts اختصارات ايموجي - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + Emoji markup ترميز ايموجي - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + See complete list اعرض القائمة كاملة - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + Cancel الغاء @@ -6399,23 +6450,23 @@ The link will expire within 1 hour. You are one step away from commenting أنت على بعد خطوة واحدة من التعليق - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + Login to comment يرجى الولوج أولًا للتعليق - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + Markdown Emoji List قائمة ايموج الخاصة بماركداون - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + Comment تعليق @@ -6424,14 +6475,14 @@ The link will expire within 1 hour. Reply رد - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + Highlighted comment تعليق مميز - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + Reply رد @@ -6440,24 +6491,23 @@ The link will expire within 1 hour. This comment has been deleted تم حذف هذا التعليق - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + Your message has been sent. تم ارسال رسالتك. - - src/app/+about/about-instance/contact-admin-modal.component.ts88 + src/app/+about/about-instance/contact-admin-modal.component.ts88 + You already sent this form recently لقد أرسلت هذا النموذج بالفعل مؤخرًا - - src/app/+about/about-instance/contact-admin-modal.component.ts94 + src/app/+about/about-instance/contact-admin-modal.component.ts94 + Account videos فيديوهات الحساب - - src/app/+accounts/accounts-routing.module.ts35 - + src/app/+accounts/accounts-routing.module.ts35 + ACCOUNT ACCOUNT @@ -6469,63 +6519,78 @@ The link will expire within 1 hour. Account video channels قنوات الفيديو للحساب - - src/app/+accounts/accounts-routing.module.ts26 - + src/app/+accounts/accounts-routing.module.ts26 + Display all videos (private, unlisted or not yet published) Display all videos (private, unlisted or not yet published) - - - - - - - - src/app/shared/shared-video-miniature/video-filters-header.component.html125 - Remove this filterRemove this filter - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 - Sensitive contentSensitive content - - src/app/shared/shared-video-miniature/video-filters.model.ts115 - ScopeScope - - src/app/shared/shared-video-miniature/video-filters.model.ts122 - FederatedFederated - - src/app/shared/shared-video-miniature/video-filters.model.ts124 - LanguagesLanguages - - src/app/shared/shared-video-miniature/video-filters.model.ts132 - CategoriesCategories - - src/app/shared/shared-video-miniature/video-filters.model.ts141 - All videosAll videos - - src/app/shared/shared-video-miniature/video-filters.model.ts150 - BlurredBlurred - - src/app/shared/shared-video-miniature/video-filters.model.ts225 - hiddenhidden - - src/app/shared/shared-video-miniature/video-filters.model.ts231 - blurredblurred - - src/app/shared/shared-video-miniature/video-filters.model.ts232 - displayeddisplayed - - src/app/shared/shared-video-miniature/video-filters.model.ts234 + src/app/shared/shared-video-miniature/video-filters-header.component.html125 + + + Remove this filter + Remove this filter + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + + + Sensitive content + Sensitive content + src/app/shared/shared-video-miniature/video-filters.model.ts115 + + + Scope + Scope + src/app/shared/shared-video-miniature/video-filters.model.ts122 + + + Federated + Federated + src/app/shared/shared-video-miniature/video-filters.model.ts124 + + + Languages + Languages + src/app/shared/shared-video-miniature/video-filters.model.ts132 + + + Categories + Categories + src/app/shared/shared-video-miniature/video-filters.model.ts141 + + + All videos + All videos + src/app/shared/shared-video-miniature/video-filters.model.ts150 + + + Blurred + Blurred + src/app/shared/shared-video-miniature/video-filters.model.ts225 + + + hidden + hidden + src/app/shared/shared-video-miniature/video-filters.model.ts231 + + + blurred + blurred + src/app/shared/shared-video-miniature/video-filters.model.ts232 + + + displayed + displayed + src/app/shared/shared-video-miniature/video-filters.model.ts234 + direct account followers متابعًا مباشرًا للحساب - - src/app/+accounts/accounts.component.ts152 + src/app/+accounts/accounts.component.ts152 + Report this account بلِّغ عن هذا الحساب - - src/app/+accounts/accounts.component.ts196 + src/app/+accounts/accounts.component.ts196 + VIDEOS فيديوهات @@ -6535,19 +6600,19 @@ The link will expire within 1 hour. Username copied تم نسخ اسم المستخدم - - - src/app/+accounts/accounts.component.ts120src/app/+video-channels/video-channels.component.ts103 + src/app/+accounts/accounts.component.ts120 + src/app/+video-channels/video-channels.component.ts103 + 1 subscriber مشترك - - src/app/+accounts/accounts.component.ts124 + src/app/+accounts/accounts.component.ts124 + subscribers مشتركا - - src/app/+accounts/accounts.component.ts126 + src/app/+accounts/accounts.component.ts126 + Audio-only صوت فقط @@ -6597,8 +6662,10 @@ The link will expire within 1 hour. Auto (via ffmpeg) تلقائي (عبر ffmpeg) src/app/+admin/config/shared/config.service.ts50 - - Followers of your instanceFollowers of your instance + + + Followers of your instance + Followers of your instance src/app/+admin/follows/followers-list/followers-list.component.html 3 @@ -6708,8 +6775,8 @@ The link will expire within 1 hour. Configuration updated. تم تحديث الإعدادات. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 + INSTANCE HOMEPAGE INSTANCE HOMEPAGE @@ -6881,8 +6948,10 @@ The link will expire within 1 hour. removed from instance followers أُزيل من متابعي المثيل src/app/+admin/follows/followers-list/followers-list.component.ts81 - - FollowFollow + + + Follow + Follow src/app/+admin/follows/following-list/follow-modal.component.html 3 @@ -6895,8 +6964,10 @@ The link will expire within 1 hour. src/app/+admin/follows/following-list/following-list.component.html 18 - - 1 host (without "http://"), account handle or channel handle per line1 host (without "http://"), account handle or channel handle per line + + + 1 host (without "http://"), account handle or channel handle per line + 1 host (without "http://"), account handle or channel handle per line src/app/+admin/follows/following-list/follow-modal.component.html 11 @@ -6905,9 +6976,11 @@ The link will expire within 1 hour. Follow request(s) sent! تم إرسال طلب المتابعة! - - src/app/+admin/follows/following-list/follow-modal.component.ts63 - Your instance subscriptionsYour instance subscriptions + src/app/+admin/follows/following-list/follow-modal.component.ts63 + + + Your instance subscriptions + Your instance subscriptions src/app/+admin/follows/following-list/following-list.component.html 3 @@ -6916,8 +6989,8 @@ The link will expire within 1 hour. Do you really want to unfollow ? هل تريد الغاء متابعة ؟ - - src/app/+admin/follows/following-list/following-list.component.ts46 + src/app/+admin/follows/following-list/following-list.component.ts46 + Unfollow إلغاء المتابَعة @@ -6926,8 +6999,8 @@ The link will expire within 1 hour. You are not following anymore. انت لا تتابع بعد الآن. - - src/app/+admin/follows/following-list/following-list.component.ts54 + src/app/+admin/follows/following-list/following-list.component.ts54 + enabled مفعّل @@ -6946,28 +7019,28 @@ The link will expire within 1 hour. Used مُستعمَل - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Available متوفر - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Do you really want to remove this video redundancy? هل تريد حقًا إزالة تكرار هذا الفيديو؟ - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + Remove redundancy إزالة التكرار - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + Video redundancies removed! تمت إزالة تكرار الفيديو! - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + Comment updated. تم تحديث التعليق. @@ -6996,9 +7069,9 @@ The link will expire within 1 hour. Copyright حقوق النشر - - - src/app/shared/shared-abuse-list/abuse-details.component.ts23src/app/shared/shared-moderation/abuse.service.ts161 + src/app/shared/shared-abuse-list/abuse-details.component.ts23 + src/app/shared/shared-moderation/abuse.service.ts161 + Server rules قواعد الخادم @@ -7007,31 +7080,31 @@ The link will expire within 1 hour. Thumbnails صور مصغرة - - - src/app/shared/shared-abuse-list/abuse-details.component.ts25src/app/shared/shared-moderation/abuse.service.ts176 + src/app/shared/shared-abuse-list/abuse-details.component.ts25 + src/app/shared/shared-moderation/abuse.service.ts176 + Internal actions الإجراءات الداخلية - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts56src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts56 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + Delete report احذف الإبلاغ - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + Actions for the flagged account الاجراءات للحسابات المعلمة - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + Mute account أكتم حسابا - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts304src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts304 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + Open video actions Open video actions @@ -7047,115 +7120,115 @@ The link will expire within 1 hour. Mute server account اكتم حساب خادم - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + Mark as accepted وضع علامة "مقبول" - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + Mark as rejected وضع علامة مرفوض - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + Add internal note أضف ملاحظة داخلية - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + Actions for the video الإجراءات على هذه الفيديو - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts79src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts79 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + Block video احجب الفيديو - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + Video blocked. حُجب الفيديو. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts357src/app/shared/shared-moderation/video-block.component.ts60 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts357 + src/app/shared/shared-moderation/video-block.component.ts60 + Unblock video إلغاء حجب الفيديو - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + Video unblocked. حُجب الفيديو. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + Delete video حذف الفيديو - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + Actions for the comment إجراءات على التعليق - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + Delete comment أزل التعليق - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + Do you really want to delete this comment? أتريد إزالة هذا التعليق؟ - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + Comment deleted. حُذف التعليق. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + Do you really want to delete this video? متأكد من حذف هذا الفيديو؟ - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/shared/shared-abuse-list/abuse-list-table.component.ts387src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts387 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + Video deleted. تم حذف الفيديو. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts98src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts98 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + Actions for the reporter إجراءات على المبلِّغ - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + Mute reporter أكتم المبلِّغ - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + Account muted by the instance. كُتم حساب بواسطة المثيل. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts446src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts446 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + Mute server أكتم الخادم - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + Server muted by the instance. كُتم الخادم بواسطة المثيل. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + Add a message to communicate with the reporter أضف رسالة لتواصل مع المبلِّغ @@ -7169,63 +7242,63 @@ The link will expire within 1 hour. Do you really want to delete this abuse report? هل تريد حقًا حذف تقرير إساءة الاستخدام هذا؟ - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + Abuse deleted. تم حذف الإساءة. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + Deleted comment تعليق محذوف - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + Messages with reporter راسل المبلِّغ - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + Messages with moderators راسل المشرفين - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + Update internal note حدِّث الملاحظة الداخلية - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + Switch video block to manual بدِّل طريقة حجب الفيديو إلى اليدوية - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts61 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts61 + Video switched to manual block. Video switched to manual block. - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts67 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts67 + Do you really want to unblock this video? It will be available again in the videos list. هل تريد إلغاء حجب هذا الفيديو؟ سيكون متاحًا مرة أخرى في قائمة مقاطع الفيديو. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts132src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts132 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + Unblock ألغ الحجب - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts83src/app/+admin/moderation/video-block-list/video-block-list.component.ts134src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts83 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts134 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + Video unblocked. ألغي حجب . - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts140src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts140 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + You don't have plugins installed yet. حاليا ليس لديك أية إضافة مثبتة. @@ -7316,23 +7389,23 @@ The link will expire within 1 hour. Plugins الإضافات - - src/app/+admin/plugins/shared/plugin-api.service.ts31 + src/app/+admin/plugins/shared/plugin-api.service.ts31 + Themes السمات - - src/app/+admin/plugins/shared/plugin-api.service.ts35 + src/app/+admin/plugins/shared/plugin-api.service.ts35 + plugin إضافة - - src/app/+admin/plugins/shared/plugin-api.service.ts43 + src/app/+admin/plugins/shared/plugin-api.service.ts43 + theme سمة - - src/app/+admin/plugins/shared/plugin-api.service.ts46 + src/app/+admin/plugins/shared/plugin-api.service.ts46 + IP address IP address @@ -7458,9 +7531,9 @@ The link will expire within 1 hour. Error خطأ - - - src/app/core/auth/auth.service.ts103src/app/core/notification/notifier.service.ts18 + src/app/core/auth/auth.service.ts103 + src/app/core/notification/notifier.service.ts18 + Standard logs السجلات القياسية @@ -7474,8 +7547,8 @@ The link will expire within 1 hour. User created. أُنشئ المستخدم . - - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts77 + Create user أنشئ مستخدما @@ -7499,25 +7572,23 @@ The link will expire within 1 hour. Update user password حدّث كلمة مرور المستخدم - - src/app/+admin/users/user-edit/user-password.component.ts53 - - + src/app/+admin/users/user-edit/user-password.component.ts53 + User updated. حُدّث حساب المستخدم . - - src/app/+admin/users/user-edit/user-update.component.ts92 + src/app/+admin/users/user-edit/user-update.component.ts92 + Update user تحديث المستخدِم - - src/app/+admin/users/user-edit/user-update.component.ts111 + src/app/+admin/users/user-edit/user-update.component.ts111 + An email asking for password reset has been sent to . أُرسل بريد لاستعادة كلمة المرور الى . - - src/app/+admin/users/user-edit/user-update.component.ts118 + src/app/+admin/users/user-edit/user-update.component.ts118 + Users list قائمة المستخدمين @@ -7538,14 +7609,12 @@ The link will expire within 1 hour. الاتحادية src/app/+admin/admin.component.ts26 - - Videos will be deleted, comments will be tombstoned. سيحذف مقاطع الفيديو ، ستحذف التعليقات. - - - src/app/+admin/users/user-list/user-list.component.ts82src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + src/app/+admin/users/user-list/user-list.component.ts82 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + Ban حظر @@ -7555,9 +7624,9 @@ The link will expire within 1 hour. User won't be able to login anymore, but videos and comments will be kept as is. لن يتمكن المستخدم من تسجيل الدخول بعد الآن ، ولكن سيتم الاحتفاظ بمقاطع الفيديو والتعليقات كما هي. - - - src/app/+admin/users/user-list/user-list.component.ts88src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + src/app/+admin/users/user-list/user-list.component.ts88 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + Unban ألغ الحظر @@ -7568,22 +7637,28 @@ The link will expire within 1 hour. Set Email as Verified تعيين البريد الإلكتروني كمتحقق منه - - - src/app/+admin/users/user-list/user-list.component.ts100src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 - CreatedCreated + src/app/+admin/users/user-list/user-list.component.ts100 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 + + + Created + Created src/app/+admin/users/user-list/user-list.component.ts 115 - - Daily quotaDaily quota + + + Daily quota + Daily quota src/app/+admin/users/user-list/user-list.component.ts 120 - - Last loginLast login + + + Last login + Last login src/app/+admin/users/user-list/user-list.component.ts 122 @@ -7619,72 +7694,71 @@ The link will expire within 1 hour. users deleted. حُذف مستخدما. - - src/app/+admin/users/user-list/user-list.component.ts201 + src/app/+admin/users/user-list/user-list.component.ts201 + users email set as verified. عيِّن البريد الالكتروني ل مستخدما كمتحقق منه. - - src/app/+admin/users/user-list/user-list.component.ts213 + src/app/+admin/users/user-list/user-list.component.ts213 + Incorrect username or password. اسم المستخدم أو كلمة المرور خاطئة. - - src/app/+login/login.component.ts163 + src/app/+login/login.component.ts163 + Your account is blocked. حسابك محجوب. - - src/app/+login/login.component.ts164 + src/app/+login/login.component.ts164 + Video channel created. أُنشئت قناة الفيديو . - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts66 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts66 + This name already exists on this instance. هذا الإسم موجود على هذا المثيل. - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts72 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts72 + Video channel updated. حُدثت قناة فيديو . - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 + Banner changed. Banner changed. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 + banner banner - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 + Banner deleted. Banner deleted. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 + Avatar changed. تم تغيير صورتك الرمزية. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts44src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + avatar avatar - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 + src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 + Avatar deleted. Avatar deleted. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts61src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 - + src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 + Video channel deleted. حُذفت قناة فيديو . @@ -7740,28 +7814,28 @@ The link will expire within 1 hour. Videos history is enabled سجل مقاطع الفيديو مفعل - - src/app/+my-library/my-history/my-history.component.ts114 + src/app/+my-library/my-history/my-history.component.ts114 + Videos history is disabled سِجِل الفيديوهات معطّل - - src/app/+my-library/my-history/my-history.component.ts115 + src/app/+my-library/my-history/my-history.component.ts115 + Delete videos history احذف سِجِل الفيديوهات - - src/app/+my-library/my-history/my-history.component.ts127 + src/app/+my-library/my-history/my-history.component.ts127 + Are you sure you want to delete all your videos history? هل أنت متأكد من أنك تريد حذف سجل الفيديو بأكمله؟ - - src/app/+my-library/my-history/my-history.component.ts128 + src/app/+my-library/my-history/my-history.component.ts128 + Videos history deleted تم حذف سجل مقاطع الفيديو - - src/app/+my-library/my-history/my-history.component.ts136 + src/app/+my-library/my-history/my-history.component.ts136 + My watch history My watch history @@ -7802,24 +7876,24 @@ The link will expire within 1 hour. You current password is invalid. كلمة المرور الحالية غير صالحة. - - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + Password updated. حُدثت كلمة المرور. - - src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted. هل انت متأكد من حذف حسابك؟ سيؤدي هذا إلى حذف جميع بياناتك ، بما في ذلك القنوات ومقاطع الفيديو والتعليقات. المحتوى الذي تم تخزينه مؤقتًا بواسطة خوادم أخرى وأطراف أخرى قد يستغرق وقتًا أطول ليتم حذفه. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + Type your username to confirm أدخل اسم المستخدِم للتأكيد - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + Delete your account احذف حسابك @@ -7828,13 +7902,13 @@ The link will expire within 1 hour. Delete my account احذف حسابي - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + Your account is deleted. حُذف حسابك. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + New video from your subscriptions فيديو جديد من اشتراكاتك @@ -7929,8 +8003,8 @@ The link will expire within 1 hour. Profile updated. حُدث ملفك الشخصي. - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 + People can find you using @@ People can find you using @@ @@ -7942,8 +8016,8 @@ The link will expire within 1 hour. Playlist created. أُنشئت القائمة }. - - src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + Create أنشئ @@ -7964,7 +8038,7 @@ The link will expire within 1 hour. Applications - Applications + التطبيقات src/app/+my-account/my-account.component.ts60 src/app/+my-account/my-account-routing.module.ts127 @@ -7976,15 +8050,15 @@ The link will expire within 1 hour. Playlist updated. حُدثت قائمة }. - - src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + Do you really want to delete ? هل تريد حذف ؟ - - - - src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34src/app/+my-library/my-videos/my-videos.component.ts143 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34 + src/app/+my-library/my-videos/my-videos.component.ts143 + Change ownership Change ownership @@ -7998,11 +8072,11 @@ The link will expire within 1 hour. My videos فيديوهاتي - - - - - src/app/+my-library/my-library-routing.module.ts76src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts71src/app/core/menu/menu.service.ts77 + src/app/+my-library/my-library-routing.module.ts76 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts71 + src/app/core/menu/menu.service.ts77 + Ownership changes Ownership changes @@ -8011,13 +8085,13 @@ The link will expire within 1 hour. Do you really want to delete videos? هل تريد حذف فيديوهات ؟ - - src/app/+my-library/my-videos/my-videos.component.ts116 + src/app/+my-library/my-videos/my-videos.component.ts116 + videos deleted. حُذفت فيديوهات . - - src/app/+my-library/my-videos/my-videos.component.ts133 + src/app/+my-library/my-videos/my-videos.component.ts133 + Do you really want to delete ? هل تريد حذف ؟ @@ -8029,15 +8103,17 @@ The link will expire within 1 hour. Video deleted. حُذف فيديو . - - - src/app/+my-library/my-videos/my-videos.component.ts151src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + src/app/+my-library/my-videos/my-videos.component.ts151 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + Ownership change request sent. تم إرسال طلب تغيير الملكية. - - src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 - Sort bySort by + src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 + + + Sort by + Sort by src/app/+my-library/my-videos/my-videos.component.html 26 @@ -8107,41 +8183,41 @@ The link will expire within 1 hour. Today اليوم - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts123 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts123 + Yesterday البارحة - - src/app/shared/shared-video-miniature/videos-list.component.ts124 + src/app/shared/shared-video-miniature/videos-list.component.ts124 + This week This week - - src/app/shared/shared-video-miniature/videos-list.component.ts125 + src/app/shared/shared-video-miniature/videos-list.component.ts125 + This month This month - - src/app/shared/shared-video-miniature/videos-list.component.ts126 + src/app/shared/shared-video-miniature/videos-list.component.ts126 + Last month الشهر الماضي - - src/app/shared/shared-video-miniature/videos-list.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts127 + Older أقدم - - src/app/shared/shared-video-miniature/videos-list.component.ts128 + src/app/shared/shared-video-miniature/videos-list.component.ts128 + Cannot load more videos. Try again later. لا يمكن تحميل مزيد من الفيديوهات. أعد المحاولة لاحقا. - - src/app/shared/shared-video-miniature/videos-list.component.ts225src/app/shared/shared-video-miniature/videos-selection.component.ts127 - + src/app/shared/shared-video-miniature/videos-list.component.ts225 + src/app/shared/shared-video-miniature/videos-selection.component.ts127 + Last 7 days الأسبوع الماضي @@ -8201,22 +8277,23 @@ The link will expire within 1 hour. Views عدد المشاهدات - - - src/app/+search/search-filters.component.ts94 + src/app/+search/search-filters.component.ts94 + Search index is unavailable. Retrying with instance results instead. فهرس البحث غير متاح. بدلا من ذلك يعيد المحاولة باستخدام نتائج المثيل. - - src/app/+search/search.component.ts163 + src/app/+search/search.component.ts163 + Search error خطأ في البحث - - src/app/+search/search.component.ts164 - PeerTube instance host filter is invalidPeerTube instance host filter is invalid - - src/app/+search/search.component.ts332 + src/app/+search/search.component.ts164 + + + PeerTube instance host filter is invalid + PeerTube instance host filter is invalid + src/app/+search/search.component.ts332 + Search ابحث @@ -8236,25 +8313,24 @@ The link will expire within 1 hour. Now please check your emails to verify your account and complete signup. يرجى مراجعة رسائل بريدك الإلكتروني للتحقق من حسابك وإكمال التسجيل. - - src/app/+signup/+register/register.component.ts129 + src/app/+signup/+register/register.component.ts129 + You are now logged in as ! أنت مسجل ك ! - - src/app/+signup/+register/register.component.ts137 + src/app/+signup/+register/register.component.ts137 + An email with verification link will be sent to . سيرسل بريد يحتوي رابط التفعيل الى . src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 - Subscribe to the account الاشتراك في الحساب - - - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts713 + src/app/+video-channels/video-channels.component.ts71 + src/app/+videos/+video-watch/video-watch.component.ts713 + PLAYLISTS PLAYLISTS @@ -8528,50 +8604,50 @@ The link will expire within 1 hour. All languages كل اللغات - - - src/app/+videos/+video-edit/shared/video-edit.component.ts180src/app/shared/shared-forms/select/select-languages.component.ts25 + src/app/+videos/+video-edit/shared/video-edit.component.ts180 + src/app/shared/shared-forms/select/select-languages.component.ts25 + Video to import updated. تم تحديث الفيديو المراد استيراده. - - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + Your video was uploaded to your account and is private. تم رفع الفيديو الخاص بك إلى حسابك وهو خاص. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? ولكن ستفقد البيانات المرتبطة (العلامات ،الوصف...) ، هل تريد بالتأكيد مغادرة هذه الصفحة؟ - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? لم يرفع الفيديو الخاص بك حتى الآن ، هل تريد بالتأكيد مغادرة هذه الصفحة؟ - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload رفع - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload ارفع - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. نُشر الفيديو. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. لم تحفظ التغييرات! إذا غادرت ، ستفقد التغييرات. - - src/app/+videos/+video-edit/video-update.component.ts94 + src/app/+videos/+video-edit/video-update.component.ts94 + Video updated. حُدث الفيديو. @@ -8585,8 +8661,8 @@ The link will expire within 1 hour. When active, the next video is automatically played after the current one. عندما ينشط ، يشغل الفيديو التالي تلقائيًا بعد الفيديو الحالي. - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + sec ثا @@ -8605,23 +8681,23 @@ The link will expire within 1 hour. Stop autoplaying next video أوقف التشغيل التلقائي للفيديو التالي - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + Autoplay next video شغل الفيديو التالي تلقائيًا - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + Stop looping playlist videos أوقف تكرار تشغيل مقاطع قائمة التشغيل - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + Loop playlist videos تكرار تشغيل مقاطع قائمة التشغيل - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 + Placeholder image Placeholder image @@ -8633,54 +8709,54 @@ The link will expire within 1 hour. Like this video الإعجاب بهذه الفيديو - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + Dislike this video ألغ الإعجاب بهذه الفيديو - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + Support options for this video خيارات الدعم لهذا الفيديو - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + Save to playlist احفظ في قائمة التشغيل - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + You need to be <a href="/login">logged in</a> to rate this video. You need to be <a href="/login">logged in</a> to rate this video. - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? هذا الفيديو ليس متوفرا على هذا المثيل. هل تريد التوجه المثيل الأصلي: <a href=""></a> ؟ - - src/app/+videos/+video-watch/video-watch.component.ts296 + src/app/+videos/+video-watch/video-watch.component.ts296 + Redirection اعادة توجيه - - src/app/+videos/+video-watch/video-watch.component.ts297 + src/app/+videos/+video-watch/video-watch.component.ts297 + This video contains mature or explicit content. Are you sure you want to watch it? يحتوي هذا الفيديو على محتوى للبالغين أو محتوى صريح. أمتأكد من مشاهدته؟ - - src/app/+videos/+video-watch/video-watch.component.ts343 + src/app/+videos/+video-watch/video-watch.component.ts343 + Mature or explicit content محتوى للبالغين أو محتوى صريح - - src/app/+videos/+video-watch/video-watch.component.ts344 + src/app/+videos/+video-watch/video-watch.component.ts344 + Up Next التالي - - src/app/+videos/+video-watch/video-watch.component.ts415 + src/app/+videos/+video-watch/video-watch.component.ts415 + Cancel ألغ @@ -8689,86 +8765,84 @@ The link will expire within 1 hour. Autoplay is suspended أُوقف التشغيل التلقائي - - src/app/+videos/+video-watch/video-watch.component.ts417 + src/app/+videos/+video-watch/video-watch.component.ts417 + Enter/exit fullscreen (requires player focus) ادخل / اخرج من وضع ملء الشاشة (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts688 + src/app/+videos/+video-watch/video-watch.component.ts688 + Play/Pause the video (requires player focus) شغل / أوقف مؤقتًا الفيديو (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts689 + src/app/+videos/+video-watch/video-watch.component.ts689 + Mute/unmute the video (requires player focus) أكتم / ألغ كتم الفيديو (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts690 + src/app/+videos/+video-watch/video-watch.component.ts690 + Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) التخطي إلى نسبة مئوية من الفيديو: 0 هو 0٪ و 9 هو 90٪ (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts692 + src/app/+videos/+video-watch/video-watch.component.ts692 + Increase the volume (requires player focus) زد مستوى الصوت (يتطلب تركيز اللاعب) - - src/app/+videos/+video-watch/video-watch.component.ts694 + src/app/+videos/+video-watch/video-watch.component.ts694 + Decrease the volume (requires player focus) خفّض مستوى الصوت (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts695 + src/app/+videos/+video-watch/video-watch.component.ts695 + Seek the video forward (requires player focus) البحث عن الفيديو (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts697 + src/app/+videos/+video-watch/video-watch.component.ts697 + Seek the video backward (requires player focus) طلب الفيديو للخلف (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts698 + src/app/+videos/+video-watch/video-watch.component.ts698 + Increase playback rate (requires player focus) زيادة معدل التشغيل (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts700 + src/app/+videos/+video-watch/video-watch.component.ts700 + Decrease playback rate (requires player focus) تقليل معدل التشغيل (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+videos/+video-watch/video-watch.component.ts701 + Navigate in the video frame by frame (requires player focus) تصفح الفيديو إطار فإطار (يتطلب تركيز المشغل) - - src/app/+videos/+video-watch/video-watch.component.ts703 + src/app/+videos/+video-watch/video-watch.component.ts703 + Like the video أعجبني الفيديو - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + Dislike the video لم يعجبني الفيديو - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + Recently added أُضيفت حديثًا - - - src/app/+videos/video-list/videos-list-common-page.component.ts195src/app/core/menu/menu.service.ts137 + src/app/+videos/video-list/videos-list-common-page.component.ts195 + src/app/core/menu/menu.service.ts137 + Videos from your subscriptions مقاطع فيديو من اشتراكاتك - - src/app/+videos/video-list/video-user-subscriptions.component.ts30 - - + src/app/+videos/video-list/video-user-subscriptions.component.ts30 + Subscriptions الاشتراكات @@ -8792,12 +8866,13 @@ The link will expire within 1 hour. Local videos الفيديوهات المحلية - - - - - src/app/+videos/video-list/videos-list-common-page.component.ts189src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 - Only videos uploaded on this instance are displayedOnly videos uploaded on this instance are displayed + src/app/+videos/video-list/videos-list-common-page.component.ts189 + src/app/core/menu/menu.service.ts142 + src/app/core/menu/menu.service.ts143 + + + Only videos uploaded on this instance are displayed + Only videos uploaded on this instance are displayed src/app/+videos/video-list/videos-list-common-page.component.ts 190 @@ -8806,21 +8881,19 @@ The link will expire within 1 hour. Discover videos اكتشف فيديوهات - - - src/app/+videos/videos-routing.module.ts19src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts19 + src/app/core/menu/menu.service.ts124 + Trending videos الفيديوهات الشائعة - - - src/app/core/menu/menu.service.ts130 + src/app/core/menu/menu.service.ts130 + Recently added videos الفيديوهات المنشورة حديثا - - - src/app/core/menu/menu.service.ts136 + src/app/core/menu/menu.service.ts136 + Upload a video ارفع فيديو @@ -8834,70 +8907,70 @@ The link will expire within 1 hour. Focus the search bar ركز شريط البحث - - src/app/app.component.ts270 + src/app/app.component.ts270 + Toggle the left menu بدّل القائمة اليسرى - - src/app/app.component.ts275 + src/app/app.component.ts275 + Go to the discover videos page إنتقل إلى صفحة اكتشاف الفيديوهات - - src/app/app.component.ts280 + src/app/app.component.ts280 + Go to the trending videos page انتقل إلى صفحة الفيديوهات الشائعة - - src/app/app.component.ts285 + src/app/app.component.ts285 + Go to the recently added videos page انتقل إلى صفحةالفيديوهات المضافة حديثا - - src/app/app.component.ts290 + src/app/app.component.ts290 + Go to the local videos page انتقل إلى صفحة الفيديوهات المحلية - - src/app/app.component.ts295 + src/app/app.component.ts295 + Go to the videos upload page انتقل إلى صفحة رفع الفيديوهات - - src/app/app.component.ts300 + src/app/app.component.ts300 + Go to my subscriptions انتقل إلى اشتراكاتي - - src/app/core/auth/auth.service.ts63 + src/app/core/auth/auth.service.ts63 + Go to my videos انتقل إلى فيديوهاتي - - src/app/core/auth/auth.service.ts67 + src/app/core/auth/auth.service.ts67 + Go to my imports انتقل إلى مستورداتي - - src/app/core/auth/auth.service.ts71 + src/app/core/auth/auth.service.ts71 + Go to my channels انتقل إلى قنواتي - - src/app/core/auth/auth.service.ts75 + src/app/core/auth/auth.service.ts75 + - Cannot retrieve OAuth Client credentials: . + Cannot retrieve OAuth Client credentials: . Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section. Cannot retrieve OAuth Client credentials: . Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section. - - src/app/core/auth/auth.service.ts98 + src/app/core/auth/auth.service.ts98 + You need to reconnect. تحتاج لإعادة الإتصال. - - src/app/core/auth/auth.service.ts221 + src/app/core/auth/auth.service.ts221 + Keyboard Shortcuts: اختصارات لوحة المفاتيح: @@ -8910,8 +8983,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/core/menu/menu.service.ts 98 - - In my libraryIn my library + + + In my library + In my library src/app/core/menu/menu.service.ts 104 @@ -8920,8 +8995,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Trending Trending - - src/app/+videos/video-list/videos-list-common-page.component.ts201src/app/core/menu/menu.service.ts131 + src/app/+videos/video-list/videos-list-common-page.component.ts201 + src/app/core/menu/menu.service.ts131 + ON ON @@ -8944,18 +9020,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Too many attempts, please try again after minutes. أكثرت المحاولات، حاول لاحقا بعد دقيقة. - - src/app/core/rest/rest-extractor.service.ts70 + src/app/core/rest/rest-extractor.service.ts70 + Too many attempts, please try again later. أكثرت المحاولات، حاول لاحقا. - - src/app/core/rest/rest-extractor.service.ts72 + src/app/core/rest/rest-extractor.service.ts72 + Server error. Please retry later. خطأ في السيرفر. يرجى إعادة المحاولة لاحقا. - - src/app/core/rest/rest-extractor.service.ts75 + src/app/core/rest/rest-extractor.service.ts75 + All unsaved data will be lost, are you sure you want to leave this page? ستفقد جميع البيانات غير المحفوظة ، هل تريد مغادرة هذه الصفحة؟ @@ -8964,13 +9040,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Administrator المدير - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Moderator مشرف - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Search videos, playlists, channels… @@ -8982,28 +9058,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular hide أخف - - src/app/menu/menu.component.ts301 + src/app/menu/menu.component.ts301 + blur طمس - - src/app/menu/menu.component.ts305 + src/app/menu/menu.component.ts305 + display اعرض - - src/app/menu/menu.component.ts309 + src/app/menu/menu.component.ts309 + Unknown مجهول - - src/app/menu/menu.component.ts196 + src/app/menu/menu.component.ts196 + any language أي لغة - - src/app/menu/menu.component.ts266 + src/app/menu/menu.component.ts266 + Confirm أكد @@ -9012,39 +9088,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Domain is required. اسم النطاق مطلوب. - - src/app/shared/form-validators/host-validators.ts92src/app/shared/form-validators/host-validators.ts101 - Hosts entered are invalid.Hosts entered are invalid. + src/app/shared/form-validators/host-validators.ts92 + src/app/shared/form-validators/host-validators.ts101 + + + Hosts entered are invalid. + Hosts entered are invalid. src/app/shared/form-validators/host-validators.ts 93 - - Hosts entered contain duplicates.Hosts entered contain duplicates. + + + Hosts entered contain duplicates. + Hosts entered contain duplicates. src/app/shared/form-validators/host-validators.ts 94 - - Hosts or handles are invalid.Hosts or handles are invalid. + + + Hosts or handles are invalid. + Hosts or handles are invalid. src/app/shared/form-validators/host-validators.ts 102 - - Hosts or handles contain duplicates.Hosts or handles contain duplicates. + + + Hosts or handles contain duplicates. + Hosts or handles contain duplicates. src/app/shared/form-validators/host-validators.ts 103 - - is not valid غير صالح - - src/app/shared/form-validators/host-validators.ts27src/app/shared/form-validators/host-validators.ts50 + src/app/shared/form-validators/host-validators.ts27 + src/app/shared/form-validators/host-validators.ts50 + Instance name is required. اسم مثيل الخادم مطلوب. @@ -9367,17 +9451,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Description must be at least 3 characters long. يجب ألاّ يقل الوصف عن 3 محراف. - - - - src/app/shared/form-validators/user-validators.ts125src/app/shared/form-validators/video-channel-validators.ts36src/app/shared/form-validators/video-playlist-validators.ts33 + src/app/shared/form-validators/user-validators.ts125 + src/app/shared/form-validators/video-channel-validators.ts36 + src/app/shared/form-validators/video-playlist-validators.ts33 + Description cannot be more than 1000 characters long. يجب ألاّ يزيد الوصف عن 1000 محرف. - - - - src/app/shared/form-validators/user-validators.ts126src/app/shared/form-validators/video-channel-validators.ts37src/app/shared/form-validators/video-playlist-validators.ts34 + src/app/shared/form-validators/user-validators.ts126 + src/app/shared/form-validators/video-channel-validators.ts37 + src/app/shared/form-validators/video-playlist-validators.ts34 + You must agree with the instance terms in order to register on it. يجب عليك قبول شروط مثيل الخادم لتسجيل فيه. @@ -9396,23 +9480,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display name is required. الاسم العلني مطلوب. - - - - src/app/shared/form-validators/user-validators.ts155src/app/shared/form-validators/video-channel-validators.ts24src/app/shared/form-validators/video-playlist-validators.ts12 + src/app/shared/form-validators/user-validators.ts155 + src/app/shared/form-validators/video-channel-validators.ts24 + src/app/shared/form-validators/video-playlist-validators.ts12 + Display name must be at least 1 character long. يجب ألا يقل الاسم العلني عن محرف واحد. - - - - src/app/shared/form-validators/user-validators.ts156src/app/shared/form-validators/video-channel-validators.ts25src/app/shared/form-validators/video-playlist-validators.ts13 + src/app/shared/form-validators/user-validators.ts156 + src/app/shared/form-validators/video-channel-validators.ts25 + src/app/shared/form-validators/video-playlist-validators.ts13 + Display name cannot be more than 50 characters long. يجب ألاّ يزيد الاسم العلني عن 50 محرفًا. - - - src/app/shared/form-validators/user-validators.ts157src/app/shared/form-validators/video-channel-validators.ts26 + src/app/shared/form-validators/user-validators.ts157 + src/app/shared/form-validators/video-channel-validators.ts26 + Report reason is required. سبب الإبلاغ مطلوب. @@ -9496,33 +9580,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Name is required. الاسم مطلوب. - - src/app/shared/form-validators/video-channel-validators.ts10 + src/app/shared/form-validators/video-channel-validators.ts10 + Name must be at least 1 character long. يجب ألاّ يقل الاسم عن محرف واحد. - - src/app/shared/form-validators/video-channel-validators.ts11 + src/app/shared/form-validators/video-channel-validators.ts11 + Name cannot be more than 50 characters long. يجب ألاّ يزيد الاسم عن 50 محرفًا. - - src/app/shared/form-validators/video-channel-validators.ts12 + src/app/shared/form-validators/video-channel-validators.ts12 + Name should be lowercase alphanumeric; dots and underscores are allowed. يجب أن يتكون الاسم من حروف صغيرة و أرقام ; يسمح بالنقاط والشَرطة السفلية. - - src/app/shared/form-validators/video-channel-validators.ts13 + src/app/shared/form-validators/video-channel-validators.ts13 + Support text must be at least 3 characters long. يجب ألاّ يقل نص الدعم عن 3 محارف. - - src/app/shared/form-validators/video-channel-validators.ts47 + src/app/shared/form-validators/video-channel-validators.ts47 + Support text cannot be more than 1000 characters long يجب ألاّ يزيد نص الدعم عن 1000 محرف - - src/app/shared/form-validators/video-channel-validators.ts48 + src/app/shared/form-validators/video-channel-validators.ts48 + See the documentation to learn how to use the PeerTube live streaming feature. See the documentation to learn how to use the PeerTube live streaming feature. @@ -9682,9 +9766,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Copied نُسخ - - - src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts197 + src/app/shared/shared-forms/input-toggle-hidden.component.ts47 + src/app/shared/shared-video-miniature/video-download.component.ts197 + Copy Copy @@ -9694,19 +9778,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular max size اقصى حجم - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Maximize editor - - src/app/shared/shared-forms/markdown-textarea.component.ts49 + src/app/shared/shared-forms/markdown-textarea.component.ts49 + Exit maximized editor Exit maximized editor - - src/app/shared/shared-forms/markdown-textarea.component.ts50 + src/app/shared/shared-forms/markdown-textarea.component.ts50 + This file is too large. حجم هذا الملف كبير جدًّا. @@ -9716,14 +9800,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular PeerTube cannot handle this kind of file. Accepted extensions are }. لا يمكن لبيرتيوب التعامل نع هذا الملف. الامتدادات المدعومة }. src/app/shared/shared-forms/reactive-file.component.ts56 - - All categoriesAll categories + + + All categories + All categories src/app/shared/shared-forms/select/select-categories.component.ts 24 - - You can't select more than itemsYou can't select more than items + + + You can't select more than items + You can't select more than items src/app/shared/shared-forms/select/select-checkbox-all.component.ts 81 @@ -9732,8 +9820,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Add a new option أضف خيار جديد - - src/app/shared/shared-forms/select/select-checkbox.component.ts27 + src/app/shared/shared-forms/select/select-checkbox.component.ts27 + Custom value... Custom value... @@ -9755,8 +9843,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Displayed معروض - - src/app/shared/shared-instance/instance-features-table.component.ts55src/app/shared/shared-video-miniature/video-filters.model.ts227 + src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-video-miniature/video-filters.model.ts227 + ~ 1 minute ~ 1 دقيقة @@ -9785,16 +9874,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (channel page) (صفحة القناة) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (صفحة الحساب) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + years ago سنة @@ -9906,214 +9995,214 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Close search Close search - - src/app/shared/shared-main/misc/simple-search-input.component.html19 + src/app/shared/shared-main/misc/simple-search-input.component.html19 + Only I can see this video أنا الوحيد القادر على مشاهدة هذا الفيديو - - src/app/shared/shared-main/video/video.service.ts325 + src/app/shared/shared-main/video/video.service.ts325 + Only shareable via a private link يمكن مشاركته عبر رابط خاص فقط - - src/app/shared/shared-main/video/video.service.ts326 + src/app/shared/shared-main/video/video.service.ts326 + Anyone can see this video يمكن لأي شخص أن يرى هذا الفيديو - - src/app/shared/shared-main/video/video.service.ts327 + src/app/shared/shared-main/video/video.service.ts327 + Only users of this instance can see this video يمكن لمستخدمي هذا المثيلة فقط مشاهدة هذا الفيديو - - src/app/shared/shared-main/video/video.service.ts328 + src/app/shared/shared-main/video/video.service.ts328 + viewers viewers - - src/app/shared/shared-main/video/video.model.ts216 + src/app/shared/shared-main/video/video.model.ts216 + views views - - src/app/shared/shared-main/video/video.model.ts219 + src/app/shared/shared-main/video/video.model.ts219 + Close أغلق - - node_modules/@ng-bootstrap/src/alert/alert.ts58 + node_modules/@ng-bootstrap/src/alert/alert.ts58 + Slide of Slide of Currently selected slide number read by screen reader - - node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + Previous السابق - - node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + Next التالي - - node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + Previous month الشهر الماضي - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + Next month الشهر القادم - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + Select month اختر شهرا - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + Select year اختر سنة - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + «« «« - - node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + « « - - node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + » » - - node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + »» »» - - node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + First الأول - - node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + Previous السابق - - node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + Next التالي - - node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + Last الأخير - - node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + - - node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + HH ساسا - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + Hours ساعات - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + MM دد - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + Minutes دقائق - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + Increment hours زد ساعات - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + Decrement hours اطرح ساعات - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + Increment minutes زد دقائق - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + Decrement minutes اطرح دقائق - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + SS ثاثا - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + Seconds ثواني - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + Increment seconds زد ثواني - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + Decrement seconds اطرح ثواني - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + Close اغلق - - node_modules/@ng-bootstrap/src/toast/toast.ts78 + node_modules/@ng-bootstrap/src/toast/toast.ts78 + Account unmuted. أُلغي كتم حساب . - - - src/app/shared/shared-moderation/account-blocklist.component.ts42src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + src/app/shared/shared-moderation/account-blocklist.component.ts42 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + Account unmuted by your instance. أُلغي كتم حساب بواسطة المثيل. - - src/app/shared/shared-moderation/account-blocklist.component.ts43 + src/app/shared/shared-moderation/account-blocklist.component.ts43 + Process domains اسماء نطاق الاجراء @@ -10137,9 +10226,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Instance unmuted. أُلغي كتم مثيل . - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 + Instance unmuted by your instance. أُلغي كتم مثيل بواسطة مثيلك. @@ -10148,9 +10237,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Instance muted. كُتم مثيل . - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + Instance muted by your instance. كُتم مثيل بواسطة مثيلك. @@ -10184,19 +10273,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular User deleted. حُذف المستخدم . - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + User email set as verified عُين بريد المستخدم كمتحقق منه - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + Account muted. كُتم حساب . - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + Instance muted. كُتم مثيل . @@ -10208,158 +10297,158 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. أُلغي كتم حساب بواسطة المثيل. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + Instance muted by the instance. كُتم مثيل بواسطة المثيل. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + Instance unmuted by the instance. أُلغي كتم مثيل بواسطة المثيل. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + Are you sure you want to remove all the comments of this account? هل أنت متأكد من أنك تريد إزالة جميع التعليقات هذا الحساب؟ - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + Delete account comments احذف تعليقات الحساب - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + Will remove comments of this account (may take several minutes). ستزيل التعليقات من هذا الحساب (قد تستغرق عدة دقائق). - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + Edit user حرر المستخدم - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + Change quota, role, and more. غيّر الحصة والدور والمزيد. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + Delete user احذف المستخدم - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + Unban user ألغ حظر المستخدم - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + Allow the user to login and create videos/comments again اسمح للمستخدم بتسجيل الدخول وإنشاء مقاطع فيديو / تعليقات مرة أخرى - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + Mute this account أكتم هذا الحساب - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + Hide any content from that user from you. Hide any content from that user from you. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + Unmute this account ألغ الكتم عن هذا الحساب - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + Show back content from that user for you. أعد عرض محتوى هذا المستخدم . - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + Mute the instance أكتم مثيل الخادم - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + Hide any content from that instance for you. إخف عنك أي محتوى من هذا المنصة. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + Unmute the instance ألغ الكتم عن مثيل الخادم - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + Show back content from that instance for you. أعد عرض محتوى هذا المثيل . - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + Remove comments from your videos أزل التعليقات مِن فيديوهاتك - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + Remove comments made by this account on your videos. Remove comments made by this account on your videos. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + Mute this account by your instance أكتم هذا الحساب باستخدام مثيلك - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + Hide any content from that user from you, your instance and its users. Hide any content from that user from you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + Unmute this account by your instance ألغ كتم هذا الحساب باستخدام مثيلك - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + Show this user's content to the users of this instance again. Show this user's content to the users of this instance again. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + Mute the instance by your instance أكتم المثيل باستخدام مثيلك - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + Hide any content from that instance from you, your instance and its users. Hide any content from that instance from you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + Unmute the instance by your instance ألغ كتم المثيل باستخدام مثيلك - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + Show back content from that instance for you, your instance and its users. أعد عرض محتوى هذا المثيل ، لك و لمثيلك وجميع مستخدميه. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + Remove comments from your instance أزل التعليقات من مثيلك - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + Remove comments made by this account from your instance. Remove comments made by this account from your instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + Violent or repulsive عنيف أو بغيض @@ -10388,38 +10477,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes. يحتوي على تسويق أو إزعاج أو أخبار مضللة عن قصد أو صورة مصغرة/نص/وسم مضلل. يرجى تقديم مصادر موثوقة للإبلاغ عن الخدع. - - src/app/shared/shared-moderation/abuse.service.ts151 + src/app/shared/shared-moderation/abuse.service.ts151 + Privacy breach or doxxing انتهاك الخصوصية أو كشف للخصوصيات - - src/app/shared/shared-moderation/abuse.service.ts155 + src/app/shared/shared-moderation/abuse.service.ts155 + Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details). يحتوي على معلومات شخصية يمكن استخدامها لتتبع شخص ما أو تحديد هويته أو الاتصال به أو انتحال شخصيته (مثل الاسم أو العنوان أو رقم الهاتف أو البريد الإلكتروني أو تفاصيل بطاقة الائتمان). - - src/app/shared/shared-moderation/abuse.service.ts157 + src/app/shared/shared-moderation/abuse.service.ts157 + Infringes your copyright wrt. the regional laws with which the server must comply. ينتهك حقوق النشر خاصتك. أو القوانين الاقليمية المغروضة على الخادم. - - src/app/shared/shared-moderation/abuse.service.ts162 + src/app/shared/shared-moderation/abuse.service.ts162 + Breaks server rules يكسر قواعد الخادم - - src/app/shared/shared-moderation/abuse.service.ts166 + src/app/shared/shared-moderation/abuse.service.ts166 + Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server. أي شيء غير مذكور أعلاه يخالف شروط الخدمة أو قواعد السلوك أو القواعد العامة المعمول بها على الخادم. - - src/app/shared/shared-moderation/abuse.service.ts168 + src/app/shared/shared-moderation/abuse.service.ts168 + The above can only be seen in thumbnails. يمكن رؤية ما سبق فقط في الصور المصغرة. - - src/app/shared/shared-moderation/abuse.service.ts177 + src/app/shared/shared-moderation/abuse.service.ts177 + Captions تسميات توضيحية @@ -10429,13 +10518,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular The above can only be seen in captions (please describe which). لا يمكن رؤية ما ورد أعلاه إلا في التسميات التوضيحية (يرجى وصفها). - - src/app/shared/shared-moderation/abuse.service.ts182 + src/app/shared/shared-moderation/abuse.service.ts182 + Video reported. فيديو مبلغ عنه. - - src/app/shared/shared-moderation/report-modals/video-report.component.ts113 + src/app/shared/shared-moderation/report-modals/video-report.component.ts113 + Add to watch later أضف إلى المشاهدة لاحقًا @@ -10454,29 +10543,29 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Interface settings updated. حُدثت إعدادات الواجهة. - - - src/app/shared/shared-user-settings/user-interface-settings.component.ts73src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + src/app/shared/shared-user-settings/user-interface-settings.component.ts73 + src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + Unknown language لغة غير معروفة - - src/app/shared/shared-forms/select/select-languages.component.ts41 + src/app/shared/shared-forms/select/select-languages.component.ts41 + Too many languages are enabled. Please enable them all or stay below 20 enabled languages. فُعّلت كثير من اللغات. فعّل كل اللغات أو 20 لغة على الأكثر. - - src/app/shared/shared-user-settings/user-video-settings.component.ts76 + src/app/shared/shared-user-settings/user-video-settings.component.ts76 + Video settings updated. حُدثت إعدادات الفيديو. - - src/app/shared/shared-user-settings/user-video-settings.component.ts121 + src/app/shared/shared-user-settings/user-video-settings.component.ts121 + Display/Video settings updated. حُدثت إعدادات العرض / الفيديو. - - src/app/shared/shared-user-settings/user-video-settings.component.ts130 + src/app/shared/shared-user-settings/user-video-settings.component.ts130 + Subscribed to all current channels of . You will be notified of all their new videos. اشتركت في كل قنوات . سيتم إشعارك بالفيديوهات الجديدة. @@ -10536,9 +10625,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display live information Display live information - - - src/app/+my-library/my-videos/my-videos.component.ts174src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + src/app/+my-library/my-videos/my-videos.component.ts174 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + Update حدّث @@ -10574,178 +10663,210 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Remove أزل - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + Remove & re-draft أزل وأعد الصياغة - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + Encoder اداة ترميز - - src/app/shared/shared-video-miniature/video-download.component.ts213 + src/app/shared/shared-video-miniature/video-download.component.ts213 + Format name اسم التنسيق - - src/app/shared/shared-video-miniature/video-download.component.ts214 + src/app/shared/shared-video-miniature/video-download.component.ts214 + Size حجم - - src/app/shared/shared-video-miniature/video-download.component.ts215 + src/app/shared/shared-video-miniature/video-download.component.ts215 + Bitrate معدل البت - - - src/app/shared/shared-video-miniature/video-download.component.ts217src/app/shared/shared-video-miniature/video-download.component.ts240 + src/app/shared/shared-video-miniature/video-download.component.ts217 + src/app/shared/shared-video-miniature/video-download.component.ts240 + Codec ترميز - - src/app/shared/shared-video-miniature/video-download.component.ts237 + src/app/shared/shared-video-miniature/video-download.component.ts237 + Profile الملف الشخصي - - src/app/shared/shared-video-miniature/video-download.component.ts238 + src/app/shared/shared-video-miniature/video-download.component.ts238 + Resolution الدقة - - src/app/shared/shared-video-miniature/video-download.component.ts247 + src/app/shared/shared-video-miniature/video-download.component.ts247 + Aspect ratio ابعاد متزنة - - src/app/shared/shared-video-miniature/video-download.component.ts248 + src/app/shared/shared-video-miniature/video-download.component.ts248 + Average frame rate متوسط معدل الإطارات - - src/app/shared/shared-video-miniature/video-download.component.ts249 + src/app/shared/shared-video-miniature/video-download.component.ts249 + Pixel format تنسيق بكسل - - src/app/shared/shared-video-miniature/video-download.component.ts250 + src/app/shared/shared-video-miniature/video-download.component.ts250 + Sample rate معدل العينة - - src/app/shared/shared-video-miniature/video-download.component.ts254 + src/app/shared/shared-video-miniature/video-download.component.ts254 + Channel Layout تخطيط القناة - - src/app/shared/shared-video-miniature/video-download.component.ts255 - Update your settings Update your settings + src/app/shared/shared-video-miniature/video-download.component.ts255 + + + Update your settings + Update your settings src/app/shared/shared-video-miniature/video-filters-header.component.html 3,7 - - More filtersMore filters + + + More filters + More filters src/app/shared/shared-video-miniature/video-filters-header.component.html 20 - - Less filtersLess filters + + + Less filters + Less filters src/app/shared/shared-video-miniature/video-filters-header.component.html 21 - - Sort by "Recently Added"Sort by "Recently Added" + + + Sort by "Recently Added" + Sort by "Recently Added" src/app/shared/shared-video-miniature/video-filters-header.component.html 46 - - Sort by "Views"Sort by "Views" + + + Sort by "Views" + Sort by "Views" src/app/shared/shared-video-miniature/video-filters-header.component.html 48 - - Sort by "Hot"Sort by "Hot" + + + Sort by "Hot" + Sort by "Hot" src/app/shared/shared-video-miniature/video-filters-header.component.html 49 - - Sort by "Best"Sort by "Best" + + + Sort by "Best" + Sort by "Best" src/app/shared/shared-video-miniature/video-filters-header.component.html 50 - - Sort by "Likes"Sort by "Likes" + + + Sort by "Likes" + Sort by "Likes" src/app/shared/shared-video-miniature/video-filters-header.component.html 51 - - Languages:Languages: + + + Languages: + Languages: src/app/shared/shared-video-miniature/video-filters-header.component.html 59 - - Sensitive content:Sensitive content: + + + Sensitive content: + Sensitive content: src/app/shared/shared-video-miniature/video-filters-header.component.html 66 - - Scope:Scope: + + + Scope: + Scope: src/app/shared/shared-video-miniature/video-filters-header.component.html 81 - - Local videos (this instance)Local videos (this instance) + + + Local videos (this instance) + Local videos (this instance) src/app/shared/shared-video-miniature/video-filters-header.component.html 85 - - Federated videos (this instance + followed instances)Federated videos (this instance + followed instances) + + + Federated videos (this instance + followed instances) + Federated videos (this instance + followed instances) src/app/shared/shared-video-miniature/video-filters-header.component.html 90 - - Type:Type: + + + Type: + Type: src/app/shared/shared-video-miniature/video-filters-header.component.html 95 - - VOD & Live videosVOD & Live videos + + + VOD & Live videos + VOD & Live videos src/app/shared/shared-video-miniature/video-filters-header.component.html 99 - - Categories:Categories: + + + Categories: + Categories: src/app/shared/shared-video-miniature/video-filters-header.component.html 114 - - Moderation:Moderation: + + + Moderation: + Moderation: src/app/shared/shared-video-miniature/video-filters-header.component.html 120 @@ -10775,8 +10896,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular To import للاستيراد src/app/shared/shared-video-miniature/video-miniature.component.ts175 - - Subscribe to RSS feed ""Subscribe to RSS feed "" + + + Subscribe to RSS feed "" + Subscribe to RSS feed "" src/app/shared/shared-video-miniature/videos-list.component.html 8 @@ -10793,25 +10916,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video removed from أُزيل الفيديو من - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + Video added in at timestamps أُضيف الفيديو الى على - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + Video added in أضيف الفيديو الى - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + Timestamps updated تم تحديث الطوابع الزمنية - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + Starts at يبدأ في diff --git a/client/src/locale/angular.ca-ES.xlf b/client/src/locale/angular.ca-ES.xlf index a017b8ac9..5e0ce30a9 100644 --- a/client/src/locale/angular.ca-ES.xlf +++ b/client/src/locale/angular.ca-ES.xlf @@ -310,7 +310,7 @@ vídeo - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. El següent enllaç conté un token privat i no es deuria compartir amb cap persona. @@ -381,12 +381,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) La seua cuota de vídeo s'excedeix amb aquest vídeo (tamany del vídeo: , utilitzat: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) La seua quota diària de vídeo s'excedeix amb aquest vídeo (tamany del vídeo: , utilitzat: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles subtítols @@ -397,7 +397,7 @@ Cancel·lar - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Baixa @@ -2591,7 +2591,7 @@ The link will expire within 1 hour. Upload on hold Pujada en espera - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Ho sentim, la funció de pujada està deshabilitada per al teu compte. Si vols agregar vídeos, un administrador ha de desbloquejar la teua quota @@ -11129,34 +11129,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Però es perdran les dades associades (etiquetes, descripció ...), estàs segur que vols deixar aquesta pàgina? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? El teu vídeo encara no s'ha carregat, estàs segur que vols sortir d'aquesta pàgina? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Puja - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Vídeo publicat. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. You have unsaved changes! If you leave, your changes will be lost. diff --git a/client/src/locale/angular.cs-CZ.xlf b/client/src/locale/angular.cs-CZ.xlf index cd0988d04..91bf5c8ac 100644 --- a/client/src/locale/angular.cs-CZ.xlf +++ b/client/src/locale/angular.cs-CZ.xlf @@ -5,13 +5,13 @@ Close the left menu Zavřít levou nabídku - - src/app/app.component.ts133 + src/app/app.component.ts133 + Open the left menu Otevřít levou nabídku - - src/app/app.component.ts135 + src/app/app.component.ts135 + You don't have notifications. Nemáte oznámení. @@ -19,12 +19,7 @@ published a new video: - - published a new video: - - - - + zveřejněno nové video: src/app/shared/shared-main/users/user-notifications.component.html15 @@ -34,13 +29,7 @@ Your video has been unblocked - - Your video - - - has been unblocked - - + Vaše video bylo odblokováno src/app/shared/shared-main/users/user-notifications.component.html33 @@ -238,24 +227,24 @@ - - - - - - - - - - - - src/app/+videos/+video-watch/video-watch.component.html77src/app/menu/menu.component.html105src/app/shared/shared-main/buttons/action-dropdown.component.html22src/app/shared/shared-main/misc/top-menu-dropdown.component.html14src/app/shared/shared-main/misc/top-menu-dropdown.component.html24src/app/shared/shared-video-miniature/video-download.component.html27src/app/shared/shared-video-miniature/video-download.component.html52src/app/shared/shared-video-miniature/video-download.component.html78src/app/shared/shared-video-miniature/video-download.component.html89src/app/shared/shared-video-miniature/video-download.component.html101src/app/shared/shared-video-miniature/videos-selection.component.html1 + src/app/+videos/+video-watch/video-watch.component.html77 + src/app/menu/menu.component.html105 + src/app/shared/shared-main/buttons/action-dropdown.component.html22 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html14 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html24 + src/app/shared/shared-video-miniature/video-download.component.html27 + src/app/shared/shared-video-miniature/video-download.component.html52 + src/app/shared/shared-video-miniature/video-download.component.html78 + src/app/shared/shared-video-miniature/video-download.component.html89 + src/app/shared/shared-video-miniature/video-download.component.html101 + src/app/shared/shared-video-miniature/videos-selection.component.html1 + My watch history My watch history - - - src/app/+my-library/my-history/my-history.component.html3src/app/+my-library/my-history/my-history.component.ts68 + src/app/+my-library/my-history/my-history.component.html3 + src/app/+my-library/my-history/my-history.component.ts68 + Save to Uložit na @@ -264,8 +253,8 @@ Options Možnosti - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + Start at Začít v čase @@ -325,28 +314,27 @@ Create Vytvořit - - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html8src/app/+admin/users/user-edit/user-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + video video - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Následující odkaz obsahuje soukromý token a neměl by být s nikým sdílen. - - src/app/shared/shared-video-miniature/video-download.component.html19 + src/app/shared/shared-video-miniature/video-download.component.html19 + @@ -358,14 +346,13 @@ subtitles Titulky - - - src/app/shared/shared-video-miniature/video-download.component.ts57 + src/app/shared/shared-video-miniature/video-download.component.ts57 + Format Format - - src/app/shared/shared-video-miniature/video-download.component.html74 + src/app/shared/shared-video-miniature/video-download.component.html74 + @@ -378,33 +365,33 @@ Video stream Video stream - - src/app/shared/shared-video-miniature/video-download.component.html85 + src/app/shared/shared-video-miniature/video-download.component.html85 + Audio stream Audio stream - - src/app/shared/shared-video-miniature/video-download.component.html97 + src/app/shared/shared-video-miniature/video-download.component.html97 + Direct download Přímý odkaz - - src/app/shared/shared-video-miniature/video-download.component.html116 + src/app/shared/shared-video-miniature/video-download.component.html116 + Torrent (.torrent file) Torrent (soubor .torrent) - - src/app/shared/shared-video-miniature/video-download.component.html121 + src/app/shared/shared-video-miniature/video-download.component.html121 + Advanced Pokročilý - - src/app/shared/shared-video-miniature/video-download.component.html135 + src/app/shared/shared-video-miniature/video-download.component.html135 + Simple Simple - - src/app/shared/shared-video-miniature/video-download.component.html143 + src/app/shared/shared-video-miniature/video-download.component.html143 + video video @@ -415,12 +402,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles Titulky @@ -433,14 +420,14 @@ - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Stáhnout - - - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272src/app/shared/shared-video-miniature/video-download.component.html4src/app/shared/shared-video-miniature/video-download.component.html156 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + src/app/shared/shared-video-miniature/video-download.component.html4 + src/app/shared/shared-video-miniature/video-download.component.html156 + Reason... Důvod... @@ -456,16 +443,10 @@ No results. Žádné výsledky. - - - - - - - - - - src/app/+videos/video-list/overview/video-overview.component.html4src/app/shared/shared-video-miniature/videos-list.component.html41src/app/shared/shared-video-miniature/videos-selection.component.ts23 + src/app/+videos/video-list/overview/video-overview.component.html4 + src/app/shared/shared-video-miniature/videos-list.component.html41 + src/app/shared/shared-video-miniature/videos-selection.component.ts23 + Submit Odeslat @@ -475,8 +456,10 @@ src/app/shared/shared-moderation/report-modals/report.component.html58 src/app/shared/shared-moderation/report-modals/video-report.component.html96 src/app/shared/shared-moderation/video-block.component.html42 - - The contact form is not enabled on this instance.The contact form is not enabled on this instance. + + + The contact form is not enabled on this instance. + The contact form is not enabled on this instance. src/app/+about/about-instance/contact-admin-modal.component.html 56 @@ -503,8 +486,10 @@ Blocking this live will automatically terminate the live stream. Blocking this live will automatically terminate the live stream. src/app/shared/shared-moderation/video-block.component.html33 - - Element not foundElement not found + + + Element not found + Element not found src/app/shared/shared-search/find-in-bulk.service.ts 80 @@ -518,16 +503,16 @@ Unlisted Neveřejné - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html9src/app/shared/shared-video-miniature/video-miniature.component.html6 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html9 + src/app/shared/shared-video-miniature/video-miniature.component.html6 + Private Soukromé - - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10src/app/shared/shared-video-miniature/video-miniature.component.html7src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10 + src/app/shared/shared-video-miniature/video-miniature.component.html7 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + {VAR_PLURAL, plural, =1 {1 view} other { views}} {VAR_PLURAL, plural, =1 {1 view} other { @@ -564,38 +549,38 @@ Cannot fetch information of this remote account Nelze načíst informace o tomto vzdáleném účtu - - src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + Blocked Blocked - - src/app/shared/shared-video-miniature/video-miniature.component.html57 + src/app/shared/shared-video-miniature/video-miniature.component.html57 + Sensitive Citlivé - - src/app/shared/shared-video-miniature/video-miniature.component.html62 + src/app/shared/shared-video-miniature/video-miniature.component.html62 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {Žádná videa} =1 {1 video} other { videí} } - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html32src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + src/app/+my-library/+my-video-channels/my-video-channels.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + Updated Aktualizováno - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + Unavailable Nedostupné @@ -604,10 +589,10 @@ Deleted Smazané - - - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html47src/app/shared/shared-abuse-list/abuse-list-table.component.html91src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html47 + src/app/shared/shared-abuse-list/abuse-list-table.component.html91 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + Edit starts/stops at Upravit čas spuštění/zastavení @@ -616,13 +601,11 @@ Save Uložit - - - - - - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38src/app/shared/shared-user-settings/user-interface-settings.component.html16src/app/shared/shared-user-settings/user-video-settings.component.html72src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38 + src/app/shared/shared-user-settings/user-interface-settings.component.html16 + src/app/shared/shared-user-settings/user-video-settings.component.html72 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + Delete from Smazat ze @@ -640,40 +623,39 @@ src/app/shared/shared-video-miniature/abstract-video-list.html44 src/app/shared/shared-video-miniature/abstract-video-list.html44 - Videos with the most interactions for recent videos, minus user history Videos with the most interactions for recent videos, minus user history - - src/app/+videos/video-list/videos-list-common-page.component.ts203 + src/app/+videos/video-list/videos-list-common-page.component.ts203 + Delete Odstranit - - - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts88src/app/+admin/moderation/video-block-list/video-block-list.component.ts92src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164src/app/+admin/users/user-list/user-list.component.ts81src/app/+admin/users/user-list/user-list.component.ts195src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.html50src/app/+my-library/my-videos/my-videos.component.ts117src/app/+my-library/my-videos/my-videos.component.ts144src/app/+my-library/my-videos/my-videos.component.ts185src/app/+videos/+video-edit/shared/video-edit.component.html178src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts145src/app/shared/shared-abuse-list/abuse-list-table.component.ts388src/app/shared/shared-abuse-list/abuse-list-table.component.ts423src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts88 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts92 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164 + src/app/+admin/users/user-list/user-list.component.ts81 + src/app/+admin/users/user-list/user-list.component.ts195 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.html50 + src/app/+my-library/my-videos/my-videos.component.ts117 + src/app/+my-library/my-videos/my-videos.component.ts144 + src/app/+my-library/my-videos/my-videos.component.ts185 + src/app/+videos/+video-edit/shared/video-edit.component.html178 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts388 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts423 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + Only live videos Jenom živý videa @@ -704,11 +686,12 @@ Hide Skrýt - - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-forms/input-toggle-hidden.component.ts38src/app/shared/shared-user-settings/user-video-settings.component.html16src/app/shared/shared-video-miniature/video-filters-header.component.html76 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-forms/input-toggle-hidden.component.ts38 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/shared/shared-video-miniature/video-filters-header.component.html76 + Show Show @@ -753,7 +736,6 @@ Odebírat přes místní účet src/app/shared/shared-user-subscription/subscribe-button.component.html58 - The live stream will be automatically terminated. Živí přenos bude automaticky ukončen. @@ -864,10 +846,11 @@ Video quota Limit na videa - - - - src/app/+admin/users/user-edit/user-edit.component.html151src/app/+admin/users/user-edit/user-edit.component.html151src/app/+admin/users/user-list/user-list.component.ts113src/app/shared/shared-instance/instance-features-table.component.html47 + src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/+admin/users/user-list/user-list.component.ts113 + src/app/shared/shared-instance/instance-features-table.component.html47 + Unlimited ( per day) @@ -918,16 +901,17 @@ Local Místní - - src/app/shared/shared-instance/instance-statistics.component.html4src/app/shared/shared-video-miniature/video-filters.model.ts125 + src/app/shared/shared-instance/instance-statistics.component.html4 + src/app/shared/shared-video-miniature/video-filters.model.ts125 + users - users + uživatelé src/app/shared/shared-instance/instance-statistics.component.html11 videos - videos + videa src/app/shared/shared-instance/instance-statistics.component.html21 src/app/shared/shared-instance/instance-statistics.component.html65 @@ -952,8 +936,10 @@ Federation src/app/+admin/admin.component.ts26 src/app/shared/shared-instance/instance-statistics.component.html58 - - FollowingFollowing + + + Following + Following src/app/+admin/admin.component.ts 29 @@ -966,8 +952,10 @@ src/app/+admin/follows/follows.routes.ts 28 - - FollowersFollowers + + + Followers + Followers src/app/+admin/admin.component.ts 34 @@ -990,42 +978,42 @@ The upload failed The upload failed - - src/app/helpers/utils/upload.ts12 + src/app/helpers/utils/upload.ts12 + The connection was interrupted The connection was interrupted - - src/app/helpers/utils/upload.ts16 + src/app/helpers/utils/upload.ts16 + The server encountered an error The server encountered an error - - src/app/helpers/utils/upload.ts19 + src/app/helpers/utils/upload.ts19 + Your file couldn't be transferred before the set timeout (usually 10min) Your file couldn't be transferred before the set timeout (usually 10min) - - src/app/helpers/utils/upload.ts22 + src/app/helpers/utils/upload.ts22 + Your file was too large (max. size: ) Your file was too large (max. size: ) - - src/app/helpers/utils/upload.ts26 + src/app/helpers/utils/upload.ts26 + User User - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Zablokovat - - - - src/app/+admin/users/user-list/user-list.component.ts87src/app/shared/shared-moderation/user-ban-modal.component.html3src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + src/app/+admin/users/user-list/user-list.component.ts87 + src/app/shared/shared-moderation/user-ban-modal.component.html3 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + A banned user will no longer be able to login. @@ -1036,25 +1024,26 @@ Cancel Zrušit - - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+admin/follows/following-list/follow-modal.component.html33src/app/+login/login.component.html121src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/video-add-components/video-upload.component.html81src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73src/app/+videos/+video-watch/video-watch.component.ts416src/app/modal/confirm.component.html20src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-video-miniature/video-download.component.html152 + src/app/+about/about-instance/contact-admin-modal.component.html48 + src/app/+admin/follows/following-list/follow-modal.component.html33 + src/app/+login/login.component.html121 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html22 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html69 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73 + src/app/+videos/+video-watch/video-watch.component.ts416 + src/app/modal/confirm.component.html20 + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26 + src/app/shared/shared-moderation/batch-domains-modal.component.html31 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/video-report.component.html92 + src/app/shared/shared-moderation/user-ban-modal.component.html26 + src/app/shared/shared-moderation/video-block.component.html38 + src/app/shared/shared-video-miniature/video-download.component.html152 + Ban this user Zablokovat tohoto uživatele @@ -1125,13 +1114,13 @@ This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. - - src/app/+login/login.component.html64 + src/app/+login/login.component.html64 + Currently this instance doesn't allow for user registration, you may check the Terms for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: https://joinpeertube.org/instances. Currently this instance doesn't allow for user registration, you may check the Terms for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: https://joinpeertube.org/instances. - - src/app/+login/login.component.html69 + src/app/+login/login.component.html69 + User Uživatel @@ -1142,8 +1131,10 @@ Username or email address Uživatelské jméno nebo e-mail src/app/+login/login.component.html23 - - ⚠️ Most email addresses do not include capital letters. ⚠️ Most email addresses do not include capital letters. + + + ⚠️ Most email addresses do not include capital letters. + ⚠️ Most email addresses do not include capital letters. src/app/+login/login.component.html 33,34 @@ -1152,59 +1143,59 @@ Password Heslo - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html117src/app/+admin/users/user-edit/user-edit.component.html117src/app/+login/login.component.html38src/app/+login/login.component.html40src/app/+reset-password/reset-password.component.html8src/app/+reset-password/reset-password.component.html10src/app/+signup/+register/register-step-user.component.html56src/app/+signup/+register/register-step-user.component.html58 + src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+login/login.component.html38 + src/app/+login/login.component.html40 + src/app/+reset-password/reset-password.component.html8 + src/app/+reset-password/reset-password.component.html10 + src/app/+signup/+register/register-step-user.component.html56 + src/app/+signup/+register/register-step-user.component.html58 + Click here to reset your password Click here to reset your password - - src/app/+login/login.component.html51 + src/app/+login/login.component.html51 + I forgot my password I forgot my password - - src/app/+login/login.component.html51 + src/app/+login/login.component.html51 + Logging into an account lets you publish content Logging into an account lets you publish content - - src/app/+login/login.component.html60 + src/app/+login/login.component.html60 + Login Přihlásit - - - - src/app/+login/login-routing.module.ts12src/app/+login/login.component.html48src/app/menu/menu.component.html99 + src/app/+login/login-routing.module.ts12 + src/app/+login/login.component.html48 + src/app/menu/menu.component.html99 + Or sign in with Or sign in with - - src/app/+login/login.component.html76 + src/app/+login/login.component.html76 + Forgot your password Zapomenuté heslo - - src/app/+login/login.component.html95 + src/app/+login/login.component.html95 + We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. - - src/app/+login/login.component.html103 + src/app/+login/login.component.html103 + Enter your email address and we will send you a link to reset your password. Enter your email address and we will send you a link to reset your password. - - src/app/+login/login.component.html107 + src/app/+login/login.component.html107 + An email with the reset password instructions will be sent to . The link will expire within 1 hour. @@ -1215,26 +1206,27 @@ The link will expire within 1 hour. Email E-mail - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html105src/app/+admin/users/user-edit/user-edit.component.html105src/app/+admin/users/user-list/user-list.component.ts112src/app/+login/login.component.html111src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4src/app/+signup/+register/register-step-user.component.html45src/app/+signup/+register/register-step-user.component.html47src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+admin/users/user-list/user-list.component.ts112 + src/app/+login/login.component.html111 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4 + src/app/+signup/+register/register-step-user.component.html45 + src/app/+signup/+register/register-step-user.component.html47 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html8 + Email address E-mailová adresa - - - src/app/+login/login.component.html113src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + src/app/+login/login.component.html113 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + Reset Reset Password reset button - - src/app/+login/login.component.html126 + src/app/+login/login.component.html126 + on this instance on this instance @@ -1297,8 +1289,8 @@ The link will expire within 1 hour. Signup Signup Button on the registration form to finalize the account and channel creation - - src/app/+signup/+register/register.component.ts67 + src/app/+signup/+register/register.component.ts67 + Filters @@ -1315,75 +1307,75 @@ The link will expire within 1 hour. Nebyly nalezeny žádné výsledky - - src/app/+search/search.component.html33 + src/app/+search/search.component.html33 + subscribers odběratelů - - - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html25src/app/+search/search.component.html55src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 - - Welcome to PeerTube, dear administrator! + src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 + src/app/+search/search.component.html55 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + + + Welcome to PeerTube, dear administrator! Welcome to PeerTube, dear administrator! - - src/app/modal/admin-welcome-modal.component.html3 + src/app/modal/admin-welcome-modal.component.html3 + CLI documentation CLI documentation - - src/app/modal/admin-welcome-modal.component.html12 + src/app/modal/admin-welcome-modal.component.html12 + Upload or import videos, parse logs, prune storage directories, reset user password... Upload or import videos, parse logs, prune storage directories, reset user password... - - src/app/modal/admin-welcome-modal.component.html15 + src/app/modal/admin-welcome-modal.component.html15 + Administer documentation Administer documentation - - src/app/modal/admin-welcome-modal.component.html19 + src/app/modal/admin-welcome-modal.component.html19 + Managing users, following other instances, dealing with spammers... Managing users, following other instances, dealing with spammers... - - src/app/modal/admin-welcome-modal.component.html22 + src/app/modal/admin-welcome-modal.component.html22 + Use documentation Use documentation - - src/app/modal/admin-welcome-modal.component.html26 + src/app/modal/admin-welcome-modal.component.html26 + Setup your account, managing video playlists, discover third-party applications... Setup your account, managing video playlists, discover third-party applications... - - src/app/modal/admin-welcome-modal.component.html29 + src/app/modal/admin-welcome-modal.component.html29 + Useful links Useful links - - src/app/modal/admin-welcome-modal.component.html39 + src/app/modal/admin-welcome-modal.component.html39 + Official PeerTube website (news, support, contribute...): https://joinpeertube.org Oficiální stránky PeerTube (novinky, podpora, přispívání...): https://joinpeertube.org - - src/app/modal/admin-welcome-modal.component.html42 + src/app/modal/admin-welcome-modal.component.html42 + Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances Dejte vaši instanci do veřejného indexu PeerTube: https://instances.joinpeertube.org/instances - - src/app/modal/admin-welcome-modal.component.html45 + src/app/modal/admin-welcome-modal.component.html45 + It's time to configure your instance! It's time to configure your instance! - - src/app/modal/admin-welcome-modal.component.html55 + src/app/modal/admin-welcome-modal.component.html55 + Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are. @@ -1404,28 +1396,31 @@ The link will expire within 1 hour. is very important for visitors to understand on what type of instance they are. - - src/app/modal/admin-welcome-modal.component.html58 + src/app/modal/admin-welcome-modal.component.html58 + If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. - - src/app/modal/admin-welcome-modal.component.html64 + src/app/modal/admin-welcome-modal.component.html64 + Remind me later Remind me later - - src/app/modal/account-setup-warning-modal.component.html28src/app/modal/admin-welcome-modal.component.html74 - Set up Set up - - src/app/modal/account-setup-warning-modal.component.html35 + src/app/modal/account-setup-warning-modal.component.html28 + src/app/modal/admin-welcome-modal.component.html74 + + + Set up + Set up + src/app/modal/account-setup-warning-modal.component.html35 + Configure my instance Configure my instance - - src/app/modal/admin-welcome-modal.component.html81 + src/app/modal/admin-welcome-modal.component.html81 + Configuration warning! Configuration warning! @@ -1605,17 +1600,17 @@ The link will expire within 1 hour. Create an account Vytvořit účet - - - src/app/+login/login.component.html54src/app/menu/menu.component.html100 + src/app/+login/login.component.html54 + src/app/menu/menu.component.html100 + My videos My videos - - - - - src/app/+my-library/my-library-routing.module.ts76src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts71src/app/core/menu/menu.service.ts77 + src/app/+my-library/my-library-routing.module.ts76 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts71 + src/app/core/menu/menu.service.ts77 + My video imports My video imports @@ -1643,9 +1638,11 @@ The link will expire within 1 hour. Videos Videa - - - src/app/+accounts/account-videos/account-videos.component.ts17src/app/+my-library/my-library.component.ts52src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17src/app/core/menu/menu.service.ts76 + src/app/+accounts/account-videos/account-videos.component.ts17 + src/app/+my-library/my-library.component.ts52 + src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17 + src/app/core/menu/menu.service.ts76 + Interface: Interface: @@ -1660,11 +1657,11 @@ The link will expire within 1 hour. Subscriptions Odběry - - - - - src/app/+my-library/my-library.component.ts64src/app/+videos/video-list/video-user-subscriptions.component.ts25src/app/+videos/videos-routing.module.ts58src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts64 + src/app/+videos/video-list/video-user-subscriptions.component.ts25 + src/app/+videos/videos-routing.module.ts58 + src/app/core/menu/menu.service.ts91 + History Historie @@ -1674,10 +1671,10 @@ The link will expire within 1 hour. VIDEOS VIDEOS - - - - src/app/+accounts/accounts.component.ts82src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215src/app/+video-channels/video-channels.component.ts76 + src/app/+accounts/accounts.component.ts82 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215 + src/app/+video-channels/video-channels.component.ts76 + Import jobs concurrency Import jobs concurrency @@ -1718,8 +1715,9 @@ The link will expire within 1 hour. Contact Contact - - src/app/+about/about-routing.module.ts36src/app/menu/menu.component.html136 + src/app/+about/about-routing.module.ts36 + src/app/menu/menu.component.html136 + View your notifications Zobrazit vaše oznámení @@ -1751,23 +1749,35 @@ The link will expire within 1 hour. See all your notifications Zobrazit všechna oznámení src/app/menu/notification.component.html49 - - Welcome to , dear user!Welcome to , dear user! - - src/app/modal/account-setup-warning-modal.component.html3 - It's time to set up your account profile!It's time to set up your account profile! - - src/app/modal/account-setup-warning-modal.component.html10 - Help moderators and other users to know who you are by:Help moderators and other users to know who you are by: - - src/app/modal/account-setup-warning-modal.component.html12 - Uploading an avatarUploading an avatar - - src/app/modal/account-setup-warning-modal.component.html15 - Writing a descriptionWriting a description - - src/app/modal/account-setup-warning-modal.component.html16 - Don't show me this anymoreDon't show me this anymore + + + Welcome to , dear user! + Welcome to , dear user! + src/app/modal/account-setup-warning-modal.component.html3 + + + It's time to set up your account profile! + It's time to set up your account profile! + src/app/modal/account-setup-warning-modal.component.html10 + + + Help moderators and other users to know who you are by: + Help moderators and other users to know who you are by: + src/app/modal/account-setup-warning-modal.component.html12 + + + Uploading an avatar + Uploading an avatar + src/app/modal/account-setup-warning-modal.component.html15 + + + Writing a description + Writing a description + src/app/modal/account-setup-warning-modal.component.html16 + + + Don't show me this anymore + Don't show me this anymore src/app/modal/account-setup-warning-modal.component.html 23 @@ -1776,8 +1786,8 @@ The link will expire within 1 hour. I'm a teapot I'm a teapot - - src/app/+page-not-found/page-not-found.component.ts27 + src/app/+page-not-found/page-not-found.component.ts27 + That's an error. That's an error. @@ -1870,9 +1880,8 @@ The link will expire within 1 hour. Media is too large for the server. Please contact you administrator if you want to increase the limit size. Media is too large for the server. Please contact you administrator if you want to increase the limit size. - - src/app/core/rest/rest-extractor.service.ts65 - + src/app/core/rest/rest-extractor.service.ts65 + GLOBAL SEARCH GLOBAL SEARCH @@ -1952,19 +1961,19 @@ The link will expire within 1 hour. Reset - - - - - - - - - - - - - src/app/+search/search-filters.component.html9src/app/+search/search-filters.component.html23src/app/+search/search-filters.component.html42src/app/+search/search-filters.component.html61src/app/+search/search-filters.component.html75src/app/+search/search-filters.component.html110src/app/+search/search-filters.component.html123src/app/+search/search-filters.component.html136src/app/+search/search-filters.component.html149src/app/+search/search-filters.component.html164src/app/+search/search-filters.component.html172src/app/+search/search-filters.component.html205 + src/app/+search/search-filters.component.html9 + src/app/+search/search-filters.component.html23 + src/app/+search/search-filters.component.html42 + src/app/+search/search-filters.component.html61 + src/app/+search/search-filters.component.html75 + src/app/+search/search-filters.component.html110 + src/app/+search/search-filters.component.html123 + src/app/+search/search-filters.component.html136 + src/app/+search/search-filters.component.html149 + src/app/+search/search-filters.component.html164 + src/app/+search/search-filters.component.html172 + src/app/+search/search-filters.component.html205 + Display only Display only @@ -1976,15 +1985,19 @@ The link will expire within 1 hour. Live videos Live videos - - - src/app/+search/search-filters.component.html29src/app/+search/search-filters.component.ts64src/app/shared/shared-video-miniature/video-filters-header.component.html104src/app/shared/shared-video-miniature/video-filters.model.ts158 + src/app/+search/search-filters.component.html29 + src/app/+search/search-filters.component.ts64 + src/app/shared/shared-video-miniature/video-filters-header.component.html104 + src/app/shared/shared-video-miniature/video-filters.model.ts158 + VOD videos VOD videos - - - src/app/+search/search-filters.component.html34src/app/+search/search-filters.component.ts60src/app/shared/shared-video-miniature/video-filters-header.component.html109src/app/shared/shared-video-miniature/video-filters.model.ts164 + src/app/+search/search-filters.component.html34 + src/app/+search/search-filters.component.ts60 + src/app/shared/shared-video-miniature/video-filters-header.component.html109 + src/app/shared/shared-video-miniature/video-filters.model.ts164 + Published date Datum publikace @@ -2008,9 +2021,9 @@ The link will expire within 1 hour. Duration Trvání - - - src/app/+search/search-filters.component.html108src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html60 + src/app/+search/search-filters.component.html108 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html60 + Display sensitive content Zobrazit citlivý obsah @@ -2029,10 +2042,10 @@ The link will expire within 1 hour. Category Kategorie - - - - src/app/+search/search-filters.component.html121src/app/+videos/+video-edit/shared/video-edit.component.html63src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html25 + src/app/+search/search-filters.component.html121 + src/app/+videos/+video-edit/shared/video-edit.component.html63 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html25 + Reset @@ -2052,10 +2065,10 @@ The link will expire within 1 hour. Licence Licence - - - - src/app/+search/search-filters.component.html134src/app/+videos/+video-edit/shared/video-edit.component.html74src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html34 + src/app/+search/search-filters.component.html134 + src/app/+videos/+video-edit/shared/video-edit.component.html74 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html34 + Display all licenses Display all licenses @@ -2064,11 +2077,11 @@ The link will expire within 1 hour. Language Jazyk - - - - - src/app/+search/search-filters.component.html147src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10src/app/+videos/+video-edit/shared/video-edit.component.html94src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html43 + src/app/+search/search-filters.component.html147 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10 + src/app/+videos/+video-edit/shared/video-edit.component.html94 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html43 + Display all languages Display all languages @@ -2083,8 +2096,10 @@ The link will expire within 1 hour. One of these tags Jeden z těchto štítků src/app/+search/search-filters.component.html170 - - PeerTube instance hostPeerTube instance host + + + PeerTube instance host + PeerTube instance host src/app/+search/search-filters.component.html 178 @@ -2093,13 +2108,13 @@ The link will expire within 1 hour. Search target Search target - - src/app/+search/search-filters.component.html187 + src/app/+search/search-filters.component.html187 + Vidiverse Vidiverse - - src/app/+search/search-filters.component.html197 + src/app/+search/search-filters.component.html197 + Reset @@ -2110,8 +2125,8 @@ The link will expire within 1 hour. Filter Filtr - - src/app/+search/search-filters.component.html208 + src/app/+search/search-filters.component.html208 + Video channels Video channels @@ -2147,9 +2162,9 @@ The link will expire within 1 hour. Tags Štítky - - - src/app/+videos/+video-edit/shared/video-edit.component.html19src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + src/app/+videos/+video-edit/shared/video-edit.component.html19 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag. @@ -2172,14 +2187,14 @@ The link will expire within 1 hour. extensions extensions - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. This image is too large. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Upload a new banner @@ -2204,13 +2219,13 @@ The link will expire within 1 hour. Account avatar Account avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Channel avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Markdown compatible that also supports custom PeerTube HTML tags @@ -2226,26 +2241,34 @@ The link will expire within 1 hour. src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html 24 - - Error in channel miniature component: Error in channel miniature component: + + + Error in channel miniature component: + Error in channel miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts 57 - - Error in playlist miniature component: Error in playlist miniature component: + + + Error in playlist miniature component: + Error in playlist miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts 47 - - Error in video miniature component: Error in video miniature component: + + + Error in video miniature component: + Error in video miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts 59 - - Error in videos list component: Error in videos list component: + + + Error in videos list component: + Error in videos list component: src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts 77 @@ -2306,16 +2329,16 @@ The link will expire within 1 hour. Privacy Soukromí - - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+videos/+video-edit/shared/video-edit.component.html106src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29src/app/+videos/+video-edit/video-add-components/video-upload.component.html26src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2src/app/shared/shared-abuse-list/abuse-details.component.ts22 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+videos/+video-edit/shared/video-edit.component.html106 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html26 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2 + src/app/shared/shared-abuse-list/abuse-details.component.ts22 + FAQ FAQ @@ -2439,10 +2462,10 @@ The link will expire within 1 hour. Captions Titulky - - - - src/app/+videos/+video-edit/shared/video-edit.component.html155src/app/shared/shared-abuse-list/abuse-details.component.ts26src/app/shared/shared-moderation/abuse.service.ts181 + src/app/+videos/+video-edit/shared/video-edit.component.html155 + src/app/shared/shared-abuse-list/abuse-details.component.ts26 + src/app/shared/shared-moderation/abuse.service.ts181 + Video preview Video preview @@ -2583,17 +2606,17 @@ The link will expire within 1 hour. Update Aktualizovat - - - - - - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61 + src/app/+videos/+video-edit/video-update.component.html3 + src/app/+videos/+video-edit/video-update.component.html18 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + Select the file to upload Zvolte soubor k nahrání @@ -2603,13 +2626,13 @@ The link will expire within 1 hour. Scheduled Scheduled - - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 + Hide the video until a specific date Hide the video until a specific date - - src/app/+videos/+video-edit/shared/video-edit.component.ts193 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 + Video background image Video background image @@ -2670,25 +2693,31 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. - - src/app/+videos/+video-edit/video-add.component.ts102 - Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + src/app/+videos/+video-edit/video-add.component.ts102 + + + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. src/app/+videos/+video-edit/video-add.component.ts 104 - - Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + + + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. src/app/+videos/+video-edit/video-add.component.ts 106 - - Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + + + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. src/app/+videos/+video-edit/video-add.component.ts 108 @@ -2697,8 +2726,8 @@ The link will expire within 1 hour. Read instance rules for help Read instance rules for help - - src/app/+videos/+video-edit/video-add.component.html2 + src/app/+videos/+video-edit/video-add.component.html2 + Select the torrent to import Select the torrent to import @@ -2725,23 +2754,23 @@ The link will expire within 1 hour. Torrents with only 1 file are supported. Torrents with only 1 file are supported. - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + Cannot create live because this instance have too many created lives Cannot create live because this instance have too many created lives - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + Cannot create live because you created too many lives Cannot create live because you created too many lives - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + Live published. Live published. - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + Go Live Go Live @@ -2766,57 +2795,57 @@ The link will expire within 1 hour. to upload your videos. - - src/app/+videos/+video-edit/video-add.component.html34 + src/app/+videos/+video-edit/video-add.component.html34 + Import Importovat - - src/app/+videos/+video-edit/video-add.component.html44 + src/app/+videos/+video-edit/video-add.component.html44 + Upload Upload - - src/app/+videos/+video-edit/video-add.component.html45 + src/app/+videos/+video-edit/video-add.component.html45 + Upload a file Nahrát soubor - - src/app/+videos/+video-edit/video-add.component.html53 + src/app/+videos/+video-edit/video-add.component.html53 + Import with URL Import with URL - - src/app/+videos/+video-edit/video-add.component.html63 + src/app/+videos/+video-edit/video-add.component.html63 + Import with torrent Import with torrent - - src/app/+videos/+video-edit/video-add.component.html73 + src/app/+videos/+video-edit/video-add.component.html73 + Go live Go live - - src/app/+videos/+video-edit/video-add.component.html83 + src/app/+videos/+video-edit/video-add.component.html83 + Other videos Other videos - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + AUTOPLAY AUTOPLAY - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + Report this comment Report this comment - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + Share Sdílet @@ -2939,64 +2968,58 @@ The link will expire within 1 hour. Public Public - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 - - - - - + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 + This video is blocked. This video is blocked. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + Published Published - - - src/app/+videos/+video-watch/video-watch.component.html31 + src/app/+videos/+video-watch/video-watch.component.html31 + SUPPORT SUPPORT - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + SHARE SHARE - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + SAVE SAVE - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + DOWNLOAD DOWNLOAD - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + Like this video To se mi líbí - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + Dislike this video To se mi nelíbí - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + Support options for this video Support options for this video - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + By Od - - src/app/+videos/+video-watch/video-watch.component.html71 + src/app/+videos/+video-watch/video-watch.component.html71 + Subscribe Subscribe @@ -3020,19 +3043,21 @@ The link will expire within 1 hour. Show more Zobrazit více - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + Show less Zobrazit méně - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + Origin Origin - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 - Open the video on the origin instanceOpen the video on the origin instance + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 + + + Open the video on the origin instance + Open the video on the origin instance src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html 14 @@ -3041,29 +3066,29 @@ The link will expire within 1 hour. Originally published Originally published - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html20 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html20 + Friendly Reminder: Friendly Reminder: - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + More information Více informací - - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html36src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56src/app/+admin/system/jobs/jobs.component.html56src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + src/app/+admin/moderation/video-block-list/video-block-list.component.html36 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56 + src/app/+admin/system/jobs/jobs.component.html56 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + The video was blocked due to automatic blocking of new videos The video was blocked due to automatic blocking of new videos @@ -3077,204 +3102,210 @@ The link will expire within 1 hour. Get more information Získat více informací - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + OK OK - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 - The video is being imported, it will be available when the import is finished. - The video is being imported, it will be available when the import is finished. + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 + + + The video is being imported, it will be available when the import is finished. + The video is being imported, it will be available when the import is finished. src/app/+videos/+video-watch/shared/information/video-alert.component.html 2,3 - - The video is being transcoded, it may not work properly. - The video is being transcoded, it may not work properly. + + + The video is being transcoded, it may not work properly. + The video is being transcoded, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 6,7 - - The video is being moved to an external server, it may not work properly. - The video is being moved to an external server, it may not work properly. + + + The video is being moved to an external server, it may not work properly. + The video is being moved to an external server, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 10,11 - - This video will be published on . - This video will be published on . + + + This video will be published on . + This video will be published on . - - src/app/+videos/+video-watch/shared/information/video-alert.component.html13 - This live has not started yet. - This live has not started yet. + src/app/+videos/+video-watch/shared/information/video-alert.component.html13 + + + This live has not started yet. + This live has not started yet. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html18 - This live has ended. - This live has ended. + src/app/+videos/+video-watch/shared/information/video-alert.component.html18 + + + This live has ended. + This live has ended. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + SORT BY SORT BY - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + Most recent first (default) Most recent first (default) - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + Most replies first Most replies first - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + No comments. Žádné komentáře - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + View from and others View from and others - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + {VAR_PLURAL, plural, =1 {1 reply} other { replies}} {VAR_PLURAL, plural, =1 {1 reply} other { replies}} - - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74src/app/+videos/+video-watch/shared/comment/video-comments.component.html77src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + View from View from - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + View View - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + Comments are disabled. Komentáře nejsou povoleny. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + Add comment... Přidat komentář... - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + Markdown compatible Markdown compatible - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + Markdown compatible that supports: Markdown compatible that supports: - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + Auto generated links Auto generated links - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + Break lines Break lines - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + Lists Lists - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23src/app/shared/shared-main/misc/help.component.ts84 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23 + src/app/shared/shared-main/misc/help.component.ts84 + Emphasis Emphasis - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25src/app/shared/shared-main/misc/help.component.ts81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25 + src/app/shared/shared-main/misc/help.component.ts81 + bold bold - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + italic italic - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + Emoji shortcuts Emoji shortcuts - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + Emoji markup Emoji markup - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + See complete list See complete list - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + You are one step away from commenting You are one step away from commenting - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + Login to comment Přihlásit ke komentování - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + Markdown Emoji List Markdown Emoji List - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + Comment Comment - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + Reply Reply - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + Highlighted comment Zvýrazněné komentáře - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + Reply Odpovědět @@ -3283,8 +3314,8 @@ The link will expire within 1 hour. This comment has been deleted This comment has been deleted - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + Video redundancies Video redundancies @@ -3311,14 +3342,14 @@ The link will expire within 1 hour. Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed? Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed? - - src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + Renew token Renew token - - - src/app/+my-account/my-account-applications/my-account-applications.component.html35src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + src/app/+my-account/my-account-applications/my-account-applications.component.html35 + src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + Token renewed. Update your client configuration accordingly. Token renewed. Update your client configuration accordingly. @@ -3387,8 +3418,9 @@ The link will expire within 1 hour. Clear filters Clear filters - - src/app/shared/shared-forms/advanced-input-filter.component.html23src/app/shared/shared-main/misc/simple-search-input.component.html14 + src/app/shared/shared-forms/advanced-input-filter.component.html23 + src/app/shared/shared-main/misc/simple-search-input.component.html14 + Video/Comment/Account Video/Comment/Account @@ -3399,7 +3431,6 @@ The link will expire within 1 hour. ID src/app/+admin/system/jobs/jobs.component.html45 - State Stav @@ -3471,7 +3502,6 @@ The link will expire within 1 hour. src/app/shared/shared-moderation/batch-domains-modal.component.html3 - Redundancy allowed Redundancy allowed @@ -3483,9 +3513,8 @@ The link will expire within 1 hour. Unfollow Unfollow - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Open instance in a new tab @@ -3496,13 +3525,13 @@ The link will expire within 1 hour. No host found matching current filters. No host found matching current filters. - - src/app/+admin/follows/following-list/following-list.component.html71 + src/app/+admin/follows/following-list/following-list.component.html71 + Your instance is not following anyone. Your instance is not following anyone. - - src/app/+admin/follows/following-list/following-list.component.html72 + src/app/+admin/follows/following-list/following-list.component.html72 + Showing to of hosts Showing @@ -3512,8 +3541,6 @@ The link will expire within 1 hour. src/app/+admin/follows/following-list/following-list.component.html11 - - Action Action @@ -3542,9 +3569,9 @@ The link will expire within 1 hour. Create user Vytvořit uživatele - - - src/app/+admin/users/user-edit/user-create.component.ts96src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts96 + src/app/+admin/users/user-list/user-list.component.html20 + Table parameters Table parameters @@ -3563,11 +3590,12 @@ The link will expire within 1 hour. Username Uživatelské jméno - - - - - src/app/+admin/users/user-edit/user-edit.component.html83src/app/+admin/users/user-edit/user-edit.component.html83src/app/+admin/users/user-list/user-list.component.ts111src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6src/app/+signup/+register/register-step-user.component.html23 + src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+admin/users/user-list/user-list.component.ts111 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6 + src/app/+signup/+register/register-step-user.component.html23 + e.g. jane_doe e.g. jane_doe @@ -3597,9 +3625,10 @@ The link will expire within 1 hour. Role Role - - - src/app/+admin/users/user-edit/user-edit.component.html136src/app/+admin/users/user-edit/user-edit.component.html136src/app/+admin/users/user-list/user-list.component.ts114 + src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-list/user-list.component.ts114 + Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . @@ -3624,9 +3653,10 @@ The link will expire within 1 hour. Auth plugin Auth plugin - - - src/app/+admin/users/user-edit/user-edit.component.html188src/app/+admin/users/user-edit/user-edit.component.html188src/app/+admin/users/user-list/user-list.component.ts121 + src/app/+admin/users/user-edit/user-edit.component.html188 + src/app/+admin/users/user-edit/user-edit.component.html188 + src/app/+admin/users/user-list/user-list.component.ts121 + None (local authentication) None (local authentication) @@ -3888,8 +3918,10 @@ The link will expire within 1 hour. src/app/+admin/moderation/video-comment-list/video-comment-list.component.html65 src/app/+my-library/my-ownership/my-ownership.component.html18 src/app/shared/shared-abuse-list/abuse-list-table.component.html41 - - FollowerFollower + + + Follower + Follower src/app/+admin/follows/followers-list/followers-list.component.html 24 @@ -3939,28 +3971,28 @@ The link will expire within 1 hour. Unsolved reports Unsolved reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts43 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts43 + Accepted reports Accepted reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts47 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts47 + Refused reports Refused reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts51 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts51 + Reports with blocked videos Reports with blocked videos - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts55 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts55 + Reports with deleted videos Reports with deleted videos - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts59 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts59 + Block reason: Block reason: @@ -3979,13 +4011,13 @@ The link will expire within 1 hour. Automatic blocks Automatic blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts32 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts32 + Manual blocks Manual blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts36 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts36 + Showing to of blocked videos Showing @@ -4045,10 +4077,11 @@ The link will expire within 1 hour. Video Video - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43src/app/+my-library/my-ownership/my-ownership.component.html20src/app/+my-library/my-video-imports/my-video-imports.component.html18src/app/shared/shared-video-miniature/video-download.component.html8 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43 + src/app/+my-library/my-ownership/my-ownership.component.html20 + src/app/+my-library/my-video-imports/my-video-imports.component.html18 + src/app/shared/shared-video-miniature/video-download.component.html8 + Comment Comment @@ -4159,11 +4192,11 @@ The link will expire within 1 hour. Instance Instance - - - - - src/app/+about/about.component.html5src/app/+search/search-filters.component.html192src/app/shared/shared-moderation/server-blocklist.component.html31src/app/shared/shared-moderation/server-blocklist.component.html31 + src/app/+about/about.component.html5 + src/app/+search/search-filters.component.html192 + src/app/shared/shared-moderation/server-blocklist.component.html31 + src/app/shared/shared-moderation/server-blocklist.component.html31 + Muted at Muted at @@ -4210,8 +4243,8 @@ The link will expire within 1 hour. It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. - - src/app/+admin/follows/following-list/follow-modal.component.html28 + src/app/+admin/follows/following-list/follow-modal.component.html28 + Mute domains Mute domains @@ -4282,14 +4315,14 @@ The link will expire within 1 hour. Search Hledat - - - - - - - - src/app/+admin/plugins/plugins.component.html5src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts260src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/shared/shared-main/misc/simple-search-input.component.ts12src/app/shared/shared-main/misc/simple-search-input.component.ts13 + src/app/+admin/plugins/plugins.component.html5 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts260 + src/app/header/search-typeahead.component.html8 + src/app/shared/shared-instance/instance-features-table.component.html122 + src/app/shared/shared-main/misc/simple-search-input.component.ts12 + src/app/shared/shared-main/misc/simple-search-input.component.ts13 + Users can resolve distant content Users can resolve distant content @@ -4320,29 +4353,29 @@ The link will expire within 1 hour. src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36 src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 - Videos with the most interactions for recent videos Videos with the most interactions for recent videos - - src/app/+videos/video-list/videos-list-common-page.component.ts204 + src/app/+videos/video-list/videos-list-common-page.component.ts204 + Videos with the most views during the last 24 hours Videos with the most views during the last 24 hours - - src/app/+videos/video-list/videos-list-common-page.component.ts208 - Videos with the most views during the last daysVideos with the most views during the last days + src/app/+videos/video-list/videos-list-common-page.component.ts208 + + + Videos with the most views during the last days + Videos with the most views during the last days src/app/+videos/video-list/videos-list-common-page.component.ts 209 - Videos that have the most likes Videos that have the most likes - - src/app/+videos/video-list/videos-list-common-page.component.ts205 + src/app/+videos/video-list/videos-list-common-page.component.ts205 + To load your new installed plugins or themes, refresh the page. @@ -4431,18 +4464,18 @@ The link will expire within 1 hour. comments deleted. comments deleted. - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + Do you really want to delete all comments of ? Do you really want to delete all comments of ? - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + Comments of will be deleted in a few minutes Comments of will be deleted in a few minutes - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + Video comments Video comments @@ -4580,41 +4613,42 @@ The link will expire within 1 hour. Add a new category Add a new category - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57src/app/shared/shared-forms/select/select-categories.component.html5 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + src/app/shared/shared-forms/select/select-categories.component.html5 + The sharing system implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. The sharing system implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. - - src/app/shared/shared-user-settings/user-video-settings.component.html45 + src/app/shared/shared-user-settings/user-video-settings.component.html45 + Help share videos being played Help share videos being played - - src/app/shared/shared-user-settings/user-video-settings.component.html42 + src/app/shared/shared-user-settings/user-video-settings.component.html42 + When on a video page, directly start playing the video. When on a video page, directly start playing the video. - - src/app/shared/shared-user-settings/user-video-settings.component.html56 + src/app/shared/shared-user-settings/user-video-settings.component.html56 + Automatically play videos Automatically play videos - - src/app/shared/shared-user-settings/user-video-settings.component.html53 + src/app/shared/shared-user-settings/user-video-settings.component.html53 + When a video ends, follow up with the next suggested video. When a video ends, follow up with the next suggested video. - - src/app/shared/shared-user-settings/user-video-settings.component.html67 + src/app/shared/shared-user-settings/user-video-settings.component.html67 + Automatically start playing the next video Automatically start playing the next video - - src/app/shared/shared-user-settings/user-video-settings.component.html64 + src/app/shared/shared-user-settings/user-video-settings.component.html64 + Main languages you/your moderators speak Main languages you/your moderators speak @@ -5088,8 +5122,8 @@ The link will expire within 1 hour. Administrator Administrátor - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email E-mail administrátora @@ -5547,137 +5581,169 @@ color: red; Profile Profil - - src/app/shared/shared-video-miniature/video-download.component.ts238 + src/app/shared/shared-video-miniature/video-download.component.ts238 + Resolution Resolution - - src/app/shared/shared-video-miniature/video-download.component.ts247 + src/app/shared/shared-video-miniature/video-download.component.ts247 + Aspect ratio Aspect ratio - - src/app/shared/shared-video-miniature/video-download.component.ts248 + src/app/shared/shared-video-miniature/video-download.component.ts248 + Average frame rate Average frame rate - - src/app/shared/shared-video-miniature/video-download.component.ts249 + src/app/shared/shared-video-miniature/video-download.component.ts249 + Pixel format Pixel format - - src/app/shared/shared-video-miniature/video-download.component.ts250 + src/app/shared/shared-video-miniature/video-download.component.ts250 + Sample rate Sample rate - - src/app/shared/shared-video-miniature/video-download.component.ts254 + src/app/shared/shared-video-miniature/video-download.component.ts254 + Channel Layout Channel Layout - - src/app/shared/shared-video-miniature/video-download.component.ts255 - Update your settings Update your settings + src/app/shared/shared-video-miniature/video-download.component.ts255 + + + Update your settings + Update your settings src/app/shared/shared-video-miniature/video-filters-header.component.html 3,7 - - More filtersMore filters + + + More filters + More filters src/app/shared/shared-video-miniature/video-filters-header.component.html 20 - - Less filtersLess filters + + + Less filters + Less filters src/app/shared/shared-video-miniature/video-filters-header.component.html 21 - - Sort by "Recently Added"Sort by "Recently Added" + + + Sort by "Recently Added" + Sort by "Recently Added" src/app/shared/shared-video-miniature/video-filters-header.component.html 46 - - Sort by "Views"Sort by "Views" + + + Sort by "Views" + Sort by "Views" src/app/shared/shared-video-miniature/video-filters-header.component.html 48 - - Sort by "Hot"Sort by "Hot" + + + Sort by "Hot" + Sort by "Hot" src/app/shared/shared-video-miniature/video-filters-header.component.html 49 - - Sort by "Best"Sort by "Best" + + + Sort by "Best" + Sort by "Best" src/app/shared/shared-video-miniature/video-filters-header.component.html 50 - - Sort by "Likes"Sort by "Likes" + + + Sort by "Likes" + Sort by "Likes" src/app/shared/shared-video-miniature/video-filters-header.component.html 51 - - Languages:Languages: + + + Languages: + Languages: src/app/shared/shared-video-miniature/video-filters-header.component.html 59 - - Sensitive content:Sensitive content: + + + Sensitive content: + Sensitive content: src/app/shared/shared-video-miniature/video-filters-header.component.html 66 - - Scope:Scope: + + + Scope: + Scope: src/app/shared/shared-video-miniature/video-filters-header.component.html 81 - - Local videos (this instance)Local videos (this instance) + + + Local videos (this instance) + Local videos (this instance) src/app/shared/shared-video-miniature/video-filters-header.component.html 85 - - Federated videos (this instance + followed instances)Federated videos (this instance + followed instances) + + + Federated videos (this instance + followed instances) + Federated videos (this instance + followed instances) src/app/shared/shared-video-miniature/video-filters-header.component.html 90 - - Type:Type: + + + Type: + Type: src/app/shared/shared-video-miniature/video-filters-header.component.html 95 - - VOD & Live videosVOD & Live videos + + + VOD & Live videos + VOD & Live videos src/app/shared/shared-video-miniature/video-filters-header.component.html 99 - - Categories:Categories: + + + Categories: + Categories: src/app/shared/shared-video-miniature/video-filters-header.component.html 114 - - Moderation:Moderation: + + + Moderation: + Moderation: src/app/shared/shared-video-miniature/video-filters-header.component.html 120 @@ -5747,9 +5813,9 @@ color: red; Add a new language Add a new language - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71src/app/shared/shared-forms/select/select-languages.component.html6 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71 + src/app/shared/shared-forms/select/select-languages.component.html6 + is awaiting email verification @@ -5789,9 +5855,9 @@ color: red; Change ownership Změnit vlastnictví - - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts180 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts180 + Select the next owner Vyber nového vlastníka @@ -5855,9 +5921,9 @@ color: red; Account page Account page - - - src/app/+videos/+video-watch/video-watch.component.html70src/app/+videos/+video-watch/video-watch.component.html76 + src/app/+videos/+video-watch/video-watch.component.html70 + src/app/+videos/+video-watch/video-watch.component.html76 + @@ -5889,13 +5955,13 @@ color: red; Create video channel Create video channel - - src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + No channel found. No channel found. - - src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + subscribers @@ -5986,16 +6052,16 @@ color: red; Delete your account Smazat vlastní účet - - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 + Channel page Channel page - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html25src/app/+my-library/my-subscriptions/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+my-library/+my-video-channels/my-video-channels.component.html25 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html67 + Created by Vytvořil @@ -6019,8 +6085,8 @@ color: red; You don't have any video in your watch history yet. You don't have any video in your watch history yet. - - src/app/+my-library/my-history/my-history.component.html29 + src/app/+my-library/my-history/my-history.component.html29 + Open syndication dropdown Open syndication dropdown @@ -6032,14 +6098,18 @@ color: red; src/app/shared/shared-main/feeds/feed.component.html 3 - - Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description.Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + + + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. src/app/shared/shared-main/misc/channels-setup-message.component.html 5 - - Set up my channelsSet up my channels + + + Set up my channels + Set up my channels src/app/shared/shared-main/misc/channels-setup-message.component.html 6 @@ -6101,8 +6171,8 @@ color: red; Create playlist Create playlist - - src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + My video channels My video channels @@ -6160,8 +6230,10 @@ color: red; src/app/+signup/shared/signup-success.component.html14 - - To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + + + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. src/app/+signup/shared/signup-success.component.html 18,19 @@ -6278,12 +6350,12 @@ color: red; {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} - - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html30src/app/+video-channels/video-channels.component.html73src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + src/app/+video-channels/video-channels.component.html73 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 videos} other { videos}} @@ -6325,8 +6397,8 @@ color: red; CHANNELS CHANNELS - - src/app/+accounts/accounts.component.ts81 + src/app/+accounts/accounts.component.ts81 + This account does not have channels. Tento účet nemá žádné kanály. @@ -6371,8 +6443,10 @@ channel with the same name ()! videos uploaded in this channel, and you will not be able to create another channel with the same name ()! src/app/+my-library/+my-video-channels/my-video-channels.component.ts44 - - Please type the name of the video channel () to confirmPlease type the name of the video channel () to confirm + + + Please type the name of the video channel () to confirm + Please type the name of the video channel () to confirm src/app/+my-library/+my-video-channels/my-video-channels.component.ts 48 @@ -6449,7 +6523,6 @@ channel with the same name ()! 16 - Your name Vaše jméno @@ -6476,8 +6549,10 @@ channel with the same name ()! src/app/+about/about-instance/about-instance.component.html5 - - Contact usContact us + + + Contact us + Contact us src/app/+about/about-instance/about-instance.component.html 7 @@ -6487,7 +6562,6 @@ channel with the same name ()! 3 - This instance is dedicated to sensitive/NSFW content. This instance is dedicated to sensitive/NSFW content. @@ -6814,24 +6888,26 @@ channel with the same name ()! About this instance About this instance - - src/app/+about/about-routing.module.ts24 + src/app/+about/about-routing.module.ts24 + About PeerTube About PeerTube - - src/app/+about/about-routing.module.ts49 + src/app/+about/about-routing.module.ts49 + About this instance's network About this instance's network - - src/app/+about/about-routing.module.ts58 + src/app/+about/about-routing.module.ts58 + Link copied Link copied - - src/app/+about/about-instance/about-instance.component.ts98 - Contact the administrator(s)Contact the administrator(s) + src/app/+about/about-instance/about-instance.component.ts98 + + + Contact the administrator(s) + Contact the administrator(s) src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -6983,19 +7059,18 @@ channel with the same name ()! Your message has been sent. Your message has been sent. - - src/app/+about/about-instance/contact-admin-modal.component.ts88 + src/app/+about/about-instance/contact-admin-modal.component.ts88 + You already sent this form recently You already sent this form recently - - src/app/+about/about-instance/contact-admin-modal.component.ts94 + src/app/+about/about-instance/contact-admin-modal.component.ts94 + Account videos Account videos - - src/app/+accounts/accounts-routing.module.ts35 - + src/app/+accounts/accounts-routing.module.ts35 + ACCOUNT ACCOUNT @@ -7007,65 +7082,80 @@ channel with the same name ()! Account video channels Account video channels - - src/app/+accounts/accounts-routing.module.ts26 - + src/app/+accounts/accounts-routing.module.ts26 + Display all videos (private, unlisted or not yet published) Display all videos (private, unlisted or not yet published) - - - - - - - - src/app/shared/shared-video-miniature/video-filters-header.component.html125 - Remove this filterRemove this filter - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 - Sensitive contentSensitive content - - src/app/shared/shared-video-miniature/video-filters.model.ts115 - ScopeScope - - src/app/shared/shared-video-miniature/video-filters.model.ts122 - FederatedFederated - - src/app/shared/shared-video-miniature/video-filters.model.ts124 - LanguagesLanguages - - src/app/shared/shared-video-miniature/video-filters.model.ts132 - CategoriesCategories - - src/app/shared/shared-video-miniature/video-filters.model.ts141 - All videosAll videos - - src/app/shared/shared-video-miniature/video-filters.model.ts150 - BlurredBlurred - - src/app/shared/shared-video-miniature/video-filters.model.ts225 - hiddenhidden - - src/app/shared/shared-video-miniature/video-filters.model.ts231 - blurredblurred - - src/app/shared/shared-video-miniature/video-filters.model.ts232 - displayeddisplayed - - src/app/shared/shared-video-miniature/video-filters.model.ts234 + src/app/shared/shared-video-miniature/video-filters-header.component.html125 + + + Remove this filter + Remove this filter + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + + + Sensitive content + Sensitive content + src/app/shared/shared-video-miniature/video-filters.model.ts115 + + + Scope + Scope + src/app/shared/shared-video-miniature/video-filters.model.ts122 + + + Federated + Federated + src/app/shared/shared-video-miniature/video-filters.model.ts124 + + + Languages + Languages + src/app/shared/shared-video-miniature/video-filters.model.ts132 + + + Categories + Categories + src/app/shared/shared-video-miniature/video-filters.model.ts141 + + + All videos + All videos + src/app/shared/shared-video-miniature/video-filters.model.ts150 + + + Blurred + Blurred + src/app/shared/shared-video-miniature/video-filters.model.ts225 + + + hidden + hidden + src/app/shared/shared-video-miniature/video-filters.model.ts231 + + + blurred + blurred + src/app/shared/shared-video-miniature/video-filters.model.ts232 + + + displayed + displayed + src/app/shared/shared-video-miniature/video-filters.model.ts234 + direct account followers direct account followers - - src/app/+accounts/accounts.component.ts152 + src/app/+accounts/accounts.component.ts152 + Report this account Report this account - - src/app/+accounts/accounts.component.ts196 + src/app/+accounts/accounts.component.ts196 + VIDEOS VIDEOS @@ -7075,21 +7165,19 @@ channel with the same name ()! Username copied Username copied - - - src/app/+accounts/accounts.component.ts120src/app/+video-channels/video-channels.component.ts103 + src/app/+accounts/accounts.component.ts120 + src/app/+video-channels/video-channels.component.ts103 + 1 subscriber 1 subscriber - - src/app/+accounts/accounts.component.ts124 + src/app/+accounts/accounts.component.ts124 + subscribers subscribers - - src/app/+accounts/accounts.component.ts126 - - + src/app/+accounts/accounts.component.ts126 + Audio-only Audio-only @@ -7139,8 +7227,10 @@ channel with the same name ()! Auto (via ffmpeg) Auto (via ffmpeg) src/app/+admin/config/shared/config.service.ts50 - - Followers of your instanceFollowers of your instance + + + Followers of your instance + Followers of your instance src/app/+admin/follows/followers-list/followers-list.component.html 3 @@ -7250,8 +7340,8 @@ channel with the same name ()! Configuration updated. Nastavení aktualizováno. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 + INSTANCE HOMEPAGE INSTANCE HOMEPAGE @@ -7295,34 +7385,41 @@ channel with the same name ()! Domain is required. Domain is required. - - src/app/shared/form-validators/host-validators.ts92src/app/shared/form-validators/host-validators.ts101 - Hosts entered are invalid.Hosts entered are invalid. + src/app/shared/form-validators/host-validators.ts92 + src/app/shared/form-validators/host-validators.ts101 + + + Hosts entered are invalid. + Hosts entered are invalid. src/app/shared/form-validators/host-validators.ts 93 - - Hosts entered contain duplicates.Hosts entered contain duplicates. + + + Hosts entered contain duplicates. + Hosts entered contain duplicates. src/app/shared/form-validators/host-validators.ts 94 - - Hosts or handles are invalid.Hosts or handles are invalid. + + + Hosts or handles are invalid. + Hosts or handles are invalid. src/app/shared/form-validators/host-validators.ts 102 - - Hosts or handles contain duplicates.Hosts or handles contain duplicates. + + + Hosts or handles contain duplicates. + Hosts or handles contain duplicates. src/app/shared/form-validators/host-validators.ts 103 - - Unlimited Neomezeně @@ -7482,8 +7579,10 @@ channel with the same name ()! removed from instance followers src/app/+admin/follows/followers-list/followers-list.component.ts81 - - FollowFollow + + + Follow + Follow src/app/+admin/follows/following-list/follow-modal.component.html 3 @@ -7496,8 +7595,10 @@ channel with the same name ()! src/app/+admin/follows/following-list/following-list.component.html 18 - - 1 host (without "http://"), account handle or channel handle per line1 host (without "http://"), account handle or channel handle per line + + + 1 host (without "http://"), account handle or channel handle per line + 1 host (without "http://"), account handle or channel handle per line src/app/+admin/follows/following-list/follow-modal.component.html 11 @@ -7508,14 +7609,17 @@ channel with the same name ()! není platný - - src/app/shared/form-validators/host-validators.ts27src/app/shared/form-validators/host-validators.ts50 + src/app/shared/form-validators/host-validators.ts27 + src/app/shared/form-validators/host-validators.ts50 + Follow request(s) sent! Požadavek odeslán! - - src/app/+admin/follows/following-list/follow-modal.component.ts63 - Your instance subscriptionsYour instance subscriptions + src/app/+admin/follows/following-list/follow-modal.component.ts63 + + + Your instance subscriptions + Your instance subscriptions src/app/+admin/follows/following-list/following-list.component.html 3 @@ -7524,8 +7628,8 @@ channel with the same name ()! Do you really want to unfollow ? Opravdu chcete zrušit odběr kanálu ? - - src/app/+admin/follows/following-list/following-list.component.ts46 + src/app/+admin/follows/following-list/following-list.component.ts46 + Unfollow Zrušit odběr @@ -7534,8 +7638,8 @@ channel with the same name ()! You are not following anymore. Už dále neodebíráte . - - src/app/+admin/follows/following-list/following-list.component.ts54 + src/app/+admin/follows/following-list/following-list.component.ts54 + enabled enabled @@ -7554,35 +7658,35 @@ channel with the same name ()! Used Used - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Available Available - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Do you really want to remove this video redundancy? Do you really want to remove this video redundancy? - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + Remove redundancy Remove redundancy - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + Video redundancies removed! Video redundancies removed! - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + Account unmuted by your instance. Account unmuted by your instance. - - src/app/shared/shared-moderation/account-blocklist.component.ts43 + src/app/shared/shared-moderation/account-blocklist.component.ts43 + Instance unmuted by your instance. Instance @@ -7593,9 +7697,9 @@ channel with the same name ()! Instance muted. Instance ztišena. - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + Instance muted by your instance. Instance ztišena vaší instancí. @@ -7629,9 +7733,9 @@ channel with the same name ()! Copyright Copyright - - - src/app/shared/shared-abuse-list/abuse-details.component.ts23src/app/shared/shared-moderation/abuse.service.ts161 + src/app/shared/shared-abuse-list/abuse-details.component.ts23 + src/app/shared/shared-moderation/abuse.service.ts161 + Server rules Server rules @@ -7640,127 +7744,127 @@ channel with the same name ()! Thumbnails Thumbnails - - - src/app/shared/shared-abuse-list/abuse-details.component.ts25src/app/shared/shared-moderation/abuse.service.ts176 + src/app/shared/shared-abuse-list/abuse-details.component.ts25 + src/app/shared/shared-moderation/abuse.service.ts176 + Internal actions Internal actions - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts56src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts56 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + Delete report Delete report - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + Actions for the flagged account Actions for the flagged account - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + Mark as accepted Mark as accepted - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + Mark as rejected Mark as rejected - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + Add internal note Add internal note - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + Actions for the video Actions for the video - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts79src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts79 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + Block video Block video - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + Video blocked. Video blocked. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts357src/app/shared/shared-moderation/video-block.component.ts60 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts357 + src/app/shared/shared-moderation/video-block.component.ts60 + Unblock video Unblock video - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + Video unblocked. Video unblocked. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + Do you really want to delete this abuse report? Do you really want to delete this abuse report? - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + Abuse deleted. Abuse deleted. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + Deleted comment Deleted comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + Messages with reporter Messages with reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + Messages with moderators Messages with moderators - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + Update internal note Update internal note - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + Switch video block to manual Switch video block to manual - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts61 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts61 + Video switched to manual block. Video přepnuto na ruční blokování. - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts67 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts67 + Do you really want to unblock this video? It will be available again in the videos list. Do you really want to unblock this video? It will be available again in the videos list. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts132src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts132 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + Unblock Unblock - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts83src/app/+admin/moderation/video-block-list/video-block-list.component.ts134src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts83 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts134 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + Video unblocked. Video odblokováno. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts140src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts140 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + yes yes @@ -7869,23 +7973,23 @@ channel with the same name ()! Plugins Plugins - - src/app/+admin/plugins/shared/plugin-api.service.ts31 + src/app/+admin/plugins/shared/plugin-api.service.ts31 + Themes Themes - - src/app/+admin/plugins/shared/plugin-api.service.ts35 + src/app/+admin/plugins/shared/plugin-api.service.ts35 + plugin plugin - - src/app/+admin/plugins/shared/plugin-api.service.ts43 + src/app/+admin/plugins/shared/plugin-api.service.ts43 + theme theme - - src/app/+admin/plugins/shared/plugin-api.service.ts46 + src/app/+admin/plugins/shared/plugin-api.service.ts46 + IP address IP address @@ -8011,9 +8115,9 @@ channel with the same name ()! Error Chyba - - - src/app/core/auth/auth.service.ts103src/app/core/notification/notifier.service.ts18 + src/app/core/auth/auth.service.ts103 + src/app/core/notification/notifier.service.ts18 + Standard logs Standard logs @@ -8027,8 +8131,8 @@ channel with the same name ()! User created. Uživatel vytvořen. - - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts77 + Create user Create user @@ -8052,27 +8156,25 @@ channel with the same name ()! Update user password Update user password - - src/app/+admin/users/user-edit/user-password.component.ts53 - - + src/app/+admin/users/user-edit/user-password.component.ts53 + User updated. Uživatel aktualizován. - - src/app/+admin/users/user-edit/user-update.component.ts92 + src/app/+admin/users/user-edit/user-update.component.ts92 + Update user Aktualizovat uživatele - - src/app/+admin/users/user-edit/user-update.component.ts111 + src/app/+admin/users/user-edit/user-update.component.ts111 + An email asking for password reset has been sent to . An email asking for password reset has been sent to . - - src/app/+admin/users/user-edit/user-update.component.ts118 + src/app/+admin/users/user-edit/user-update.component.ts118 + Users list Users list @@ -8090,17 +8192,15 @@ channel with the same name ()! Federation - Federation + Federace src/app/+admin/admin.component.ts26 - - Videos will be deleted, comments will be tombstoned. Videos will be deleted, comments will be tombstoned. - - - src/app/+admin/users/user-list/user-list.component.ts82src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + src/app/+admin/users/user-list/user-list.component.ts82 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + Ban Ban @@ -8110,9 +8210,9 @@ channel with the same name ()! User won't be able to login anymore, but videos and comments will be kept as is. User won't be able to login anymore, but videos and comments will be kept as is. - - - src/app/+admin/users/user-list/user-list.component.ts88src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + src/app/+admin/users/user-list/user-list.component.ts88 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + Unban Odblokovat @@ -8123,22 +8223,28 @@ channel with the same name ()! Set Email as Verified Set Email as Verified - - - src/app/+admin/users/user-list/user-list.component.ts100src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 - CreatedCreated + src/app/+admin/users/user-list/user-list.component.ts100 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 + + + Created + Created src/app/+admin/users/user-list/user-list.component.ts 115 - - Daily quotaDaily quota + + + Daily quota + Daily quota src/app/+admin/users/user-list/user-list.component.ts 120 - - Last loginLast login + + + Last login + Last login src/app/+admin/users/user-list/user-list.component.ts 122 @@ -8178,56 +8284,56 @@ channel with the same name ()! users deleted. - - src/app/+admin/users/user-list/user-list.component.ts201 + src/app/+admin/users/user-list/user-list.component.ts201 + users email set as verified. users email set as verified. - - src/app/+admin/users/user-list/user-list.component.ts213 + src/app/+admin/users/user-list/user-list.component.ts213 + Account unmuted. Account unmuted. - - - src/app/shared/shared-moderation/account-blocklist.component.ts42src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + src/app/shared/shared-moderation/account-blocklist.component.ts42 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + Instance unmuted. Instance unmuted. - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 + Videos history is enabled Videos history is enabled - - src/app/+my-library/my-history/my-history.component.ts114 + src/app/+my-library/my-history/my-history.component.ts114 + Videos history is disabled Videos history is disabled - - src/app/+my-library/my-history/my-history.component.ts115 + src/app/+my-library/my-history/my-history.component.ts115 + Delete videos history Delete videos history - - src/app/+my-library/my-history/my-history.component.ts127 + src/app/+my-library/my-history/my-history.component.ts127 + Are you sure you want to delete all your videos history? Are you sure you want to delete all your videos history? - - src/app/+my-library/my-history/my-history.component.ts128 + src/app/+my-library/my-history/my-history.component.ts128 + Videos history deleted Videos history deleted - - src/app/+my-library/my-history/my-history.component.ts136 + src/app/+my-library/my-history/my-history.component.ts136 + My watch history My watch history @@ -8268,24 +8374,24 @@ channel with the same name ()! You current password is invalid. You current password is invalid. - - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + Password updated. Heslo aktualizováno. - - src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted. Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + Type your username to confirm Type your username to confirm - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + Delete your account Delete your account @@ -8294,19 +8400,19 @@ channel with the same name ()! Delete my account Delete my account - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + Your account is deleted. Your account is deleted. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + Interface settings updated. Interface settings updated. - - - src/app/shared/shared-user-settings/user-interface-settings.component.ts73src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + src/app/shared/shared-user-settings/user-interface-settings.component.ts73 + src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + New video from your subscriptions Nové video od sledovaných kanálů @@ -8401,8 +8507,8 @@ channel with the same name ()! Profile updated. Profil aktualizován. - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 + People can find you using @@ People can find you using @@ @@ -8414,72 +8520,71 @@ channel with the same name ()! Avatar changed. Avatar změněn. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts44src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + avatar avatar - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 + src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 + Avatar deleted. Avatar deleted. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts61src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 + src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 + Unknown language Unknown language - - src/app/shared/shared-forms/select/select-languages.component.ts41 + src/app/shared/shared-forms/select/select-languages.component.ts41 + Too many languages are enabled. Please enable them all or stay below 20 enabled languages. Too many languages are enabled. Please enable them all or stay below 20 enabled languages. - - src/app/shared/shared-user-settings/user-video-settings.component.ts76 + src/app/shared/shared-user-settings/user-video-settings.component.ts76 + Video settings updated. Video settings updated. - - src/app/shared/shared-user-settings/user-video-settings.component.ts121 + src/app/shared/shared-user-settings/user-video-settings.component.ts121 + Display/Video settings updated. Display/Video settings updated. - - src/app/shared/shared-user-settings/user-video-settings.component.ts130 + src/app/shared/shared-user-settings/user-video-settings.component.ts130 + Video channel created. Videokanál vytvořen. - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts66 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts66 + This name already exists on this instance. This name already exists on this instance. - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts72 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts72 + Video channel updated. Videokanál aktualizován. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 + Banner changed. Banner changed. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 + banner banner - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 + Banner deleted. Banner deleted. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 - + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 + Video channel deleted. Videokanál odstraněn. @@ -8535,8 +8640,8 @@ channel with the same name ()! Playlist created. Seznam vytvořen. - - src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + Create Create @@ -8569,15 +8674,15 @@ channel with the same name ()! Playlist updated. Seznam aktualizován. - - src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + Do you really want to delete ? Opravdu chcete smazat seznam ? - - - - src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34src/app/+my-library/my-videos/my-videos.component.ts143 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34 + src/app/+my-library/my-videos/my-videos.component.ts143 + Change ownership Change ownership @@ -8602,15 +8707,15 @@ channel with the same name ()! Do you really want to delete videos? Opravdu chcete odstranit videí? - - src/app/+my-library/my-videos/my-videos.component.ts116 + src/app/+my-library/my-videos/my-videos.component.ts116 + videos deleted. videí odstraněno. - - src/app/+my-library/my-videos/my-videos.component.ts133 + src/app/+my-library/my-videos/my-videos.component.ts133 + Do you really want to delete ? Opravdu chcete odstranit @@ -8624,15 +8729,17 @@ channel with the same name ()! Video deleted. Video odstraněno. - - - src/app/+my-library/my-videos/my-videos.component.ts151src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + src/app/+my-library/my-videos/my-videos.component.ts151 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + Ownership change request sent. Ownership change request sent. - - src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 - Sort bySort by + src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 + + + Sort by + Sort by src/app/+my-library/my-videos/my-videos.component.html 26 @@ -8691,29 +8798,29 @@ channel with the same name ()! max size max size - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Maximize editor - - src/app/shared/shared-forms/markdown-textarea.component.ts49 + src/app/shared/shared-forms/markdown-textarea.component.ts49 + Exit maximized editor Exit maximized editor - - src/app/shared/shared-forms/markdown-textarea.component.ts50 + src/app/shared/shared-forms/markdown-textarea.component.ts50 + Now please check your emails to verify your account and complete signup. Now please check your emails to verify your account and complete signup. - - src/app/+signup/+register/register.component.ts129 + src/app/+signup/+register/register.component.ts129 + You are now logged in as ! Nyní jste přihlášen/a jako ! - - src/app/+signup/+register/register.component.ts137 + src/app/+signup/+register/register.component.ts137 + An email with verification link will be sent to . Email s ověřovacím odkazem zaslán na . @@ -8725,13 +8832,12 @@ channel with the same name ()! src/app/+reset-password/reset-password.component.ts38 src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts33 - Subscribe to the account Odebírat účet - - - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts713 + src/app/+video-channels/video-channels.component.ts71 + src/app/+videos/+video-watch/video-watch.component.ts713 + PLAYLISTS PLAYLISTS @@ -8743,70 +8849,70 @@ channel with the same name ()! Focus the search bar Zaměřit na vyhledávací pole - - src/app/app.component.ts270 + src/app/app.component.ts270 + Toggle the left menu Toggle the left menu - - src/app/app.component.ts275 + src/app/app.component.ts275 + Go to the discover videos page Go to the discover videos page - - src/app/app.component.ts280 + src/app/app.component.ts280 + Go to the trending videos page Go to the trending videos page - - src/app/app.component.ts285 + src/app/app.component.ts285 + Go to the recently added videos page Go to the recently added videos page - - src/app/app.component.ts290 + src/app/app.component.ts290 + Go to the local videos page Go to the local videos page - - src/app/app.component.ts295 + src/app/app.component.ts295 + Go to the videos upload page Go to the videos upload page - - src/app/app.component.ts300 + src/app/app.component.ts300 + Go to my subscriptions Go to my subscriptions - - src/app/core/auth/auth.service.ts63 + src/app/core/auth/auth.service.ts63 + Go to my videos Go to my videos - - src/app/core/auth/auth.service.ts67 + src/app/core/auth/auth.service.ts67 + Go to my imports Go to my imports - - src/app/core/auth/auth.service.ts71 + src/app/core/auth/auth.service.ts71 + Go to my channels Go to my channels - - src/app/core/auth/auth.service.ts75 + src/app/core/auth/auth.service.ts75 + - Cannot retrieve OAuth Client credentials: . + Cannot retrieve OAuth Client credentials: . Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section. Cannot retrieve OAuth Client credentials: . Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section. - - src/app/core/auth/auth.service.ts98 + src/app/core/auth/auth.service.ts98 + You need to reconnect. Musíte se znovu připojit. - - src/app/core/auth/auth.service.ts221 + src/app/core/auth/auth.service.ts221 + Keyboard Shortcuts: Keyboard Shortcuts: @@ -8819,8 +8925,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/core/menu/menu.service.ts 98 - - In my libraryIn my library + + + In my library + In my library src/app/core/menu/menu.service.ts 104 @@ -8829,8 +8937,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Trending Trending - - src/app/+videos/video-list/videos-list-common-page.component.ts201src/app/core/menu/menu.service.ts131 + src/app/+videos/video-list/videos-list-common-page.component.ts201 + src/app/core/menu/menu.service.ts131 + ON ON @@ -8853,38 +8962,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Incorrect username or password. Incorrect username or password. - - src/app/+login/login.component.ts163 + src/app/+login/login.component.ts163 + Your account is blocked. Your account is blocked. - - src/app/+login/login.component.ts164 + src/app/+login/login.component.ts164 + any language any language - - src/app/menu/menu.component.ts266 + src/app/menu/menu.component.ts266 + hide hide - - src/app/menu/menu.component.ts301 + src/app/menu/menu.component.ts301 + blur blur - - src/app/menu/menu.component.ts305 + src/app/menu/menu.component.ts305 + display display - - src/app/menu/menu.component.ts309 + src/app/menu/menu.component.ts309 + Unknown Unknown - - src/app/menu/menu.component.ts196 + src/app/menu/menu.component.ts196 + Your password has been successfully reset! Vaše heslo bylo úspěšně resetováno! @@ -8893,41 +9002,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Today Dnes - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts123 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts123 + Yesterday Yesterday - - src/app/shared/shared-video-miniature/videos-list.component.ts124 + src/app/shared/shared-video-miniature/videos-list.component.ts124 + This week This week - - src/app/shared/shared-video-miniature/videos-list.component.ts125 + src/app/shared/shared-video-miniature/videos-list.component.ts125 + This month This month - - src/app/shared/shared-video-miniature/videos-list.component.ts126 + src/app/shared/shared-video-miniature/videos-list.component.ts126 + Last month Last month - - src/app/shared/shared-video-miniature/videos-list.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts127 + Older Older - - src/app/shared/shared-video-miniature/videos-list.component.ts128 + src/app/shared/shared-video-miniature/videos-list.component.ts128 + Cannot load more videos. Try again later. Cannot load more videos. Try again later. - - src/app/shared/shared-video-miniature/videos-list.component.ts225src/app/shared/shared-video-miniature/videos-selection.component.ts127 - + src/app/shared/shared-video-miniature/videos-list.component.ts225 + src/app/shared/shared-video-miniature/videos-selection.component.ts127 + Last 7 days Last 7 days @@ -8987,22 +9096,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Views Views - - - src/app/+search/search-filters.component.ts94 + src/app/+search/search-filters.component.ts94 + Search index is unavailable. Retrying with instance results instead. Search index is unavailable. Retrying with instance results instead. - - src/app/+search/search.component.ts163 + src/app/+search/search.component.ts163 + Search error Search error - - src/app/+search/search.component.ts164 - PeerTube instance host filter is invalidPeerTube instance host filter is invalid - - src/app/+search/search.component.ts332 + src/app/+search/search.component.ts164 + + + PeerTube instance host filter is invalid + PeerTube instance host filter is invalid + src/app/+search/search.component.ts332 + Search Search @@ -9458,17 +9568,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Description must be at least 3 characters long. Popis musí mít délku minimálně 3 znaky. - - - - src/app/shared/form-validators/user-validators.ts125src/app/shared/form-validators/video-channel-validators.ts36src/app/shared/form-validators/video-playlist-validators.ts33 + src/app/shared/form-validators/user-validators.ts125 + src/app/shared/form-validators/video-channel-validators.ts36 + src/app/shared/form-validators/video-playlist-validators.ts33 + Description cannot be more than 1000 characters long. Description cannot be more than 1000 characters long. - - - - src/app/shared/form-validators/user-validators.ts126src/app/shared/form-validators/video-channel-validators.ts37src/app/shared/form-validators/video-playlist-validators.ts34 + src/app/shared/form-validators/user-validators.ts126 + src/app/shared/form-validators/video-channel-validators.ts37 + src/app/shared/form-validators/video-playlist-validators.ts34 + You must agree with the instance terms in order to register on it. You must agree with the instance terms in order to register on it. @@ -9487,23 +9597,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display name is required. Zobrazované jméno je vyžadováno. - - - - src/app/shared/form-validators/user-validators.ts155src/app/shared/form-validators/video-channel-validators.ts24src/app/shared/form-validators/video-playlist-validators.ts12 + src/app/shared/form-validators/user-validators.ts155 + src/app/shared/form-validators/video-channel-validators.ts24 + src/app/shared/form-validators/video-playlist-validators.ts12 + Display name must be at least 1 character long. Display name must be at least 1 character long. - - - - src/app/shared/form-validators/user-validators.ts156src/app/shared/form-validators/video-channel-validators.ts25src/app/shared/form-validators/video-playlist-validators.ts13 + src/app/shared/form-validators/user-validators.ts156 + src/app/shared/form-validators/video-channel-validators.ts25 + src/app/shared/form-validators/video-playlist-validators.ts13 + Display name cannot be more than 50 characters long. Display name cannot be more than 50 characters long. - - - src/app/shared/form-validators/user-validators.ts157src/app/shared/form-validators/video-channel-validators.ts26 + src/app/shared/form-validators/user-validators.ts157 + src/app/shared/form-validators/video-channel-validators.ts26 + Report reason is required. Důvod nahlášení je vyžadován. @@ -9587,33 +9697,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Name is required. Name is required. - - src/app/shared/form-validators/video-channel-validators.ts10 + src/app/shared/form-validators/video-channel-validators.ts10 + Name must be at least 1 character long. Name must be at least 1 character long. - - src/app/shared/form-validators/video-channel-validators.ts11 + src/app/shared/form-validators/video-channel-validators.ts11 + Name cannot be more than 50 characters long. Name cannot be more than 50 characters long. - - src/app/shared/form-validators/video-channel-validators.ts12 + src/app/shared/form-validators/video-channel-validators.ts12 + Name should be lowercase alphanumeric; dots and underscores are allowed. Name should be lowercase alphanumeric; dots and underscores are allowed. - - src/app/shared/form-validators/video-channel-validators.ts13 + src/app/shared/form-validators/video-channel-validators.ts13 + Support text must be at least 3 characters long. Text pro podporu musí mít délku minimálně 3 znaky. - - src/app/shared/form-validators/video-channel-validators.ts47 + src/app/shared/form-validators/video-channel-validators.ts47 + Support text cannot be more than 1000 characters long Support text cannot be more than 1000 characters long - - src/app/shared/form-validators/video-channel-validators.ts48 + src/app/shared/form-validators/video-channel-validators.ts48 + See the documentation to learn how to use the PeerTube live streaming feature. See the documentation to learn how to use the PeerTube live streaming feature. @@ -9779,14 +9889,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular PeerTube cannot handle this kind of file. Accepted extensions are }. PeerTube cannot handle this kind of file. Accepted extensions are }. src/app/shared/shared-forms/reactive-file.component.ts56 - - All categoriesAll categories + + + All categories + All categories src/app/shared/shared-forms/select/select-categories.component.ts 24 - - You can't select more than itemsYou can't select more than items + + + You can't select more than items + You can't select more than items src/app/shared/shared-forms/select/select-checkbox-all.component.ts 81 @@ -9795,8 +9909,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Add a new option Add a new option - - src/app/shared/shared-forms/select/select-checkbox.component.ts27 + src/app/shared/shared-forms/select/select-checkbox.component.ts27 + Custom value... Custom value... @@ -10075,9 +10189,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular All languages All languages - - - src/app/+videos/+video-edit/shared/video-edit.component.ts180src/app/shared/shared-forms/select/select-languages.component.ts25 + src/app/+videos/+video-edit/shared/video-edit.component.ts180 + src/app/shared/shared-forms/select/select-languages.component.ts25 + Hidden Hidden @@ -10091,8 +10205,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Displayed Displayed - - src/app/shared/shared-instance/instance-features-table.component.ts55src/app/shared/shared-video-miniature/video-filters.model.ts227 + src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-video-miniature/video-filters.model.ts227 + ~ 1 minute ~ 1 minute @@ -10129,18 +10244,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (channel page) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (account page) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Styly písma @@ -10169,8 +10284,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Close search Close search - - src/app/shared/shared-main/misc/simple-search-input.component.html19 + src/app/shared/shared-main/misc/simple-search-input.component.html19 + users banned. @@ -10201,21 +10316,21 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular User deleted. Uživatel odstraněn. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + User email set as verified User email set as verified - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + Account muted. Účet ztišen. - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + Instance muted. Instance @@ -10229,19 +10344,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account muted by the instance. Účet ztišen instancí. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts446src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts446 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + Mute server Mute server - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + Server muted by the instance. Server ztišen instancí. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + Add a message to communicate with the reporter Add a message to communicate with the reporter @@ -10257,162 +10372,162 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + Instance muted by the instance. Instance muted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + Instance unmuted by the instance. Instance unmuted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + Are you sure you want to remove all the comments of this account? Are you sure you want to remove all the comments of this account? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + Delete account comments Delete account comments - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + Will remove comments of this account (may take several minutes). Will remove comments of this account (may take several minutes). - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + Edit user Edit user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + Change quota, role, and more. Change quota, role, and more. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + Delete user Delete user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + Unban user Unban user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + Allow the user to login and create videos/comments again Allow the user to login and create videos/comments again - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + Mute this account Mute this account - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + Hide any content from that user from you. Hide any content from that user from you. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + Unmute this account Unmute this account - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + Show back content from that user for you. Show back content from that user for you. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + Mute the instance Mute the instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + Hide any content from that instance for you. Hide any content from that instance for you. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + Unmute the instance Unmute the instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + Show back content from that instance for you. Show back content from that instance for you. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + Remove comments from your videos Remove comments from your videos - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + Remove comments made by this account on your videos. Remove comments made by this account on your videos. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + Mute this account by your instance Mute this account by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + Hide any content from that user from you, your instance and its users. Hide any content from that user from you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + Unmute this account by your instance Unmute this account by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + Show this user's content to the users of this instance again. Show this user's content to the users of this instance again. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + Mute the instance by your instance Mute the instance by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + Hide any content from that instance from you, your instance and its users. Hide any content from that instance from you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + Unmute the instance by your instance Unmute the instance by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + Show back content from that instance for you, your instance and its users. Show back content from that instance for you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + Remove comments from your instance Remove comments from your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + Remove comments made by this account from your instance. Remove comments made by this account from your instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + Violent or repulsive Violent or repulsive @@ -10441,38 +10556,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes. Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes. - - src/app/shared/shared-moderation/abuse.service.ts151 + src/app/shared/shared-moderation/abuse.service.ts151 + Privacy breach or doxxing Privacy breach or doxxing - - src/app/shared/shared-moderation/abuse.service.ts155 + src/app/shared/shared-moderation/abuse.service.ts155 + Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details). Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details). - - src/app/shared/shared-moderation/abuse.service.ts157 + src/app/shared/shared-moderation/abuse.service.ts157 + Infringes your copyright wrt. the regional laws with which the server must comply. Infringes your copyright wrt. the regional laws with which the server must comply. - - src/app/shared/shared-moderation/abuse.service.ts162 + src/app/shared/shared-moderation/abuse.service.ts162 + Breaks server rules Breaks server rules - - src/app/shared/shared-moderation/abuse.service.ts166 + src/app/shared/shared-moderation/abuse.service.ts166 + Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server. Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server. - - src/app/shared/shared-moderation/abuse.service.ts168 + src/app/shared/shared-moderation/abuse.service.ts168 + The above can only be seen in thumbnails. The above can only be seen in thumbnails. - - src/app/shared/shared-moderation/abuse.service.ts177 + src/app/shared/shared-moderation/abuse.service.ts177 + Captions Captions @@ -10482,23 +10597,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular The above can only be seen in captions (please describe which). The above can only be seen in captions (please describe which). - - src/app/shared/shared-moderation/abuse.service.ts182 + src/app/shared/shared-moderation/abuse.service.ts182 + Too many attempts, please try again after minutes. Příliš mnoho pokusů, zkuste to prosím znovu za minut. - - src/app/core/rest/rest-extractor.service.ts70 + src/app/core/rest/rest-extractor.service.ts70 + Too many attempts, please try again later. Příliš mnoho pokusů, zkuste to prosím později. - - src/app/core/rest/rest-extractor.service.ts72 + src/app/core/rest/rest-extractor.service.ts72 + Server error. Please retry later. Chyba serveru. Zkuste to prosím později. - - src/app/core/rest/rest-extractor.service.ts75 + src/app/core/rest/rest-extractor.service.ts75 + Subscribed to all current channels of . You will be notified of all their new videos. Subscribed to all current channels of @@ -10556,9 +10671,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderator - - src/app/core/users/user.service.ts418 - Search videos, playlists, channels…Search videos, playlists, channels… + src/app/core/users/user.service.ts418 + + + Search videos, playlists, channels… + Search videos, playlists, channels… src/app/header/search-typeahead.component.html 3 @@ -10569,27 +10686,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video removed from - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + Video added in at timestamps Video přidáno do v časových známkách - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + Video added in Video added in - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + Timestamps updated Timestamps updated - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + Starts at Starts at @@ -10609,61 +10726,61 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Delete video Delete video - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + Actions for the comment Actions for the comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + Delete comment Delete comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + Do you really want to delete this comment? Do you really want to delete this comment? - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + Comment deleted. Comment deleted. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + Encoder Encoder - - src/app/shared/shared-video-miniature/video-download.component.ts213 + src/app/shared/shared-video-miniature/video-download.component.ts213 + Format name Format name - - src/app/shared/shared-video-miniature/video-download.component.ts214 + src/app/shared/shared-video-miniature/video-download.component.ts214 + Size Size - - src/app/shared/shared-video-miniature/video-download.component.ts215 + src/app/shared/shared-video-miniature/video-download.component.ts215 + Bitrate Bitrate - - - src/app/shared/shared-video-miniature/video-download.component.ts217src/app/shared/shared-video-miniature/video-download.component.ts240 + src/app/shared/shared-video-miniature/video-download.component.ts217 + src/app/shared/shared-video-miniature/video-download.component.ts240 + Codec Codec - - src/app/shared/shared-video-miniature/video-download.component.ts237 + src/app/shared/shared-video-miniature/video-download.component.ts237 + Copied Zkopírováno - - - src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts197 + src/app/shared/shared-forms/input-toggle-hidden.component.ts47 + src/app/shared/shared-video-miniature/video-download.component.ts197 + Copy Copy @@ -10673,31 +10790,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video reported. Video nahlášeno. - - src/app/shared/shared-moderation/report-modals/video-report.component.ts113 + src/app/shared/shared-moderation/report-modals/video-report.component.ts113 + Do you really want to delete this video? Opravdu chcete odstranit toto video? - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/shared/shared-abuse-list/abuse-list-table.component.ts387src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts387 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + Video deleted. Video deleted. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts98src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts98 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + Actions for the reporter Actions for the reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + Mute reporter Mute reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + This video will be duplicated by your instance. This video will be duplicated by your instance. @@ -10711,9 +10828,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display live information Display live information - - - src/app/+my-library/my-videos/my-videos.component.ts174src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + src/app/+my-library/my-videos/my-videos.component.ts174 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + Update Update @@ -10731,20 +10848,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Save to playlist Save to playlist - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + You need to be <a href="/login">logged in</a> to rate this video. You need to be <a href="/login">logged in</a> to rate this video. - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + Mirror Mirror src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302 - - SubtitlesSubtitles + + + Subtitles + Subtitles src/app/shared/shared-video-miniature/video-download.component.html 9 @@ -10759,24 +10878,24 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Remove Remove - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + Remove & re-draft Remove & re-draft - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + Mute account Mute account - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts304src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts304 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + Open video actions Open video actions @@ -10792,8 +10911,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mute server account Mute server account - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + Report Nahlásit @@ -10844,29 +10963,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Published Publikováno - - src/app/shared/shared-video-miniature/video-miniature.component.ts158 + src/app/shared/shared-video-miniature/video-miniature.component.ts158 + Publication scheduled on Publication scheduled on - - src/app/shared/shared-video-miniature/video-miniature.component.ts163 + src/app/shared/shared-video-miniature/video-miniature.component.ts163 + Waiting transcoding Čekající překódování - - src/app/shared/shared-video-miniature/video-miniature.component.ts167 + src/app/shared/shared-video-miniature/video-miniature.component.ts167 + To transcode K překódování - - src/app/shared/shared-video-miniature/video-miniature.component.ts171 + src/app/shared/shared-video-miniature/video-miniature.component.ts171 + To import K importování - - src/app/shared/shared-video-miniature/video-miniature.component.ts175 - Subscribe to RSS feed ""Subscribe to RSS feed "" + src/app/shared/shared-video-miniature/video-miniature.component.ts175 + + + Subscribe to RSS feed "" + Subscribe to RSS feed "" src/app/shared/shared-video-miniature/videos-list.component.html 8 @@ -10898,241 +11019,241 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Only I can see this video Only I can see this video - - src/app/shared/shared-main/video/video.service.ts325 + src/app/shared/shared-main/video/video.service.ts325 + Only shareable via a private link Only shareable via a private link - - src/app/shared/shared-main/video/video.service.ts326 + src/app/shared/shared-main/video/video.service.ts326 + Anyone can see this video Kdokoliv může vidět toto video - - src/app/shared/shared-main/video/video.service.ts327 + src/app/shared/shared-main/video/video.service.ts327 + Only users of this instance can see this video Only users of this instance can see this video - - src/app/shared/shared-main/video/video.service.ts328 + src/app/shared/shared-main/video/video.service.ts328 + viewers viewers - - src/app/shared/shared-main/video/video.model.ts216 + src/app/shared/shared-main/video/video.model.ts216 + views views - - src/app/shared/shared-main/video/video.model.ts219 + src/app/shared/shared-main/video/video.model.ts219 + Close Close - - node_modules/@ng-bootstrap/src/alert/alert.ts58 + node_modules/@ng-bootstrap/src/alert/alert.ts58 + Slide of Slide of Currently selected slide number read by screen reader - - node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + Previous Previous - - node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + Next Next - - node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + Previous month Previous month - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + Next month Next month - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + Select month Select month - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + Select year Select year - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + «« «« - - node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + « « - - node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + » » - - node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + »» »» - - node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + First First - - node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + Previous Previous - - node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + Next Next - - node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + Last Last - - node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + - - node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + HH HH - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + Hours Hours - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + MM MM - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + Minutes Minutes - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + Increment hours Increment hours - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + Decrement hours Decrement hours - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + Increment minutes Increment minutes - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + Decrement minutes Decrement minutes - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + SS SS - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + Seconds Seconds - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + Increment seconds Increment seconds - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + Decrement seconds Decrement seconds - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + Close Close - - node_modules/@ng-bootstrap/src/toast/toast.ts78 + node_modules/@ng-bootstrap/src/toast/toast.ts78 + Video to import updated. Video to import updated. - - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + Your video was uploaded to your account and is private. Vaše video bylo nahráno na váš účet a je soukromé. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Ovšem přidružená data (štítky, popis...) budou ztraceny, opravdu chcete opustit tuto stránku? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Video ještě nebylo nahráno, opravdu chcete opustit tuto stránku? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video publikováno - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Máte neuložené změny! Pokud odejdete, budou vaše změny ztraceny. - - src/app/+videos/+video-edit/video-update.component.ts94 + src/app/+videos/+video-edit/video-update.component.ts94 + Video updated. Video aktualizováno. @@ -11146,43 +11267,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular The deletion will be sent to remote instances so they can reflect the change. The deletion will be sent to remote instances so they can reflect the change. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts175 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts175 + It is a remote comment, so the deletion will only be effective on your instance. It is a remote comment, so the deletion will only be effective on your instance. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts177 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts177 + Delete and re-draft Delete and re-draft - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + Do you really want to delete and re-draft this comment? Do you really want to delete and re-draft this comment? - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + Stop autoplaying next video Stop autoplaying next video - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + Autoplay next video Autoplay next video - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + Stop looping playlist videos Stop looping playlist videos - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + Loop playlist videos Loop playlist videos - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 + Placeholder image Placeholder image @@ -11194,28 +11315,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? - - src/app/+videos/+video-watch/video-watch.component.ts296 + src/app/+videos/+video-watch/video-watch.component.ts296 + Redirection Redirection - - src/app/+videos/+video-watch/video-watch.component.ts297 + src/app/+videos/+video-watch/video-watch.component.ts297 + This video contains mature or explicit content. Are you sure you want to watch it? Toto video obsahuje citlivý materiál. Opravdu jej chcete přehrát? - - src/app/+videos/+video-watch/video-watch.component.ts343 + src/app/+videos/+video-watch/video-watch.component.ts343 + Mature or explicit content Obsahuje citlivý materiál - - src/app/+videos/+video-watch/video-watch.component.ts344 + src/app/+videos/+video-watch/video-watch.component.ts344 + Up Next Up Next - - src/app/+videos/+video-watch/video-watch.component.ts415 + src/app/+videos/+video-watch/video-watch.component.ts415 + Cancel Cancel @@ -11224,91 +11345,89 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Autoplay is suspended Autoplay is suspended - - src/app/+videos/+video-watch/video-watch.component.ts417 + src/app/+videos/+video-watch/video-watch.component.ts417 + Enter/exit fullscreen (requires player focus) Enter/exit fullscreen (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts688 + src/app/+videos/+video-watch/video-watch.component.ts688 + Play/Pause the video (requires player focus) Play/Pause the video (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts689 + src/app/+videos/+video-watch/video-watch.component.ts689 + Mute/unmute the video (requires player focus) Mute/unmute the video (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts690 + src/app/+videos/+video-watch/video-watch.component.ts690 + Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts692 + src/app/+videos/+video-watch/video-watch.component.ts692 + Increase the volume (requires player focus) Increase the volume (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts694 + src/app/+videos/+video-watch/video-watch.component.ts694 + Decrease the volume (requires player focus) Decrease the volume (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts695 + src/app/+videos/+video-watch/video-watch.component.ts695 + Seek the video forward (requires player focus) Seek the video forward (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts697 + src/app/+videos/+video-watch/video-watch.component.ts697 + Seek the video backward (requires player focus) Seek the video backward (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts698 + src/app/+videos/+video-watch/video-watch.component.ts698 + Increase playback rate (requires player focus) Increase playback rate (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts700 + src/app/+videos/+video-watch/video-watch.component.ts700 + Decrease playback rate (requires player focus) Decrease playback rate (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+videos/+video-watch/video-watch.component.ts701 + Navigate in the video frame by frame (requires player focus) Navigate in the video frame by frame (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts703 + src/app/+videos/+video-watch/video-watch.component.ts703 + Like the video To se mi líbí - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + Dislike the video To se mi nelíbí - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + When active, the next video is automatically played after the current one. When active, the next video is automatically played after the current one. - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + Recently added Recently added - - - src/app/+videos/video-list/videos-list-common-page.component.ts195src/app/core/menu/menu.service.ts137 + src/app/+videos/video-list/videos-list-common-page.component.ts195 + src/app/core/menu/menu.service.ts137 + Videos from your subscriptions Videa od vašich odběrů - - src/app/+videos/video-list/video-user-subscriptions.component.ts30 - - + src/app/+videos/video-list/video-user-subscriptions.component.ts30 + Subscriptions Subscriptions @@ -11332,12 +11451,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos Local videos - - - - - src/app/+videos/video-list/videos-list-common-page.component.ts189src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 - Only videos uploaded on this instance are displayedOnly videos uploaded on this instance are displayed + src/app/+videos/video-list/videos-list-common-page.component.ts189 + src/app/core/menu/menu.service.ts142 + src/app/core/menu/menu.service.ts143 + + + Only videos uploaded on this instance are displayed + Only videos uploaded on this instance are displayed src/app/+videos/video-list/videos-list-common-page.component.ts 190 @@ -11346,21 +11466,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Discover videos Discover videos - - - src/app/+videos/videos-routing.module.ts19src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts19 + src/app/core/menu/menu.service.ts124 + Trending videos Trending videos - - - src/app/core/menu/menu.service.ts130 + src/app/core/menu/menu.service.ts130 + Recently added videos Recently added videos - - - src/app/core/menu/menu.service.ts136 + src/app/core/menu/menu.service.ts136 + Upload a video Upload a video diff --git a/client/src/locale/angular.da-DK.xlf b/client/src/locale/angular.da-DK.xlf index 842a5aa42..e3a87a7cc 100644 --- a/client/src/locale/angular.da-DK.xlf +++ b/client/src/locale/angular.da-DK.xlf @@ -291,7 +291,7 @@ video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. @@ -362,12 +362,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles undertekster @@ -378,7 +378,7 @@ Annuller - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Download @@ -2636,7 +2636,7 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -11168,34 +11168,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Din video blev uploadet til din konto og er privat. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Din video er ikke uploadet endnu, er du sikker på, at du vil forlade denne side? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video offentliggjort. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. You have unsaved changes! If you leave, your changes will be lost. diff --git a/client/src/locale/angular.de-DE.xlf b/client/src/locale/angular.de-DE.xlf index ba6704981..34ae38635 100644 --- a/client/src/locale/angular.de-DE.xlf +++ b/client/src/locale/angular.de-DE.xlf @@ -255,9 +255,9 @@ video Video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Der folgende Link enthält ein privates Token und sollte nicht an Dritte weitergegeben werden. @@ -329,13 +329,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Ihr Videokontingent ist mit diesem Video überschritten (Videogröße: , verwendet: , Kontingent: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Ihr tägliches Videokontingent wurde mit diesem Video überschritten (Videogröße: , verwendet: , Kontingent: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles Untertitel @@ -346,9 +346,9 @@ Abbrechen - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Herunterladen @@ -914,10 +914,10 @@ User Benutzer - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Sperren @@ -2034,14 +2034,14 @@ Hilf mit PeerTube zu übersetzen! extensions Erweiterungen - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. Dieses Bild ist zu groß. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Neues Banner hochladen @@ -2066,13 +2066,13 @@ Hilf mit PeerTube zu übersetzen! Account avatar Konto-Avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Kanal-Avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Markdown-compatible das auch angepasste PeerTube HTML-Tags unterstützt @@ -2521,8 +2521,8 @@ Hilf mit PeerTube zu übersetzen! Upload on hold Upload angehalten - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Entschuldigung, Ihr Account kann keine Videos hochladen. Wenn Sie Videos hochladen möchten, muss ein Administrator Ihr Videokontingent freischalten. @@ -3313,9 +3313,8 @@ Hilf mit PeerTube zu übersetzen! Unfollow Nichtmehr folgen - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Öffne die Instanz in einem neuen Tab @@ -4060,7 +4059,7 @@ Hilf mit PeerTube zu übersetzen! Users can resolve distant content - Nutzer können entfernten Inhalt lösen + Nutzer können Inhalte von abonnierten Instanzen suchen src/app/shared/shared-instance/instance-features-table.component.html126 @@ -4848,8 +4847,8 @@ Hilf mit PeerTube zu übersetzen! Administrator Administrator - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Admin E-Mail @@ -5413,8 +5412,6 @@ color: red; 66 - - Scope: Umfang: @@ -5423,7 +5420,6 @@ color: red; 81 - Local videos (this instance) Lokale Videos (Diese Instanz) @@ -5432,7 +5428,6 @@ color: red; 85 - Federated videos (this instance + followed instances) Föderierte Videos (diese Instanz + gefolgte Instanzen) @@ -5457,7 +5452,6 @@ color: red; 99 - Categories: Kategorien: @@ -6694,8 +6688,8 @@ Erstelle mein Konto Remove this filter Diesen Filter entfernen - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Sensitive content Sensibler Inhalt @@ -8385,9 +8379,9 @@ Erstelle mein Konto max size maximale Größe - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Editor maximieren @@ -9825,16 +9819,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (channel page) (Kanalseite) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (Kontoseite) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Hervorhebungen @@ -10238,8 +10232,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderator - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Suchen Sie nach Videos, Playlists, Kanälen… @@ -10785,35 +10779,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Das Video wurde in dein Konto hochgeladen und ist privat. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Weitere Infos (Tags, Beschreibung, ...) werden verworfen, wenn du diese Seite verlässt. Bist du dir sicher? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Dein Video ist noch nicht hochgeladen. Willst du diese Seite wirklich verlassen? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Hochladen - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload hochladen - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video veröffentlicht. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Es gibt ungespeicherte Änderungen! Wenn du die Seite verlässt, gehen die Änderungen verloren. diff --git a/client/src/locale/angular.el-GR.xlf b/client/src/locale/angular.el-GR.xlf index 1abd35160..e13ad9a30 100644 --- a/client/src/locale/angular.el-GR.xlf +++ b/client/src/locale/angular.el-GR.xlf @@ -243,7 +243,7 @@ video βίντεο - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Ο σύνδεσμος που ακολουθεί περιέχει απόρρητη συμβολοσειρά και δεν θα πρέπει να τον μοιραστείτε με τρίτους. @@ -312,10 +312,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles υπότιτλοι @@ -327,7 +327,7 @@ Ακύρωση - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Λήψη @@ -2461,7 +2461,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10925,35 +10925,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Το βίντεο ανέβηκε στον λογαριασμό σας και είναι ιδιωτικό. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Όμως οι σχετικές πληροφορίες (ετικέτες, περιγραφή...) θα χαθούν, σίγουρα θέλετε να φύγετε από τη σελίδα; - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Το βίντεο δεν έχει ανέβει ακόμα, θέλετε σίγουρα να φύγετε από τη σελίδα; - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Αποστολή - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Ανεβάστε - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Το βίνεο δημοσιεύτηκε. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.en-GB.xlf b/client/src/locale/angular.en-GB.xlf index c3ea5a451..5f429d335 100644 --- a/client/src/locale/angular.en-GB.xlf +++ b/client/src/locale/angular.en-GB.xlf @@ -387,7 +387,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -449,10 +449,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitlessubtitles src/app/shared/shared-video-miniature/video-download.component.ts55 @@ -462,7 +462,7 @@ Cancel - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Download @@ -2444,7 +2444,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10275,20 +10275,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 UploadUpload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload @@ -10297,13 +10297,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video published. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.en-US.xlf b/client/src/locale/angular.en-US.xlf index 5bd976c74..cc51230d8 100644 --- a/client/src/locale/angular.en-US.xlf +++ b/client/src/locale/angular.en-US.xlf @@ -273,7 +273,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -335,10 +335,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitlessubtitles src/app/shared/shared-video-miniature/video-download.component.ts55 @@ -348,7 +348,7 @@ Cancel - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Download @@ -2240,7 +2240,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -9805,20 +9805,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 UploadUpload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload @@ -9827,13 +9827,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video published. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.eo.xlf b/client/src/locale/angular.eo.xlf index 2734a2dad..f0a8c0c0c 100644 --- a/client/src/locale/angular.eo.xlf +++ b/client/src/locale/angular.eo.xlf @@ -240,7 +240,7 @@ video filmo - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -304,10 +304,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles @@ -320,7 +320,7 @@ Nuligi - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Elŝuto @@ -2324,7 +2324,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Pardonu, la alŝuta funkcio estas malŝaltita por via konto. Se vi volas aldoni filmojn, administranto devas malŝlosi vian datumlimon. @@ -10363,35 +10363,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Via filmo alŝutiĝis al via konto kaj estas privata. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Sed rilataj informoj (etikedoj, priskribo…) perdiĝos; ĉu vi certe volas folasi ĉi tiun paĝon? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Via filmo ankoraŭ ne alŝutiĝis; ĉu vi certe volas forlasi ĉi tiun paĝon? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Alŝuti - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Alŝuti - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Filmo publikigita. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.es-ES.xlf b/client/src/locale/angular.es-ES.xlf index a9a5591eb..cefb9c539 100644 --- a/client/src/locale/angular.es-ES.xlf +++ b/client/src/locale/angular.es-ES.xlf @@ -255,9 +255,9 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. El siguiente enlace contiene un token privado y no debe compartirse con nadie. @@ -329,13 +329,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Su cuota de video se excede con este video (tamaño del video:, usado: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Su cuota diaria de video se excede con este video (tamaño del video:, usado: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles subtítulos @@ -346,9 +346,9 @@ Cancelar - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Descargar @@ -914,10 +914,10 @@ User Usuario - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Expulsar @@ -2032,14 +2032,14 @@ The link will expire within 1 hour. extensions extensiones - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. Esta imagen es demasiado grande. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Subir un nuevo banner @@ -2064,13 +2064,13 @@ The link will expire within 1 hour. Account avatar Avatar de la cuenta - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Avatar de canal - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Compatible con Markdownque también soporta etiquetas HTML personalizadas de PeerTube @@ -2519,8 +2519,8 @@ The link will expire within 1 hour. Upload on hold Subir en espera - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Lo sentimos, la función de carga está deshabilitada para su cuenta. Si desea agregar videos, un administrador debe desbloquear su cuota. @@ -3304,9 +3304,8 @@ The link will expire within 1 hour. Unfollow Dejar de seguir - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Abrir instancia en una pestaña nueva @@ -4833,8 +4832,8 @@ The link will expire within 1 hour. Administrator Administrador - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Correo del administrador @@ -5376,7 +5375,7 @@ color: red; Sort by "Likes" - Ordenar por "Me guusta" + Ordenar por "Me gusta" src/app/shared/shared-video-miniature/video-filters-header.component.html 51 @@ -5398,8 +5397,6 @@ color: red; 66 - - Scope: Alcance: @@ -5408,7 +5405,6 @@ color: red; 81 - Local videos (this instance) Videos locales (esta instancia) @@ -5417,7 +5413,6 @@ color: red; 85 - Federated videos (this instance + followed instances) Vídeos federados (esta instancia + instancias seguidas) @@ -5442,7 +5437,6 @@ color: red; 99 - Categories: Categorías: @@ -6682,8 +6676,8 @@ channel with the same name ()! Remove this filter Quitar este filtro - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Sensitive content Contenido sensible @@ -8387,9 +8381,9 @@ channel with the same name ()! max size tamaño máximo - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Maximizar editor @@ -9831,18 +9825,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (página del canal) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (página de cuenta) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Énfasis @@ -10246,8 +10240,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderador - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Busca videos, listas de reproducción, canales… @@ -10783,35 +10777,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Tu vídeo ha sido subida a tu cuenta y es privado. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Pero los datos asociados (etiquetas, descripción...) se perderán, ¿seguro que quieres abandonar esta página? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Tu vídeo aún no se ha subido, ¿seguro que quieres abandonar esta página? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Subir - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Cargue - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Vídeo publicado. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. ¡Usted tiene cambios no guardados! Si te vas, tus cambios se perderán. diff --git a/client/src/locale/angular.eu-ES.xlf b/client/src/locale/angular.eu-ES.xlf index ef8133f4f..f8b017eb8 100644 --- a/client/src/locale/angular.eu-ES.xlf +++ b/client/src/locale/angular.eu-ES.xlf @@ -286,7 +286,7 @@ video bideoa - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -348,10 +348,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles @@ -364,7 +364,7 @@ Utzi - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Deskargatu @@ -2403,7 +2403,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Igotzeko-funtzioa desgaituta dago zure konturako. Bideoak gehitu nahi badituzu, administratzaile batek zure kuota desblokeatu behar du. @@ -10739,35 +10739,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Zure bideoa zure kontura igo da eta pribatua da. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Baina dagozkion datuak (etiketak, deskripzioa...) galduko dira, ziur orri hau utzi nahi duzula? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Zur bideoa ez da igo oraindik, ziur orri hau utzi nahi duzula? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Bideoa argitaratuta. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.fa-IR.xlf b/client/src/locale/angular.fa-IR.xlf index 4d80525f0..aa9c76e27 100644 --- a/client/src/locale/angular.fa-IR.xlf +++ b/client/src/locale/angular.fa-IR.xlf @@ -5,13 +5,13 @@ Close the left menu بستن منوی چپ - - src/app/app.component.ts133 + src/app/app.component.ts133 + Open the left menu بازکردن منوی چپ - - src/app/app.component.ts135 + src/app/app.component.ts135 + You don't have notifications. شما هیچ اعلانی ندارید. @@ -253,9 +253,9 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. پیوند زیر دارای یک رمز خصوصی است و نباید با کسی به اشتراک گذاشته شود. @@ -318,20 +318,20 @@ video - ویدئو + ویدیو src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289 src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: ) با این ویدیو از سهمیه ویدیوی شما بیشتر می شود (اندازه ویدیو: ، استفاده شده: ، سهم : ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) سهمیه ویدئویی روزانه شما با این ویدیو (اندازه ویدیو: استفاده شده: ، سهم: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles زیرنویس‌ها @@ -342,9 +342,9 @@ Cancel - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Download @@ -686,7 +686,7 @@ You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). - You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + می‌توانید از طریق هر نمونه فدیورس مبتنی بر اکتیویتی‌پاب (مثلا پیرتیوب، ماستودون یا پلروما) مشترک کانال شوید. src/app/shared/shared-user-subscription/remote-subscribe.component.html 18,19 @@ -694,7 +694,7 @@ You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). - You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + می‌توانید از طریق هر نمونه فدیورس مبتنی بر اکتیویتی‌پاب (مثلا پیرتیوب، ماستودون یا پلروما) با این تعامل داشته باشید. src/app/shared/shared-user-subscription/remote-subscribe.component.html 26,27 @@ -707,12 +707,7 @@ Default NSFW/sensitive videos policycan be redefined by the users - - Default NSFW/sensitive videos policy - - can be redefined by the users - - + خط‌مشی پیش‌فرض ویدئوهای حساس/نامناسب برای کار می‌تواند توسط کاربران بازتعریف شود src/app/shared/shared-instance/instance-features-table.component.html13 @@ -758,12 +753,12 @@ Automatically published - Automatically published + به‌طور‌خودکار منتشر‌شده src/app/shared/shared-instance/instance-features-table.component.html42 Video quota - Video quota + سهمیه ویدئو src/app/+admin/users/user-edit/user-edit.component.html151 src/app/+admin/users/user-edit/user-edit.component.html151 src/app/+admin/users/user-list/user-list.component.ts113 @@ -771,12 +766,7 @@ Unlimited ( per day) - - Unlimited - ( - per day) - - + نامحدود ( در روز) src/app/shared/shared-instance/instance-features-table.component.html61 @@ -788,59 +778,59 @@ You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. - You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. + می‌توانید هر پرونده تورنتی که به یک پرونده رسانه‌ای اشاره داشته باشد را وارد کنید. بایستی اطمینان حاصل کنید که شما حق انتشار محتوایی که به آن اشاره می‌کنید را دارید مگر نه این کار می‌تواند شما و نمونهٔ شما را با مشکلات حقوقی مواجه کند. src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html20 HTTP import (YouTube, Vimeo, direct URL...) - HTTP import (YouTube, Vimeo, direct URL...) + درون‌ریزی HTTP (یوتیوب، ویمئو، نشانی مستقیم...) src/app/shared/shared-instance/instance-features-table.component.html96 Torrent import - Torrent import + درون‌ریزی تورنت src/app/shared/shared-instance/instance-features-table.component.html103 Player - Player + پخش کننده src/app/shared/shared-instance/instance-features-table.component.html111 P2P enabled - P2P enabled + نظیربه‌نظیر فعال است src/app/shared/shared-instance/instance-features-table.component.html115 Loading instance statistics... - Loading instance statistics... + در حال بار کردن آمار نمونه... src/app/shared/shared-instance/instance-statistics.component.html1 Local محلی - - - src/app/shared/shared-instance/instance-statistics.component.html4src/app/shared/shared-video-miniature/video-filters.model.ts125 + src/app/shared/shared-instance/instance-statistics.component.html4 + src/app/shared/shared-video-miniature/video-filters.model.ts125 + users - users + کاربران src/app/shared/shared-instance/instance-statistics.component.html11 videos - videos + ویدیوها src/app/shared/shared-instance/instance-statistics.component.html21 src/app/shared/shared-instance/instance-statistics.component.html65 video views - video views + بازدیدهای ویدیو src/app/shared/shared-instance/instance-statistics.component.html31 video comments - video comments + نظرات ویدیو src/app/shared/shared-instance/instance-statistics.component.html41 src/app/shared/shared-instance/instance-statistics.component.html75 @@ -857,7 +847,7 @@ Following - Following + پی‌گیری src/app/+admin/admin.component.ts 29 @@ -873,7 +863,7 @@ Followers - Followers + دنبال‌کنندگان src/app/+admin/admin.component.ts 34 @@ -885,27 +875,27 @@ followers - followers + دنبال‌کنندگان src/app/shared/shared-instance/instance-statistics.component.html85 following - following + پی‌گیری src/app/shared/shared-instance/instance-statistics.component.html95 The upload failed - The upload failed + بارگذاری شکست خورد src/app/helpers/utils/upload.ts12 The connection was interrupted - The connection was interrupted + اتصال با اختلال مواجه شد src/app/helpers/utils/upload.ts16 The server encountered an error - The server encountered an error + کارساز با خطا مواجه شد src/app/helpers/utils/upload.ts19 @@ -921,10 +911,10 @@ User User - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Ban @@ -934,9 +924,7 @@ A banned user will no longer be able to login. - - A banned user will no longer be able to login. - + کاربر مسدود شده دیگر نمی تواند وارد شود. src/app/shared/shared-moderation/user-ban-modal.component.html21 @@ -964,48 +952,43 @@ Ban this user - Ban this user + مسدودکردن این کاربر src/app/shared/shared-moderation/user-ban-modal.component.html30 Block video "" - Block video " - " - + مسدود کردن ویدئوی " " src/app/shared/shared-moderation/video-block.component.html3 Block live "" - Block live "" + مسدود کردن پخش زندهٔ "" src/app/shared/shared-moderation/video-block.component.html4 Please describe the reason... - Please describe the reason... + لطفا دلیل را تشریح کنید... src/app/shared/shared-moderation/video-block.component.html13 - - - src/app/shared/shared-main/misc/top-menu-dropdown.component.html14 src/app/shared/shared-main/misc/top-menu-dropdown.component.html24 h - h + ساعت src/app/shared/shared-main/angular/duration-formatter.pipe.ts14 min - min + دقیقه src/app/shared/shared-main/angular/duration-formatter.pipe.ts16 src/app/shared/shared-main/angular/duration-formatter.pipe.ts23 sec - sec + ثانیه src/app/shared/shared-main/angular/duration-formatter.pipe.ts17 @@ -1017,23 +1000,18 @@ Sorry but there was an issue with the external login process. Please contact an administrator. - - Sorry but there was an issue with the external login process. Please - contact an administrator - . - - + ببخشید اما مشکلی در فرایند ورود خارجی بروز کرد. لطفا با یکی از مدیران تماس بگیرید. src/app/+login/login.component.html7 Request new verification email. - Request new verification email. + درخواست رایانامه جدید اعتبارسنجی. src/app/+login/login.component.html12 src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html16 This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. - This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. + این نمونه اجازه نام‌نویسی را می‌دهد. با این حال پیش از ساخت حساب، با دقت قوانینقوانین را مطالعه کنید. به منظور یافتن نمونه‌ای که بهترین انطباق را با نیاز شما داشته باشد می‌تواند در این جا دنبال نمونه‌های دیگر بگردید: https://joinpeertube.org/instances src/app/+login/login.component.html64 @@ -1054,7 +1032,7 @@ ⚠️ Most email addresses do not include capital letters. - ⚠️ Most email addresses do not include capital letters. + ⚠️ بیشتر نشانی‌های رایانامه فاقد حروف بزرگ هستند. src/app/+login/login.component.html 33,34 @@ -1074,17 +1052,17 @@ Click here to reset your password - Click here to reset your password + برای بازنشانی گذرواژه اینجا کلیک کنید src/app/+login/login.component.html51 I forgot my password - I forgot my password + گذرواژه‌ام را فراموش کرده‌ام src/app/+login/login.component.html51 Logging into an account lets you publish content - Logging into an account lets you publish content + وارد شدن به حساب به شما امکان انتشار محتوا می‌دهد src/app/+login/login.component.html60 @@ -1096,7 +1074,7 @@ Or sign in with - Or sign in with + یا از این طریق وارد شوید src/app/+login/login.component.html76 @@ -1106,21 +1084,18 @@ We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. - - We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. - + متاسفیم، ما نمی‌توانیم گذرواژه شما را بازیابی کنیم زیرا مدیر نمونه‌تان، سامانه رایانامه پیرتیوب را پیکربندی نکرده‌اند. src/app/+login/login.component.html103 Enter your email address and we will send you a link to reset your password. - Enter your email address and we will send you a link to reset your password. + نشانی رایانامه‌تان را وارد کنید تا ما پیوندی برای بازنشانی گذرواژه را برای شما بفرستیم. src/app/+login/login.component.html107 An email with the reset password instructions will be sent to . The link will expire within 1 hour. - An email with the reset password instructions will be sent to . -The link will expire within 1 hour. + رایانامه‌ای حاوی دستورالعمل بازنشانی گذرواژه به فرستاده خواهد شد. این پیوند تا یک ساعت دیگر منقضی می‌شود. src/app/+login/login.component.ts121 @@ -1143,23 +1118,23 @@ The link will expire within 1 hour. Reset - Reset + بازنشانی Password reset button src/app/+login/login.component.html126 on this instance - on this instance + روی این نمونه src/app/+search/search.component.html7 on the vidiverse - on the vidiverse + روی ودیورس src/app/+search/search.component.html8 for - for + برای src/app/+search/search.component.html 10 @@ -1189,7 +1164,7 @@ The link will expire within 1 hour. Back - Back + قبلی src/app/+signup/+register/register.component.ts 41 @@ -1198,7 +1173,7 @@ The link will expire within 1 hour. Next - Next + بعدی src/app/+signup/+register/register.component.ts 42 @@ -1207,19 +1182,13 @@ The link will expire within 1 hour. Signup - Signup + نام‌نویسی Button on the registration form to finalize the account and channel creation src/app/+signup/+register/register.component.ts67 Filters - - Filters - - - - - + پالایه‌ها src/app/+search/search.component.html19 @@ -1231,77 +1200,73 @@ The link will expire within 1 hour. subscribers - - subscribers - + مشترک src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 src/app/+search/search.component.html55 src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 Welcome to PeerTube, dear administrator! - Welcome to PeerTube, dear administrator! - - src/app/modal/admin-welcome-modal.component.html3 + مدیر گرامی، به پیرتیوب خوش‌آمدید! + src/app/modal/admin-welcome-modal.component.html3 + CLI documentation - CLI - documentation - - src/app/modal/admin-welcome-modal.component.html12 + مستندات CLI + src/app/modal/admin-welcome-modal.component.html12 + Upload or import videos, parse logs, prune storage directories, reset user password... Upload or import videos, parse logs, prune storage directories, reset user password... - - src/app/modal/admin-welcome-modal.component.html15 + src/app/modal/admin-welcome-modal.component.html15 + Administer documentation - Administer - documentation - - src/app/modal/admin-welcome-modal.component.html19 + مستندات مدیر + src/app/modal/admin-welcome-modal.component.html19 + Managing users, following other instances, dealing with spammers... Managing users, following other instances, dealing with spammers... - - src/app/modal/admin-welcome-modal.component.html22 + src/app/modal/admin-welcome-modal.component.html22 + Use documentation Use documentation - - src/app/modal/admin-welcome-modal.component.html26 + src/app/modal/admin-welcome-modal.component.html26 + Setup your account, managing video playlists, discover third-party applications... Setup your account, managing video playlists, discover third-party applications... - - src/app/modal/admin-welcome-modal.component.html29 + src/app/modal/admin-welcome-modal.component.html29 + Useful links Useful links - - src/app/modal/admin-welcome-modal.component.html39 + src/app/modal/admin-welcome-modal.component.html39 + Official PeerTube website (news, support, contribute...): https://joinpeertube.org Official PeerTube website (news, support, contribute...): https://joinpeertube.org - - src/app/modal/admin-welcome-modal.component.html42 + src/app/modal/admin-welcome-modal.component.html42 + Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances - - src/app/modal/admin-welcome-modal.component.html45 + src/app/modal/admin-welcome-modal.component.html45 + It's time to configure your instance! It's time to configure your instance! - - src/app/modal/admin-welcome-modal.component.html55 + src/app/modal/admin-welcome-modal.component.html55 + Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are. @@ -1322,31 +1287,31 @@ The link will expire within 1 hour. is very important for visitors to understand on what type of instance they are. - - src/app/modal/admin-welcome-modal.component.html58 + src/app/modal/admin-welcome-modal.component.html58 + If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. - - src/app/modal/admin-welcome-modal.component.html64 + src/app/modal/admin-welcome-modal.component.html64 + Remind me later Remind me later - - - src/app/modal/account-setup-warning-modal.component.html28src/app/modal/admin-welcome-modal.component.html74 + src/app/modal/account-setup-warning-modal.component.html28 + src/app/modal/admin-welcome-modal.component.html74 + Set up Set up - - src/app/modal/account-setup-warning-modal.component.html35 + src/app/modal/account-setup-warning-modal.component.html35 + Configure my instance Configure my instance - - src/app/modal/admin-welcome-modal.component.html81 + src/app/modal/admin-welcome-modal.component.html81 + Configuration warning! Configuration warning! @@ -1679,29 +1644,31 @@ The link will expire within 1 hour. Welcome to , dear user! Welcome to , dear user! - - src/app/modal/account-setup-warning-modal.component.html3 + src/app/modal/account-setup-warning-modal.component.html3 + It's time to set up your account profile! It's time to set up your account profile! - - src/app/modal/account-setup-warning-modal.component.html10 + src/app/modal/account-setup-warning-modal.component.html10 + Help moderators and other users to know who you are by: Help moderators and other users to know who you are by: - - src/app/modal/account-setup-warning-modal.component.html12 + src/app/modal/account-setup-warning-modal.component.html12 + Uploading an avatar Uploading an avatar - - src/app/modal/account-setup-warning-modal.component.html15 + src/app/modal/account-setup-warning-modal.component.html15 + Writing a description Writing a description - - src/app/modal/account-setup-warning-modal.component.html16 - Don't show me this anymoreDon't show me this anymore + src/app/modal/account-setup-warning-modal.component.html16 + + + Don't show me this anymore + Don't show me this anymore src/app/modal/account-setup-warning-modal.component.html 23 @@ -1911,19 +1878,19 @@ The link will expire within 1 hour. Live videos Live videos - - - - - src/app/+search/search-filters.component.html29src/app/+search/search-filters.component.ts64src/app/shared/shared-video-miniature/video-filters-header.component.html104src/app/shared/shared-video-miniature/video-filters.model.ts158 + src/app/+search/search-filters.component.html29 + src/app/+search/search-filters.component.ts64 + src/app/shared/shared-video-miniature/video-filters-header.component.html104 + src/app/shared/shared-video-miniature/video-filters.model.ts158 + VOD videos VOD videos - - - - - src/app/+search/search-filters.component.html34src/app/+search/search-filters.component.ts60src/app/shared/shared-video-miniature/video-filters-header.component.html109src/app/shared/shared-video-miniature/video-filters.model.ts164 + src/app/+search/search-filters.component.html34 + src/app/+search/search-filters.component.ts60 + src/app/shared/shared-video-miniature/video-filters-header.component.html109 + src/app/shared/shared-video-miniature/video-filters.model.ts164 + Published date تاریخ انتشار @@ -2113,14 +2080,14 @@ The link will expire within 1 hour. extensions extensions - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. This image is too large. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Upload a new banner @@ -2145,13 +2112,13 @@ The link will expire within 1 hour. Account avatar Account avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Channel avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Markdown compatible that also supports custom PeerTube HTML tags @@ -2620,8 +2587,8 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -3448,9 +3415,8 @@ The link will expire within 1 hour. Unfollow Unfollow - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Open instance in a new tab @@ -3631,12 +3597,12 @@ The link will expire within 1 hour. Show - نمایش + نشان دادن src/app/+admin/users/user-edit/user-password.component.html10 Hide - پنهان + پنهان کردن src/app/+admin/config/edit-custom-config/edit-instance-information.component.html115 src/app/+admin/users/user-edit/user-password.component.html11 src/app/shared/shared-user-settings/user-video-settings.component.html16 @@ -5064,8 +5030,8 @@ The link will expire within 1 hour. Administrator مدیر - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Admin email @@ -5635,8 +5601,6 @@ color: red; 66 - - Scope: Scope: @@ -5645,7 +5609,6 @@ color: red; 81 - Local videos (this instance) Local videos (this instance) @@ -5654,7 +5617,6 @@ color: red; 85 - Federated videos (this instance + followed instances) Federated videos (this instance + followed instances) @@ -5679,7 +5641,6 @@ color: red; 99 - Categories: Categories: @@ -6184,8 +6145,10 @@ color: red; src/app/+signup/shared/signup-success.component.html14 - - To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + + + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. src/app/+signup/shared/signup-success.component.html 18,19 @@ -7042,58 +7005,58 @@ channel with the same name ()! Remove this filter Remove this filter - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Sensitive content Sensitive content - - src/app/shared/shared-video-miniature/video-filters.model.ts115 + src/app/shared/shared-video-miniature/video-filters.model.ts115 + Scope Scope - - src/app/shared/shared-video-miniature/video-filters.model.ts122 + src/app/shared/shared-video-miniature/video-filters.model.ts122 + Federated Federated - - src/app/shared/shared-video-miniature/video-filters.model.ts124 + src/app/shared/shared-video-miniature/video-filters.model.ts124 + Languages Languages - - src/app/shared/shared-video-miniature/video-filters.model.ts132 + src/app/shared/shared-video-miniature/video-filters.model.ts132 + Categories Categories - - src/app/shared/shared-video-miniature/video-filters.model.ts141 + src/app/shared/shared-video-miniature/video-filters.model.ts141 + All videos All videos - - src/app/shared/shared-video-miniature/video-filters.model.ts150 + src/app/shared/shared-video-miniature/video-filters.model.ts150 + Blurred Blurred - - src/app/shared/shared-video-miniature/video-filters.model.ts225 + src/app/shared/shared-video-miniature/video-filters.model.ts225 + hidden hidden - - src/app/shared/shared-video-miniature/video-filters.model.ts231 + src/app/shared/shared-video-miniature/video-filters.model.ts231 + blurred blurred - - src/app/shared/shared-video-miniature/video-filters.model.ts232 + src/app/shared/shared-video-miniature/video-filters.model.ts232 + displayed displayed - - src/app/shared/shared-video-miniature/video-filters.model.ts234 + src/app/shared/shared-video-miniature/video-filters.model.ts234 + direct account followers @@ -8167,7 +8130,7 @@ channel with the same name ()! Federation - Federation + فدراسیون src/app/+admin/admin.component.ts26 @@ -8178,7 +8141,7 @@ channel with the same name ()! Ban - Ban + مسدود کردن src/app/+admin/users/user-list/user-list.component.ts91 src/app/shared/shared-moderation/user-moderation-dropdown.component.ts274 @@ -8629,7 +8592,7 @@ channel with the same name ()! Create - ایجاد + ساختن src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts103 src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89 @@ -8793,9 +8756,9 @@ channel with the same name ()! max size max size - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Maximize editor @@ -8848,38 +8811,38 @@ channel with the same name ()! Focus the search bar Focus the search bar - - src/app/app.component.ts270 + src/app/app.component.ts270 + Toggle the left menu Toggle the left menu - - src/app/app.component.ts275 + src/app/app.component.ts275 + Go to the discover videos page Go to the discover videos page - - src/app/app.component.ts280 + src/app/app.component.ts280 + Go to the trending videos page Go to the trending videos page - - src/app/app.component.ts285 + src/app/app.component.ts285 + Go to the recently added videos page Go to the recently added videos page - - src/app/app.component.ts290 + src/app/app.component.ts290 + Go to the local videos page Go to the local videos page - - src/app/app.component.ts295 + src/app/app.component.ts295 + Go to the videos upload page Go to the videos upload page - - src/app/app.component.ts300 + src/app/app.component.ts300 + Go to my subscriptions Go to my subscriptions @@ -9001,41 +8964,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Today Today - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts123 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts123 + Yesterday Yesterday - - src/app/shared/shared-video-miniature/videos-list.component.ts124 + src/app/shared/shared-video-miniature/videos-list.component.ts124 + This week This week - - src/app/shared/shared-video-miniature/videos-list.component.ts125 + src/app/shared/shared-video-miniature/videos-list.component.ts125 + This month This month - - src/app/shared/shared-video-miniature/videos-list.component.ts126 + src/app/shared/shared-video-miniature/videos-list.component.ts126 + Last month Last month - - src/app/shared/shared-video-miniature/videos-list.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts127 + Older Older - - src/app/shared/shared-video-miniature/videos-list.component.ts128 + src/app/shared/shared-video-miniature/videos-list.component.ts128 + Cannot load more videos. Try again later. Cannot load more videos. Try again later. - - - src/app/shared/shared-video-miniature/videos-list.component.ts225src/app/shared/shared-video-miniature/videos-selection.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts225 + src/app/shared/shared-video-miniature/videos-selection.component.ts127 + Last 7 days Last 7 days @@ -10204,9 +10167,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Displayed Displayed - - - src/app/shared/shared-instance/instance-features-table.component.ts55src/app/shared/shared-video-miniature/video-filters.model.ts227 + src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-video-miniature/video-filters.model.ts227 + ~ 1 minute ~ 1 minute @@ -10243,18 +10206,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (channel page) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (account page) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Emphasis @@ -10686,8 +10649,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderator - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Search videos, playlists, channels… @@ -11238,35 +11201,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. ویدئو انتشار‌یافت - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. You have unsaved changes! If you leave, your changes will be lost. diff --git a/client/src/locale/angular.fi-FI.xlf b/client/src/locale/angular.fi-FI.xlf index 8cee9bed7..922b9d490 100644 --- a/client/src/locale/angular.fi-FI.xlf +++ b/client/src/locale/angular.fi-FI.xlf @@ -393,7 +393,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -455,10 +455,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitlessubtitles src/app/shared/shared-video-miniature/video-download.component.ts55 @@ -468,7 +468,7 @@ Peruuta - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Lataa @@ -2417,7 +2417,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10255,20 +10255,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Videota ei ole vielä ladattu, haluatko varmasti poistua sivulta? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 UploadUpload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload @@ -10277,13 +10277,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video julkaistu. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.fr-FR.xlf b/client/src/locale/angular.fr-FR.xlf index e619faaaa..bfb6b1a23 100644 --- a/client/src/locale/angular.fr-FR.xlf +++ b/client/src/locale/angular.fr-FR.xlf @@ -39,7 +39,7 @@ A new video abuse has been created on video - Un nouvel abus vidéo a été créé sur la vidéo + Un nouvel abus vidéo a été créé sur la vidéo src/app/shared/shared-main/users/user-notifications.component.html49 @@ -255,9 +255,9 @@ video vidéo - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Le lien suivant contient un jeton privé et ne doit être partagé avec personne. @@ -329,13 +329,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Votre quota est dépassé avec cette vidéo (taille de la vidéo : , utilisé : , quota : ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Votre quota journalier est dépassé avec cette vidéo (taille de la vidéo : , utilisé : , quota : ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles sous-titres @@ -346,9 +346,9 @@ Annuler - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Télécharger @@ -504,7 +504,7 @@ Updated - Mettre à jour + Mit à jour src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 @@ -850,7 +850,7 @@ Following - Suivant + Suivre src/app/+admin/admin.component.ts 29 @@ -914,10 +914,10 @@ User Utilisateur·rice - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Bannir @@ -1574,7 +1574,7 @@ The link will expire within 1 hour. Contact - Contactez + Contact src/app/+about/about-routing.module.ts36 src/app/menu/menu.component.html136 @@ -2032,14 +2032,14 @@ The link will expire within 1 hour. extensions les extensions - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. Cette image est trop grande. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Téléverser une nouvelle bannière @@ -2064,13 +2064,13 @@ The link will expire within 1 hour. Account avatar Avatar du compte - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Avatar de la chaîne - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Compatible avec le format Markdown qui prend également en charge les balises HTML PeerTube personnalisées @@ -2521,8 +2521,8 @@ The link will expire within 1 hour. Upload on hold Téléversement en attente - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Désolé, la fonction de téléchargement est désactivée pour votre compte. Si vous souhaitez ajouter des vidéos, un administrateur doit débloquer votre quota. @@ -3309,9 +3309,8 @@ The link will expire within 1 hour. Unfollow Arrêter de suivre - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Ouvrir l'instance dans une nouvelle fenêtre @@ -4842,8 +4841,8 @@ The link will expire within 1 hour. Administrator Administrateur - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Courriel de l'administrateur.ice @@ -5407,8 +5406,6 @@ color: red; 66 - - Scope: Portée : @@ -5417,7 +5414,6 @@ color: red; 81 - Local videos (this instance) Vidéos locales (cette instance) @@ -5426,7 +5422,6 @@ color: red; 85 - Federated videos (this instance + followed instances) Vidéos fédérées (cette instance + les instances suivies) @@ -5451,7 +5446,6 @@ color: red; 99 - Categories: Catégories : @@ -6693,8 +6687,8 @@ channel with the same name ()! Remove this filter Supprimer ce filtre - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Sensitive content Contenu sensible @@ -7187,7 +7181,7 @@ channel with the same name ()! Follow - Suit + Suivre src/app/+admin/follows/following-list/follow-modal.component.html 3 @@ -8388,9 +8382,9 @@ channel with the same name ()! max size taille max - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Agrandir l'éditeur @@ -9830,18 +9824,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (page de la chaîne) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (page du compte) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis L'emphase @@ -10239,8 +10233,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Modérateur - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Recherchez des vidéos, des listes de lecture, des chaînes… @@ -10776,35 +10770,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Votre vidéo a été téléversée sur votre compte et elle est privée. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Les données associées (étiquettes, description, etc.) seront par contre perdues ; êtes-vous sûr de vouloir quitter cette page ? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Votre vidéo n'est pas encore téléversée ; êtes-vous sûr de vouloir quitter cette page ? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Mise en ligne - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Téléverser - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Vidéo publiée. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Vous n'avez pas sauvegardé vos modifications ! Si vous quittez la page, vous les perdrez. diff --git a/client/src/locale/angular.gd.xlf b/client/src/locale/angular.gd.xlf index d87f7ecf5..5fbde7cf0 100644 --- a/client/src/locale/angular.gd.xlf +++ b/client/src/locale/angular.gd.xlf @@ -255,7 +255,7 @@ video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Tha tòcan prìobhaideach am broinn a’ cheangail a leanas agus cha bu chòir dhut a cho-roinneadh le duine sam bith. @@ -326,12 +326,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Chaidh thu thar cuota nam videothan agad leis a’ video seo (meud a’ video: , ’ga chleachdadh: , cuota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Bheir a’ video seo thar cuota làitheil nam videothan agad thu (meud a’ video: , ’ga chleachdadh: , cuota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles fo-thiotalan @@ -342,7 +342,7 @@ Sguir dheth - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Luchdaich a-nuas @@ -2488,7 +2488,7 @@ The link will expire within 1 hour. Upload on hold Tha an luchdadh suas ’ga cumail air ais - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Tha sinn duilich ach chaidh gleus an luchdaidh suas a chur à comas dhan chunntas agad. Ma tha thu airson videothan a chur ris, feumaidh rianaire an glas a thoirt far a’ chuota agad. @@ -10585,32 +10585,32 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Chaidh a’ video agad a luchdadh suas dhan chunntas agad ’s tha e prìobhaideach. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Ach thèid dàta sam bith nach deach a shàbhaladh (tagaichean, tuairisgeulan…) air chall, a bheil thu cinnteach gu bheil thu airson an duilleag seo fhàgail? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Cha deach a’ video agad a luchdadh suas fhathast, a bheil thu cinnteach gu bheil thu airson an duilleag seo fhàgail? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Luchdaich suas - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Luchdaich suas - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Chaidh a’ video fhoillseachadh. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Tha atharraichean gun sàbhaladh agad! Ma dh’fhalbhas tu, thèid na h-atharraichean agad air chall. diff --git a/client/src/locale/angular.gl-ES.xlf b/client/src/locale/angular.gl-ES.xlf index 6ad06693e..328f14ce3 100644 --- a/client/src/locale/angular.gl-ES.xlf +++ b/client/src/locale/angular.gl-ES.xlf @@ -5,13 +5,13 @@ Close the left menu Pechar o menú da esquerda - - src/app/app.component.ts133 + src/app/app.component.ts133 + Open the left menu Abrir o menú da esquerda - - src/app/app.component.ts135 + src/app/app.component.ts135 + You don't have notifications. Non tes notificacións. @@ -177,9 +177,9 @@ My watch history Historial de visualizacións - - - src/app/+my-library/my-history/my-history.component.html3src/app/+my-library/my-history/my-history.component.ts68 + src/app/+my-library/my-history/my-history.component.html3 + src/app/+my-library/my-history/my-history.component.ts68 + Save to Gardar en @@ -257,7 +257,7 @@ vídeo - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. A seguinte ligazón contén un token privado e non deberías compartilo con ninguén. @@ -330,12 +330,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Este vídeo fai que superes a túa cota de vídeo (tamaño do vídeo: , used: , cota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Con este vídeo superas a túa cota diaria de vídeo (tamaño do vídeo: , used: , cota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles subtítulos @@ -348,7 +348,7 @@ - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Descargar @@ -371,16 +371,10 @@ No results. Sen resultados. - - - - - - - - - - src/app/+videos/video-list/overview/video-overview.component.html4src/app/shared/shared-video-miniature/videos-list.component.html41src/app/shared/shared-video-miniature/videos-selection.component.ts23 + src/app/+videos/video-list/overview/video-overview.component.html4 + src/app/shared/shared-video-miniature/videos-list.component.html41 + src/app/shared/shared-video-miniature/videos-selection.component.ts23 + Submit Enviar @@ -498,9 +492,9 @@ {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {No videos} =1 {1 vídeo} other { vídeos}} - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html32src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + src/app/+my-library/+my-video-channels/my-video-channels.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + @@ -533,13 +527,11 @@ Save Gardar - - - - - - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38src/app/shared/shared-user-settings/user-interface-settings.component.html16src/app/shared/shared-user-settings/user-video-settings.component.html72src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38 + src/app/shared/shared-user-settings/user-interface-settings.component.html16 + src/app/shared/shared-user-settings/user-video-settings.component.html72 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + Delete from Eliminar de @@ -557,40 +549,39 @@ src/app/shared/shared-video-miniature/abstract-video-list.html44 src/app/shared/shared-video-miniature/abstract-video-list.html44 - Videos with the most interactions for recent videos, minus user history Vídeos con máis interaccións entre os recentes, menos historial da usuaria - - src/app/+videos/video-list/videos-list-common-page.component.ts203 + src/app/+videos/video-list/videos-list-common-page.component.ts203 + Delete Eliminar - - - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts88src/app/+admin/moderation/video-block-list/video-block-list.component.ts92src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164src/app/+admin/users/user-list/user-list.component.ts81src/app/+admin/users/user-list/user-list.component.ts195src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.html50src/app/+my-library/my-videos/my-videos.component.ts117src/app/+my-library/my-videos/my-videos.component.ts144src/app/+my-library/my-videos/my-videos.component.ts185src/app/+videos/+video-edit/shared/video-edit.component.html178src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts145src/app/shared/shared-abuse-list/abuse-list-table.component.ts388src/app/shared/shared-abuse-list/abuse-list-table.component.ts423src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts88 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts92 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164 + src/app/+admin/users/user-list/user-list.component.ts81 + src/app/+admin/users/user-list/user-list.component.ts195 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.html50 + src/app/+my-library/my-videos/my-videos.component.ts117 + src/app/+my-library/my-videos/my-videos.component.ts144 + src/app/+my-library/my-videos/my-videos.component.ts185 + src/app/+videos/+video-edit/shared/video-edit.component.html178 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts388 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts423 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + Only live videos Só vídeos en directo @@ -621,11 +612,12 @@ Hide Agochar - - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-forms/input-toggle-hidden.component.ts38src/app/shared/shared-user-settings/user-video-settings.component.html16src/app/shared/shared-video-miniature/video-filters-header.component.html76 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-forms/input-toggle-hidden.component.ts38 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/shared/shared-video-miniature/video-filters-header.component.html76 + Show Mostrar @@ -670,7 +662,6 @@ Subscríbete coa túa conta local src/app/shared/shared-user-subscription/subscribe-button.component.html58 - The live stream will be automatically terminated. A retransmisión en directo rematará automáticamente. @@ -821,8 +812,9 @@ Local Local - - src/app/shared/shared-instance/instance-statistics.component.html4src/app/shared/shared-video-miniature/video-filters.model.ts125 + src/app/shared/shared-instance/instance-statistics.component.html4 + src/app/shared/shared-video-miniature/video-filters.model.ts125 + users usuarias @@ -897,35 +889,35 @@ The upload failed A subida fallou - - src/app/helpers/utils/upload.ts12 + src/app/helpers/utils/upload.ts12 + The connection was interrupted Conexión interrumpida - - src/app/helpers/utils/upload.ts16 + src/app/helpers/utils/upload.ts16 + The server encountered an error O servidor atopou un erro - - src/app/helpers/utils/upload.ts19 + src/app/helpers/utils/upload.ts19 + Your file couldn't be transferred before the set timeout (usually 10min) O teu ficheiro non se pode transferir antes da marxe establecida (normalmente 10min) - - src/app/helpers/utils/upload.ts22 + src/app/helpers/utils/upload.ts22 + Your file was too large (max. size: ) O ficheiro era demasiado grande (tamaño max.: ) - - src/app/helpers/utils/upload.ts26 + src/app/helpers/utils/upload.ts26 + User Usuaria - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Vetar @@ -1226,81 +1218,84 @@ The link will expire within 1 hour. Welcome to PeerTube, dear administrator! Benvida administradora de PeerTube! - - src/app/modal/admin-welcome-modal.component.html3 + src/app/modal/admin-welcome-modal.component.html3 + CLI documentation Documentación CLI - - src/app/modal/admin-welcome-modal.component.html12 + src/app/modal/admin-welcome-modal.component.html12 + Upload or import videos, parse logs, prune storage directories, reset user password... Subir ou importar vídeos, analizar logs, optimizar directorios, restablecer contrasinal de usuarias... - - src/app/modal/admin-welcome-modal.component.html15 + src/app/modal/admin-welcome-modal.component.html15 + Administer documentation Documentación da administradora - - src/app/modal/admin-welcome-modal.component.html19 + src/app/modal/admin-welcome-modal.component.html19 + Managing users, following other instances, dealing with spammers... Xestión de usuarias, seguimento de outras instancias, tratar con spammers... - - src/app/modal/admin-welcome-modal.component.html22 + src/app/modal/admin-welcome-modal.component.html22 + Use documentation Documentación de utilización - - src/app/modal/admin-welcome-modal.component.html26 + src/app/modal/admin-welcome-modal.component.html26 + Setup your account, managing video playlists, discover third-party applications... Configurar a túa conta, xestión de listas de reprodución, descubrimento de aplicacións de terceiros... - - src/app/modal/admin-welcome-modal.component.html29 + src/app/modal/admin-welcome-modal.component.html29 + Useful links Ligazóns útiles - - src/app/modal/admin-welcome-modal.component.html39 + src/app/modal/admin-welcome-modal.component.html39 + Official PeerTube website (news, support, contribute...): https://joinpeertube.org Sitio web oficial PeerTube (novas, axuda, contribuír...): https://joinpeertube.org - - src/app/modal/admin-welcome-modal.component.html42 + src/app/modal/admin-welcome-modal.component.html42 + Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances Pon a túa instancia no índice público de PeerTube: https://instances.joinpeertube.org/instances - - src/app/modal/admin-welcome-modal.component.html45 + src/app/modal/admin-welcome-modal.component.html45 + It's time to configure your instance! Agora configura a túa instancia! - - src/app/modal/admin-welcome-modal.component.html55 + src/app/modal/admin-welcome-modal.component.html55 + Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are. Escoller o nome da instancia, darlle unha descrición, indicando quen es, por que creaches a túa instancia e canto tempo tes pensado mantela é información importante para quen visita a instancia para saber o tipo de instancia que é. - - src/app/modal/admin-welcome-modal.component.html58 + src/app/modal/admin-welcome-modal.component.html58 + If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. Se queres permitir o rexistro, decide cales son as regras de moderación e os termos de servizo da instancia, así como indicar os idiomas que falan as persoas moderadoras. Deste xeito axudaraslle ás persoas que se rexistren na instancia axeitada de PeerTube. - - src/app/modal/admin-welcome-modal.component.html64 + src/app/modal/admin-welcome-modal.component.html64 + Remind me later Lémbramo máis tarde - - src/app/modal/account-setup-warning-modal.component.html28src/app/modal/admin-welcome-modal.component.html74 - Set up Set up - - src/app/modal/account-setup-warning-modal.component.html35 + src/app/modal/account-setup-warning-modal.component.html28 + src/app/modal/admin-welcome-modal.component.html74 + + + Set up + Set up + src/app/modal/account-setup-warning-modal.component.html35 + Configure my instance Configurar a miña instancia - - src/app/modal/admin-welcome-modal.component.html81 + src/app/modal/admin-welcome-modal.component.html81 + Configuration warning! Aviso da configuración! @@ -1476,11 +1471,11 @@ The link will expire within 1 hour. My videos Vídeos - - - - - src/app/+my-library/my-library-routing.module.ts76src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts71src/app/core/menu/menu.service.ts77 + src/app/+my-library/my-library-routing.module.ts76 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts71 + src/app/core/menu/menu.service.ts77 + My video imports Vídeos importados @@ -1508,9 +1503,11 @@ The link will expire within 1 hour. Videos Vídeos - - - src/app/+accounts/account-videos/account-videos.component.ts17src/app/+my-library/my-library.component.ts52src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17src/app/core/menu/menu.service.ts76 + src/app/+accounts/account-videos/account-videos.component.ts17 + src/app/+my-library/my-library.component.ts52 + src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17 + src/app/core/menu/menu.service.ts76 + Interface: Interface: @@ -1525,11 +1522,11 @@ The link will expire within 1 hour. Subscriptions Subscricións - - - - - src/app/+my-library/my-library.component.ts64src/app/+videos/video-list/video-user-subscriptions.component.ts25src/app/+videos/videos-routing.module.ts58src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts64 + src/app/+videos/video-list/video-user-subscriptions.component.ts25 + src/app/+videos/videos-routing.module.ts58 + src/app/core/menu/menu.service.ts91 + History Historial @@ -1539,10 +1536,10 @@ The link will expire within 1 hour. VIDEOS VÍDEOS - - - - src/app/+accounts/accounts.component.ts82src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215src/app/+video-channels/video-channels.component.ts76 + src/app/+accounts/accounts.component.ts82 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215 + src/app/+video-channels/video-channels.component.ts76 + Import jobs concurrency Concurrencia de tarefas de importación @@ -1617,23 +1614,35 @@ The link will expire within 1 hour. See all your notifications Ver todas as notificacións src/app/menu/notification.component.html49 - - Welcome to , dear user!Welcome to , dear user! - - src/app/modal/account-setup-warning-modal.component.html3 - It's time to set up your account profile!It's time to set up your account profile! - - src/app/modal/account-setup-warning-modal.component.html10 - Help moderators and other users to know who you are by:Help moderators and other users to know who you are by: - - src/app/modal/account-setup-warning-modal.component.html12 - Uploading an avatarUploading an avatar - - src/app/modal/account-setup-warning-modal.component.html15 - Writing a descriptionWriting a description - - src/app/modal/account-setup-warning-modal.component.html16 - Don't show me this anymoreDon't show me this anymore + + + Welcome to , dear user! + Dámosche a benvida a ! + src/app/modal/account-setup-warning-modal.component.html3 + + + It's time to set up your account profile! + Agora toca configurar o perfil da túa conta! + src/app/modal/account-setup-warning-modal.component.html10 + + + Help moderators and other users to know who you are by: + Cóntalle a outras usuarias e á moderación quen es con: + src/app/modal/account-setup-warning-modal.component.html12 + + + Uploading an avatar + Subindo un avatar + src/app/modal/account-setup-warning-modal.component.html15 + + + Writing a description + Escribindo unha descrición + src/app/modal/account-setup-warning-modal.component.html16 + + + Don't show me this anymore + Non mostrar esto outra vez src/app/modal/account-setup-warning-modal.component.html 23 @@ -1839,15 +1848,19 @@ The link will expire within 1 hour. Live videos Vídeos en directo - - - src/app/+search/search-filters.component.html29src/app/+search/search-filters.component.ts64src/app/shared/shared-video-miniature/video-filters-header.component.html104src/app/shared/shared-video-miniature/video-filters.model.ts158 + src/app/+search/search-filters.component.html29 + src/app/+search/search-filters.component.ts64 + src/app/shared/shared-video-miniature/video-filters-header.component.html104 + src/app/shared/shared-video-miniature/video-filters.model.ts158 + VOD videos Vídeos VOD - - - src/app/+search/search-filters.component.html34src/app/+search/search-filters.component.ts60src/app/shared/shared-video-miniature/video-filters-header.component.html109src/app/shared/shared-video-miniature/video-filters.model.ts164 + src/app/+search/search-filters.component.html34 + src/app/+search/search-filters.component.ts60 + src/app/shared/shared-video-miniature/video-filters-header.component.html109 + src/app/shared/shared-video-miniature/video-filters.model.ts164 + Published date Data de publicación @@ -2024,14 +2037,14 @@ The link will expire within 1 hour. extensions extensións - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. Esta imaxe é demasiado grande. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Subir unha nova cabeceira @@ -2056,13 +2069,13 @@ The link will expire within 1 hour. Account avatar Avatar da conta - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Avatar da canle - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Compatible con markdown e con soporte tamén para etiquetas HTML personalizadas de PeerTube @@ -2512,25 +2525,31 @@ The link will expire within 1 hour. Upload on hold Subida agardando - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Lamentámolo, a túa conta non permite subir contidos. Se queres engadir vídeos, unha administradora debe aumentar a túa cota. - - src/app/+videos/+video-edit/video-add.component.ts102 - Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + src/app/+videos/+video-edit/video-add.component.ts102 + + + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + Os vídeos subidos son revisados antes de ser publicados na túa conta. Se queres engadir vídeos sen ser revisados pola moderación, unha admin ten que desactivar o bloqueo automático de vídeos. src/app/+videos/+video-edit/video-add.component.ts 104 - - Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + + + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + A túa cota de vídeos diaria non é suficiente. Se queres subir máis vídeos tes que agardar 24 horas ou que unha administradora aumente a túa cota diaria. src/app/+videos/+video-edit/video-add.component.ts 106 - - Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + + + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + A túa cota de vídeo non é suficiente. Se queres engadir máis vídeos unha administradora ten que aumentar a túa cota. src/app/+videos/+video-edit/video-add.component.ts 108 @@ -2539,8 +2558,8 @@ The link will expire within 1 hour. Read instance rules for help Le as regras da instancia para ter axuda - - src/app/+videos/+video-edit/video-add.component.html2 + src/app/+videos/+video-edit/video-add.component.html2 + Select the torrent to import Escolle o torrent a importar @@ -2570,18 +2589,18 @@ The link will expire within 1 hour. Cannot create live because this instance have too many created lives Non se pode iniciar o directo porque esta instancia xa ten moitos directos iniciados - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + Cannot create live because you created too many lives Non se pode iniciar o directo porque creaches moitos directos - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + Live published. Publicado o Directo. - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + Go Live Emite en Directo @@ -2595,38 +2614,38 @@ The link will expire within 1 hour. We recommend you to not use the root user to publish your videos, since it's the super-admin account of your instance. Instead, create a dedicated account to upload your videos. Non che recomendamos usar root para publicar vídeos, porque é a conta de administración da túa instancia. No seu lugar, crea unha conta dedicada para subir os vídeos. - - src/app/+videos/+video-edit/video-add.component.html34 + src/app/+videos/+video-edit/video-add.component.html34 + Import Importa - - src/app/+videos/+video-edit/video-add.component.html44 + src/app/+videos/+video-edit/video-add.component.html44 + Upload Sube - - src/app/+videos/+video-edit/video-add.component.html45 + src/app/+videos/+video-edit/video-add.component.html45 + Upload a file Sube un ficheiro - - src/app/+videos/+video-edit/video-add.component.html53 + src/app/+videos/+video-edit/video-add.component.html53 + Import with URL Importa con URL - - src/app/+videos/+video-edit/video-add.component.html63 + src/app/+videos/+video-edit/video-add.component.html63 + Import with torrent Importa con torrent - - src/app/+videos/+video-edit/video-add.component.html73 + src/app/+videos/+video-edit/video-add.component.html73 + Go live En Directo - - src/app/+videos/+video-edit/video-add.component.html83 + src/app/+videos/+video-edit/video-add.component.html83 + Other videos Outros vídeos @@ -2959,30 +2978,30 @@ The link will expire within 1 hour. View from and others Ver desde e outras - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + {VAR_PLURAL, plural, =1 {1 reply} other { replies}} {VAR_PLURAL, plural, =1 {1 resposta} other { respostas}} - - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74src/app/+videos/+video-watch/shared/comment/video-comments.component.html77src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + View from Ver desde - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + View Ver - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + Comments are disabled. Non se permite comentar. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + The deletion will be sent to remote instances so they can reflect the change. A eliminación será enviada a instancias remotas para que poidan aplicar o cambio. @@ -3207,8 +3226,9 @@ The link will expire within 1 hour. Clear filters Eliminar filtros - - src/app/shared/shared-forms/advanced-input-filter.component.html23src/app/shared/shared-main/misc/simple-search-input.component.html14 + src/app/shared/shared-forms/advanced-input-filter.component.html23 + src/app/shared/shared-main/misc/simple-search-input.component.html14 + Video/Comment/Account Vídeo/Comentario/Conta @@ -3292,9 +3312,8 @@ The link will expire within 1 hour. Unfollow Deixar de seguir - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Abrir instancia en nova lapela @@ -4027,14 +4046,14 @@ The link will expire within 1 hour. Search Buscar - - - - - - - - src/app/+admin/plugins/plugins.component.html5src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts260src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/shared/shared-main/misc/simple-search-input.component.ts12src/app/shared/shared-main/misc/simple-search-input.component.ts13 + src/app/+admin/plugins/plugins.component.html5 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts260 + src/app/header/search-typeahead.component.html8 + src/app/shared/shared-instance/instance-features-table.component.html122 + src/app/shared/shared-main/misc/simple-search-input.component.ts12 + src/app/shared/shared-main/misc/simple-search-input.component.ts13 + Users can resolve distant content As usuarias poden resolver contido distante @@ -4065,29 +4084,29 @@ The link will expire within 1 hour. src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36 src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 - Videos with the most interactions for recent videos Vídeos con máis interaccións para os vídeos recentes - - src/app/+videos/video-list/videos-list-common-page.component.ts204 + src/app/+videos/video-list/videos-list-common-page.component.ts204 + Videos with the most views during the last 24 hours Vídeos con máis visualizacións nas últimas 24 horas - - src/app/+videos/video-list/videos-list-common-page.component.ts208 - Videos with the most views during the last daysVideos with the most views during the last days + src/app/+videos/video-list/videos-list-common-page.component.ts208 + + + Videos with the most views during the last days + Vídeos con máis visualizacións non últimos días src/app/+videos/video-list/videos-list-common-page.component.ts 209 - Videos that have the most likes Vídeos con máis likes - - src/app/+videos/video-list/videos-list-common-page.component.ts205 + src/app/+videos/video-list/videos-list-common-page.component.ts205 + To load your new installed plugins or themes, refresh the page. Para cargar os novos plugins ou decorados instalados, actualiza a páxina. @@ -4315,38 +4334,39 @@ The link will expire within 1 hour. Add a new category Engadir unha nova categoría - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57src/app/shared/shared-forms/select/select-categories.component.html5 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + src/app/shared/shared-forms/select/select-categories.component.html5 + The sharing system implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. O sistema compartido implica que algunha información técnica acerca do teu sistema (como o enderezo IP público) pode ser enviado a outras usuarias, pero reduce grandemente a carga do servidor. - - src/app/shared/shared-user-settings/user-video-settings.component.html45 + src/app/shared/shared-user-settings/user-video-settings.component.html45 + Help share videos being played Axuda a compartir vídeos reproducidos - - src/app/shared/shared-user-settings/user-video-settings.component.html42 + src/app/shared/shared-user-settings/user-video-settings.component.html42 + When on a video page, directly start playing the video. Na páxina dun vídeo, iniciar a reprodución automáticamente. - - src/app/shared/shared-user-settings/user-video-settings.component.html56 + src/app/shared/shared-user-settings/user-video-settings.component.html56 + Automatically play videos Reproducir automáticamente - - src/app/shared/shared-user-settings/user-video-settings.component.html53 + src/app/shared/shared-user-settings/user-video-settings.component.html53 + When a video ends, follow up with the next suggested video. Ó rematar o vídeo, reproduce o seguinte vídeo suxerido. - - src/app/shared/shared-user-settings/user-video-settings.component.html67 + src/app/shared/shared-user-settings/user-video-settings.component.html67 + Automatically start playing the next video Reproducir automáticamente o seguinte vídeo - - src/app/shared/shared-user-settings/user-video-settings.component.html64 + src/app/shared/shared-user-settings/user-video-settings.component.html64 + Main languages you/your moderators speak Idiomas principais que ti ou os teus moderadores falades @@ -4820,8 +4840,8 @@ The link will expire within 1 hour. Administrator Administración - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Correo-e da Admin @@ -5304,106 +5324,138 @@ color: red; Channel Layout Disposición da canle src/app/shared/shared-video-miniature/video-download.component.ts255 - - Update your settings Update your settings + + + Update your settings + Actualiza os axustes src/app/shared/shared-video-miniature/video-filters-header.component.html 3,7 - - More filtersMore filters + + + More filters + Máis filtros src/app/shared/shared-video-miniature/video-filters-header.component.html 20 - - Less filtersLess filters + + + Less filters + Menos filtros src/app/shared/shared-video-miniature/video-filters-header.component.html 21 - - Sort by "Recently Added"Sort by "Recently Added" + + + Sort by "Recently Added" + Orde por "Engadido recentemente" src/app/shared/shared-video-miniature/video-filters-header.component.html 46 - - Sort by "Views"Sort by "Views" + + + Sort by "Views" + Orde por "Visualizacións" src/app/shared/shared-video-miniature/video-filters-header.component.html 48 - - Sort by "Hot"Sort by "Hot" + + + Sort by "Hot" + Orde por "Popularidade" src/app/shared/shared-video-miniature/video-filters-header.component.html 49 - - Sort by "Best"Sort by "Best" + + + Sort by "Best" + Orde por "Mellor" src/app/shared/shared-video-miniature/video-filters-header.component.html 50 - - Sort by "Likes"Sort by "Likes" + + + Sort by "Likes" + Orde por "Gústame" src/app/shared/shared-video-miniature/video-filters-header.component.html 51 - - Languages:Languages: + + + Languages: + Idiomas: src/app/shared/shared-video-miniature/video-filters-header.component.html 59 - - Sensitive content:Sensitive content: + + + Sensitive content: + Contido sensible: src/app/shared/shared-video-miniature/video-filters-header.component.html 66 - - Scope:Scope: + + + Scope: + Ámbito: src/app/shared/shared-video-miniature/video-filters-header.component.html 81 - - Local videos (this instance)Local videos (this instance) + + + Local videos (this instance) + Vídeos locais (esta instancia) src/app/shared/shared-video-miniature/video-filters-header.component.html 85 - - Federated videos (this instance + followed instances)Federated videos (this instance + followed instances) + + + Federated videos (this instance + followed instances) + Vídeos federados (esta instancia + instancias seguidas) src/app/shared/shared-video-miniature/video-filters-header.component.html 90 - - Type:Type: + + + Type: + Tipo: src/app/shared/shared-video-miniature/video-filters-header.component.html 95 - - VOD & Live videosVOD & Live videos + + + VOD & Live videos + VOD & Vídeos en directo src/app/shared/shared-video-miniature/video-filters-header.component.html 99 - - Categories:Categories: + + + Categories: + Categorías: src/app/shared/shared-video-miniature/video-filters-header.component.html 114 - - Moderation:Moderation: + + + Moderation: + Moderación: src/app/shared/shared-video-miniature/video-filters-header.component.html 120 @@ -5473,9 +5525,9 @@ color: red; Add a new language Engade un novo idioma - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71src/app/shared/shared-forms/select/select-languages.component.html6 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71 + src/app/shared/shared-forms/select/select-languages.component.html6 + is awaiting email verification está agardando a verficación do email @@ -5510,9 +5562,9 @@ color: red; Change ownership Cambiar propietaria - - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts180 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts180 + Select the next owner Elixe a nova propietaria @@ -5608,13 +5660,13 @@ color: red; Create video channel Crear canle de vídeo - - src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + No channel found. Non se atopan canles. - - src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + subscribers @@ -5704,10 +5756,10 @@ color: red; Channel page Páxina da canle - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html25src/app/+my-library/my-subscriptions/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+my-library/+my-video-channels/my-video-channels.component.html25 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html67 + Created by Creada por @@ -5726,8 +5778,8 @@ color: red; You don't have any video in your watch history yet. Aínda non tes vídeos no teu historial de visualización. - - src/app/+my-library/my-history/my-history.component.html29 + src/app/+my-library/my-history/my-history.component.html29 + Open syndication dropdown Abrir despregable de sindicación @@ -5739,14 +5791,18 @@ color: red; src/app/shared/shared-main/feeds/feed.component.html 3 - - Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description.Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + + + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + Algunha das túas canles non están totalmente configuradas. Fainas máis amigables indicando de xeito explícito o seu contido engadindo unha cabeceira, un avatar e unha descrición. src/app/shared/shared-main/misc/channels-setup-message.component.html 5 - - Set up my channelsSet up my channels + + + Set up my channels + Configurar as miñas canles src/app/shared/shared-main/misc/channels-setup-message.component.html 6 @@ -5803,8 +5859,8 @@ color: red; Create playlist Crear listaxe - - src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + My video channels As miñas canles @@ -5850,8 +5906,10 @@ color: red; If you need help to use PeerTube, you can have a look at the documentation. Se precisas axuda para usar PeerTube, podes ler a documentación. src/app/+signup/shared/signup-success.component.html14 - - To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + + + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + Axuda á moderación e outras usuarias a saber quen es, non esquezas completar o perfil da túa conta engadindo un avatar e unha descrición. src/app/+signup/shared/signup-success.component.html 18,19 @@ -5962,12 +6020,12 @@ color: red; {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} {VAR_PLURAL, plural, =1 {1 subscritora} other { subscritoras}} - - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html30src/app/+video-channels/video-channels.component.html73src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + src/app/+video-channels/video-channels.component.html73 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 vídeo} other { vídeos}} @@ -6009,8 +6067,8 @@ color: red; CHANNELS CANLES - - src/app/+accounts/accounts.component.ts81 + src/app/+accounts/accounts.component.ts81 + This account does not have channels. Esta conta non ten canles. @@ -6129,7 +6187,6 @@ channel with the same name ()!16 - Your name O teu nome @@ -6154,8 +6211,10 @@ channel with the same name ()!About Acerca de src/app/+about/about-instance/about-instance.component.html5 - - Contact usContact us + + + Contact us + Contacta src/app/+about/about-instance/about-instance.component.html 7 @@ -6165,7 +6224,6 @@ channel with the same name ()!3 - This instance is dedicated to sensitive/NSFW content. Esta instancia está dedicada a contido sensible/NSFW. @@ -6443,8 +6501,10 @@ channel with the same name ()!Link copied Ligazón copiada src/app/+about/about-instance/about-instance.component.ts98 - - Contact the administrator(s)Contact the administrator(s) + + + Contact the administrator(s) + Contacta coa administración src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -6590,9 +6650,8 @@ channel with the same name ()! Account videos Vídeos da conta - - src/app/+accounts/accounts-routing.module.ts35 - + src/app/+accounts/accounts-routing.module.ts35 + ACCOUNT CONTA @@ -6604,63 +6663,78 @@ channel with the same name ()! Account video channels Canles de vídeo da conta - - src/app/+accounts/accounts-routing.module.ts26 - + src/app/+accounts/accounts-routing.module.ts26 + Display all videos (private, unlisted or not yet published) Mostra todos os vídeos (privado, non listados ou aínda non publicados) - - - - - - - - src/app/shared/shared-video-miniature/video-filters-header.component.html125 - Remove this filterRemove this filter - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 - Sensitive contentSensitive content - - src/app/shared/shared-video-miniature/video-filters.model.ts115 - ScopeScope - - src/app/shared/shared-video-miniature/video-filters.model.ts122 - FederatedFederated - - src/app/shared/shared-video-miniature/video-filters.model.ts124 - LanguagesLanguages - - src/app/shared/shared-video-miniature/video-filters.model.ts132 - CategoriesCategories - - src/app/shared/shared-video-miniature/video-filters.model.ts141 - All videosAll videos - - src/app/shared/shared-video-miniature/video-filters.model.ts150 - BlurredBlurred - - src/app/shared/shared-video-miniature/video-filters.model.ts225 - hiddenhidden - - src/app/shared/shared-video-miniature/video-filters.model.ts231 - blurredblurred - - src/app/shared/shared-video-miniature/video-filters.model.ts232 - displayeddisplayed - - src/app/shared/shared-video-miniature/video-filters.model.ts234 + src/app/shared/shared-video-miniature/video-filters-header.component.html125 + + + Remove this filter + Eliminar este filtro + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + + + Sensitive content + Contido sensible + src/app/shared/shared-video-miniature/video-filters.model.ts115 + + + Scope + Ámbito + src/app/shared/shared-video-miniature/video-filters.model.ts122 + + + Federated + Federado + src/app/shared/shared-video-miniature/video-filters.model.ts124 + + + Languages + Idiomas + src/app/shared/shared-video-miniature/video-filters.model.ts132 + + + Categories + Categorías + src/app/shared/shared-video-miniature/video-filters.model.ts141 + + + All videos + Tódolos vídeos + src/app/shared/shared-video-miniature/video-filters.model.ts150 + + + Blurred + Difuminado + src/app/shared/shared-video-miniature/video-filters.model.ts225 + + + hidden + agochado + src/app/shared/shared-video-miniature/video-filters.model.ts231 + + + blurred + difuminado + src/app/shared/shared-video-miniature/video-filters.model.ts232 + + + displayed + mostrado + src/app/shared/shared-video-miniature/video-filters.model.ts234 + direct account followers seguidoras directas da conta - - src/app/+accounts/accounts.component.ts152 + src/app/+accounts/accounts.component.ts152 + Report this account Denunciar esta conta - - src/app/+accounts/accounts.component.ts196 + src/app/+accounts/accounts.component.ts196 + VIDEOS VÍDEOS @@ -6670,19 +6744,19 @@ channel with the same name ()! Username copied Nome de usuaria copiado - - - src/app/+accounts/accounts.component.ts120src/app/+video-channels/video-channels.component.ts103 + src/app/+accounts/accounts.component.ts120 + src/app/+video-channels/video-channels.component.ts103 + 1 subscriber 1 subscritora - - src/app/+accounts/accounts.component.ts124 + src/app/+accounts/accounts.component.ts124 + subscribers subscritoras - - src/app/+accounts/accounts.component.ts126 + src/app/+accounts/accounts.component.ts126 + Audio-only Só audio @@ -7163,28 +7237,28 @@ channel with the same name ()! Used Utilizado - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Available Dispoñible - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Do you really want to remove this video redundancy? Desexas eliminar a redundancia deste vídeo? - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + Remove redundancy Eliminar redundancia - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + Video redundancies removed! Redundancia do vídeo eliminada! - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + Account unmuted by your instance. Conta reactivada pola túa instancia. @@ -7793,28 +7867,28 @@ channel with the same name ()! Videos history is enabled O historial dos vídeos está activado - - src/app/+my-library/my-history/my-history.component.ts114 + src/app/+my-library/my-history/my-history.component.ts114 + Videos history is disabled O historial dos vídeos está desactivado - - src/app/+my-library/my-history/my-history.component.ts115 + src/app/+my-library/my-history/my-history.component.ts115 + Delete videos history Eliminar historial dos vídeos - - src/app/+my-library/my-history/my-history.component.ts127 + src/app/+my-library/my-history/my-history.component.ts127 + Are you sure you want to delete all your videos history? Queres eliminar todo o historial dos teus vídeos? - - src/app/+my-library/my-history/my-history.component.ts128 + src/app/+my-library/my-history/my-history.component.ts128 + Videos history deleted Historial dos vídeos eliminado - - src/app/+my-library/my-history/my-history.component.ts136 + src/app/+my-library/my-history/my-history.component.ts136 + My watch history O meu historial @@ -8018,23 +8092,23 @@ channel with the same name ()! Unknown language Idioma descoñecido - - src/app/shared/shared-forms/select/select-languages.component.ts41 + src/app/shared/shared-forms/select/select-languages.component.ts41 + Too many languages are enabled. Please enable them all or stay below 20 enabled languages. Hai demasiados idiomas activados. Por favor, actívaos todos ou deixa menos de 20 idiomas activos. - - src/app/shared/shared-user-settings/user-video-settings.component.ts76 + src/app/shared/shared-user-settings/user-video-settings.component.ts76 + Video settings updated. Actualizados os axustes de vídeo. - - src/app/shared/shared-user-settings/user-video-settings.component.ts121 + src/app/shared/shared-user-settings/user-video-settings.component.ts121 + Display/Video settings updated. Axustes Reprodución/Vídeo gardados. - - src/app/shared/shared-user-settings/user-video-settings.component.ts130 + src/app/shared/shared-user-settings/user-video-settings.component.ts130 + Video channel created. Creada a canle de vídeo . @@ -8159,10 +8233,10 @@ channel with the same name ()! Do you really want to delete ? Desexas eliminar ? - - - - src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34src/app/+my-library/my-videos/my-videos.component.ts143 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34 + src/app/+my-library/my-videos/my-videos.component.ts143 + Change ownership Cambiar a propiedade @@ -8187,13 +8261,13 @@ channel with the same name ()! Do you really want to delete videos? Desexas eliminar vídeos? - - src/app/+my-library/my-videos/my-videos.component.ts116 + src/app/+my-library/my-videos/my-videos.component.ts116 + videos deleted. vídeos eliminados. - - src/app/+my-library/my-videos/my-videos.component.ts133 + src/app/+my-library/my-videos/my-videos.component.ts133 + Do you really want to delete ? Desexas eliminar ? @@ -8205,9 +8279,9 @@ channel with the same name ()! Video deleted. Vídeo eliminado. - - - src/app/+my-library/my-videos/my-videos.component.ts151src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + src/app/+my-library/my-videos/my-videos.component.ts151 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + Ownership change request sent. Enviouse a solicitude de cambio de propiedade. @@ -8274,9 +8348,9 @@ channel with the same name ()! max size Tam máx - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Maximizar editor @@ -8308,7 +8382,6 @@ channel with the same name ()!src/app/+reset-password/reset-password.component.ts38 src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts33 - Subscribe to the account Subscribirse á conta @@ -8326,38 +8399,38 @@ channel with the same name ()! Focus the search bar Cursor na barra de busca - - src/app/app.component.ts270 + src/app/app.component.ts270 + Toggle the left menu Activar menú esquerdo - - src/app/app.component.ts275 + src/app/app.component.ts275 + Go to the discover videos page Ir á páxina de descubrimento de vídeos - - src/app/app.component.ts280 + src/app/app.component.ts280 + Go to the trending videos page Ir á páxina de videos que son tendencia - - src/app/app.component.ts285 + src/app/app.component.ts285 + Go to the recently added videos page Ir á páxina de vídeos engadidos recentemente - - src/app/app.component.ts290 + src/app/app.component.ts290 + Go to the local videos page Ir á páxina de vídeos locais - - src/app/app.component.ts295 + src/app/app.component.ts295 + Go to the videos upload page Ir á páxina para subir vídeos - - src/app/app.component.ts300 + src/app/app.component.ts300 + Go to my subscriptions Ir ás miñas subscricións @@ -8413,8 +8486,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Trending En voga - - src/app/+videos/video-list/videos-list-common-page.component.ts201src/app/core/menu/menu.service.ts131 + src/app/+videos/video-list/videos-list-common-page.component.ts201 + src/app/core/menu/menu.service.ts131 + ON EN @@ -8477,41 +8551,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Today Hoxe - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts123 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts123 + Yesterday Onte - - src/app/shared/shared-video-miniature/videos-list.component.ts124 + src/app/shared/shared-video-miniature/videos-list.component.ts124 + This week Nesta semana - - src/app/shared/shared-video-miniature/videos-list.component.ts125 + src/app/shared/shared-video-miniature/videos-list.component.ts125 + This month Neste mes - - src/app/shared/shared-video-miniature/videos-list.component.ts126 + src/app/shared/shared-video-miniature/videos-list.component.ts126 + Last month Último mes - - src/app/shared/shared-video-miniature/videos-list.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts127 + Older Máis antigo - - src/app/shared/shared-video-miniature/videos-list.component.ts128 + src/app/shared/shared-video-miniature/videos-list.component.ts128 + Cannot load more videos. Try again later. Non se poden cargar máis vídeo, inténtao máis tarde. - - src/app/shared/shared-video-miniature/videos-list.component.ts225src/app/shared/shared-video-miniature/videos-selection.component.ts127 - + src/app/shared/shared-video-miniature/videos-list.component.ts225 + src/app/shared/shared-video-miniature/videos-selection.component.ts127 + Last 7 days Últimos 7 días @@ -8571,9 +8645,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Views Visualizacións - - - src/app/+search/search-filters.component.ts94 + src/app/+search/search-filters.component.ts94 + Search index is unavailable. Retrying with instance results instead. Non está dispoñible a busca no índice, intentándoo cos resultados na instancia. @@ -9350,14 +9423,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular PeerTube cannot handle this kind of file. Accepted extensions are }. PeerTube non pode procesar este tipo de ficheiro. Permítese }. src/app/shared/shared-forms/reactive-file.component.ts56 - - All categoriesAll categories + + + All categories + Tódalas categorías src/app/shared/shared-forms/select/select-categories.component.ts 24 - - You can't select more than itemsYou can't select more than items + + + You can't select more than items + Podes seleccionar más de elementos src/app/shared/shared-forms/select/select-checkbox-all.component.ts 81 @@ -9366,8 +9443,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Add a new option Engade unha nova opción - - src/app/shared/shared-forms/select/select-checkbox.component.ts27 + src/app/shared/shared-forms/select/select-checkbox.component.ts27 + Custom value... Valor personalizado... @@ -9646,9 +9723,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular All languages Tódolos idiomas - - - src/app/+videos/+video-edit/shared/video-edit.component.ts180src/app/shared/shared-forms/select/select-languages.component.ts25 + src/app/+videos/+video-edit/shared/video-edit.component.ts180 + src/app/shared/shared-forms/select/select-languages.component.ts25 + Hidden Agochado @@ -9662,8 +9739,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Displayed Amosado - - src/app/shared/shared-instance/instance-features-table.component.ts55src/app/shared/shared-video-miniature/video-filters.model.ts227 + src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-video-miniature/video-filters.model.ts227 + ~ 1 minute ~ 1 minuto @@ -9692,16 +9770,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (channel page) (páxina da canle) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (páxina da conta) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Énfase @@ -9730,8 +9808,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Close search Pechar busca - - src/app/shared/shared-main/misc/simple-search-input.component.html19 + src/app/shared/shared-main/misc/simple-search-input.component.html19 + users banned. usuarias vetadas. @@ -10097,8 +10175,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderadora - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Busca vídeos, listaxes, canles… @@ -10250,9 +10328,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display live information Mostrar información do directo - - - src/app/+my-library/my-videos/my-videos.component.ts174src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + src/app/+my-library/my-videos/my-videos.component.ts174 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + Update Actualizar @@ -10404,8 +10482,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular To import Importar src/app/shared/shared-video-miniature/video-miniature.component.ts175 - - Subscribe to RSS feed ""Subscribe to RSS feed "" + + + Subscribe to RSS feed "" + Subscríbete á fonte RSS "" src/app/shared/shared-video-miniature/videos-list.component.html 8 @@ -10437,23 +10517,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Only I can see this video Só eu podo ver o vídeo - - src/app/shared/shared-main/video/video.service.ts325 + src/app/shared/shared-main/video/video.service.ts325 + Only shareable via a private link Compartido só a través de ligazón privada - - src/app/shared/shared-main/video/video.service.ts326 + src/app/shared/shared-main/video/video.service.ts326 + Anyone can see this video Calquera pode ver o vídeo - - src/app/shared/shared-main/video/video.service.ts327 + src/app/shared/shared-main/video/video.service.ts327 + Only users of this instance can see this video Só as usuarias desta instancia poden ver o vídeo - - src/app/shared/shared-main/video/video.service.ts328 + src/app/shared/shared-main/video/video.service.ts328 + Close Pechar @@ -10629,32 +10709,32 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. O vídeo subeuse á túa conta e é privado. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Pero os datos asociados (etiquetas, descrición...) perderanse, queres saír igualmente desta páxina? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? O vídeo aínda non se subiu, desexas realmente saír desta páxina? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Subir - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Subir - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Vídeo publicado. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Tes cambios sen gardar! Se saes perderás os cambios. @@ -10806,16 +10886,14 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Recently added Engadidos recentemente - - - src/app/+videos/video-list/videos-list-common-page.component.ts195src/app/core/menu/menu.service.ts137 + src/app/+videos/video-list/videos-list-common-page.component.ts195 + src/app/core/menu/menu.service.ts137 + Videos from your subscriptions Vídeos das túas subscricións - - src/app/+videos/video-list/video-user-subscriptions.component.ts30 - - + src/app/+videos/video-list/video-user-subscriptions.component.ts30 + Subscriptions Subscricións @@ -10839,12 +10917,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos Vídeos locais - - - - - src/app/+videos/video-list/videos-list-common-page.component.ts189src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 - Only videos uploaded on this instance are displayedOnly videos uploaded on this instance are displayed + src/app/+videos/video-list/videos-list-common-page.component.ts189 + src/app/core/menu/menu.service.ts142 + src/app/core/menu/menu.service.ts143 + + + Only videos uploaded on this instance are displayed + Só se mostrarán vídeos subidos a esta instancia src/app/+videos/video-list/videos-list-common-page.component.ts 190 @@ -10853,21 +10932,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Discover videos Descubrir vídeos - - - src/app/+videos/videos-routing.module.ts19src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts19 + src/app/core/menu/menu.service.ts124 + Trending videos Vídeos tendencia - - - src/app/core/menu/menu.service.ts130 + src/app/core/menu/menu.service.ts130 + Recently added videos Vídeos recentemente engadidos - - - src/app/core/menu/menu.service.ts136 + src/app/core/menu/menu.service.ts136 + Upload a video Subir un vídeo diff --git a/client/src/locale/angular.hu-HU.xlf b/client/src/locale/angular.hu-HU.xlf index a9e6ac290..7e2877bd2 100644 --- a/client/src/locale/angular.hu-HU.xlf +++ b/client/src/locale/angular.hu-HU.xlf @@ -5,13 +5,13 @@ Close the left menu A bal oldali menü bezárása - - src/app/app.component.ts133 + src/app/app.component.ts133 + Open the left menu A bal oldali menü bezárása - - src/app/app.component.ts135 + src/app/app.component.ts135 + You don't have notifications. Nincsenek értesítései. @@ -128,7 +128,7 @@ A new version of the plugin/theme is available: - A new version of the plugin/theme is available: + A(z) bővítmény vagy téma új verziója érhető el: src/app/shared/shared-main/users/user-notifications.component.html 198,199 @@ -136,7 +136,7 @@ A new version of PeerTube is available: - A new version of PeerTube is available: + Egy új PeerTube verzió érhető el: src/app/shared/shared-main/users/user-notifications.component.html 206,207 @@ -162,13 +162,24 @@ - - src/app/+videos/+video-watch/video-watch.component.html77src/app/menu/menu.component.html105src/app/shared/shared-main/buttons/action-dropdown.component.html22src/app/shared/shared-main/misc/top-menu-dropdown.component.html14src/app/shared/shared-main/misc/top-menu-dropdown.component.html24src/app/shared/shared-video-miniature/video-download.component.html27src/app/shared/shared-video-miniature/video-download.component.html52src/app/shared/shared-video-miniature/video-download.component.html78src/app/shared/shared-video-miniature/video-download.component.html89src/app/shared/shared-video-miniature/video-download.component.html101src/app/shared/shared-video-miniature/videos-selection.component.html1 + src/app/+videos/+video-watch/video-watch.component.html77 + src/app/menu/menu.component.html105 + src/app/shared/shared-main/buttons/action-dropdown.component.html22 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html14 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html24 + src/app/shared/shared-video-miniature/video-download.component.html27 + src/app/shared/shared-video-miniature/video-download.component.html52 + src/app/shared/shared-video-miniature/video-download.component.html78 + src/app/shared/shared-video-miniature/video-download.component.html89 + src/app/shared/shared-video-miniature/video-download.component.html101 + src/app/shared/shared-video-miniature/videos-selection.component.html1 + My watch history Saját megtekintési előzmények - - src/app/+my-library/my-history/my-history.component.html3src/app/+my-library/my-history/my-history.component.ts68 + src/app/+my-library/my-history/my-history.component.html3 + src/app/+my-library/my-history/my-history.component.ts68 + Save to Mentés ide @@ -177,8 +188,8 @@ Options Beállítások - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + Start at Kezdés itt @@ -231,24 +242,27 @@ Create Létrehozás - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html8src/app/+admin/users/user-edit/user-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + video videó - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. - The following link contains a private token and should not be shared with anyone. - - src/app/shared/shared-video-miniature/video-download.component.html19 + A következő hivatkozás egy személyes tokent tartalmaz, ezért nem szabad másokkal megosztani. + src/app/shared/shared-video-miniature/video-download.component.html19 + @@ -260,13 +274,13 @@ subtitles felirat - - src/app/shared/shared-video-miniature/video-download.component.ts57 + src/app/shared/shared-video-miniature/video-download.component.ts57 + Format Formátum - - src/app/shared/shared-video-miniature/video-download.component.html74 + src/app/shared/shared-video-miniature/video-download.component.html74 + @@ -279,45 +293,49 @@ Video stream Video-adatfolyam - - src/app/shared/shared-video-miniature/video-download.component.html85 + src/app/shared/shared-video-miniature/video-download.component.html85 + Audio stream Hangadatfolyam - - src/app/shared/shared-video-miniature/video-download.component.html97 + src/app/shared/shared-video-miniature/video-download.component.html97 + Direct download Közvetlen letöltés - - src/app/shared/shared-video-miniature/video-download.component.html116 + src/app/shared/shared-video-miniature/video-download.component.html116 + Torrent (.torrent file) Torrent (.torrent fájl) - - src/app/shared/shared-video-miniature/video-download.component.html121 + src/app/shared/shared-video-miniature/video-download.component.html121 + Advanced - Advanced - - src/app/shared/shared-video-miniature/video-download.component.html135 + Haladó + src/app/shared/shared-video-miniature/video-download.component.html135 + Simple - Simple - - src/app/shared/shared-video-miniature/video-download.component.html143 + Egyszerű + src/app/shared/shared-video-miniature/video-download.component.html143 + video videó + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289 + src/app/shared/shared-video-miniature/video-download.component.ts54 + + + Your video quota is exceeded with this video (video size: , used: , quota: ) + Ezzel a videóval túllépte a videókvótáját (videó mérete: , felhasználva: , kvóta: ) + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 + + Your daily video quota is exceeded with this video (video size: , used: , quota: ) + Ezzel a videóval átlépte a napi videó kvótáját (videó mérete: , felhasználva: , kvóta: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 - Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles feliratok @@ -327,13 +345,15 @@ Cancel Mégse - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Letöltés - - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272src/app/shared/shared-video-miniature/video-download.component.html4src/app/shared/shared-video-miniature/video-download.component.html156 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + src/app/shared/shared-video-miniature/video-download.component.html4 + src/app/shared/shared-video-miniature/video-download.component.html156 + Reason... Indok… @@ -347,8 +367,10 @@ No results. No results. - - src/app/+videos/video-list/overview/video-overview.component.html4src/app/shared/shared-video-miniature/videos-list.component.html41src/app/shared/shared-video-miniature/videos-selection.component.ts23 + src/app/+videos/video-list/overview/video-overview.component.html4 + src/app/shared/shared-video-miniature/videos-list.component.html41 + src/app/shared/shared-video-miniature/videos-selection.component.ts23 + Submit Elküldés @@ -358,8 +380,10 @@ src/app/shared/shared-moderation/report-modals/report.component.html58 src/app/shared/shared-moderation/report-modals/video-report.component.html96 src/app/shared/shared-moderation/video-block.component.html42 - - The contact form is not enabled on this instance.The contact form is not enabled on this instance. + + + The contact form is not enabled on this instance. + A kapcsolatfelvételi űrlap nem érhető el ezen a példányon. src/app/+about/about-instance/contact-admin-modal.component.html 56 @@ -386,8 +410,10 @@ Blocking this live will automatically terminate the live stream. Ezen élő közvetítés blokkolása automatikusan megszakítja a közvetítést. src/app/shared/shared-moderation/video-block.component.html33 - - Element not foundElement not found + + + Element not found + Elem nem található src/app/shared/shared-search/find-in-bulk.service.ts 80 @@ -401,26 +427,31 @@ Unlisted Nem listázott - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html9src/app/shared/shared-video-miniature/video-miniature.component.html6 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html9 + src/app/shared/shared-video-miniature/video-miniature.component.html6 + Private Személyes - - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10src/app/shared/shared-video-miniature/video-miniature.component.html7src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10 + src/app/shared/shared-video-miniature/video-miniature.component.html7 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + {VAR_PLURAL, plural, =1 {1 view} other { views}} {VAR_PLURAL, plural, =1 {1 megtekintés} other { megtekintés} } src/app/shared/shared-video/video-views-counter.component.html3 - + - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16src/app/shared/shared-video/video-views-counter.component.html3src/app/shared/shared-video/video-views-counter.component.html7 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/shared/shared-video/video-views-counter.component.html3 + src/app/shared/shared-video/video-views-counter.component.html7 + {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} {VAR_PLURAL, plural, =1 {1 néző} other { néző}} @@ -439,36 +470,37 @@ Cannot fetch information of this remote account - Cannot fetch information of this remote account - - src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + Nem sikerült a távoli fiók adatainak betöltése + src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + Blocked Letiltva - - src/app/shared/shared-video-miniature/video-miniature.component.html57 + src/app/shared/shared-video-miniature/video-miniature.component.html57 + Sensitive Érzékeny - - src/app/shared/shared-video-miniature/video-miniature.component.html62 + src/app/shared/shared-video-miniature/video-miniature.component.html62 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {Nincs videó} =1 {1 videó} other { videó} } - - src/app/+my-library/+my-video-channels/my-video-channels.component.html32src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + src/app/+my-library/+my-video-channels/my-video-channels.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + Updated frissítve - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + Unavailable Nem érhető el @@ -477,10 +509,10 @@ Deleted Törölve - - - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html47src/app/shared/shared-abuse-list/abuse-list-table.component.html91src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html47 + src/app/shared/shared-abuse-list/abuse-list-table.component.html91 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + Edit starts/stops at A szerkesztés itt kezdődik vagy végződik @@ -489,13 +521,11 @@ Save Mentés - - - - - - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38src/app/shared/shared-user-settings/user-interface-settings.component.html16src/app/shared/shared-user-settings/user-video-settings.component.html72src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38 + src/app/shared/shared-user-settings/user-interface-settings.component.html16 + src/app/shared/shared-user-settings/user-video-settings.component.html72 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + Delete from Törlés innen: @@ -513,21 +543,42 @@ src/app/shared/shared-video-miniature/abstract-video-list.html44 src/app/shared/shared-video-miniature/abstract-video-list.html44 - Videos with the most interactions for recent videos, minus user history - Videos with the most interactions for recent videos, minus user history - - src/app/+videos/video-list/videos-list-common-page.component.ts203 + A legtöbb interakcióval rendelkező friss videók, kivéve a megnézettek + src/app/+videos/video-list/videos-list-common-page.component.ts203 + Delete Törlés - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts88src/app/+admin/moderation/video-block-list/video-block-list.component.ts92src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164src/app/+admin/users/user-list/user-list.component.ts81src/app/+admin/users/user-list/user-list.component.ts195src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.html50src/app/+my-library/my-videos/my-videos.component.ts117src/app/+my-library/my-videos/my-videos.component.ts144src/app/+my-library/my-videos/my-videos.component.ts185src/app/+videos/+video-edit/shared/video-edit.component.html178src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts145src/app/shared/shared-abuse-list/abuse-list-table.component.ts388src/app/shared/shared-abuse-list/abuse-list-table.component.ts423src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts88 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts92 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164 + src/app/+admin/users/user-list/user-list.component.ts81 + src/app/+admin/users/user-list/user-list.component.ts195 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.html50 + src/app/+my-library/my-videos/my-videos.component.ts117 + src/app/+my-library/my-videos/my-videos.component.ts144 + src/app/+my-library/my-videos/my-videos.component.ts185 + src/app/+videos/+video-edit/shared/video-edit.component.html178 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts388 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts423 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + Only live videos - Only live videos + Csak élő közvetítések src/app/+my-library/my-videos/my-videos.component.ts 53 @@ -536,17 +587,17 @@ Edit Szerkesztés - - - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html11src/app/+admin/users/user-edit/user-edit.component.html11src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85src/app/+videos/+video-edit/shared/video-edit.component.html270src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + src/app/+admin/users/user-edit/user-edit.component.html11 + src/app/+admin/users/user-edit/user-edit.component.html11 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85 + src/app/+videos/+video-edit/shared/video-edit.component.html270 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + Truncated preview Megvágott előnézet @@ -555,13 +606,18 @@ Hide Hide - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-forms/input-toggle-hidden.component.ts38src/app/shared/shared-user-settings/user-video-settings.component.html16src/app/shared/shared-video-miniature/video-filters-header.component.html76 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-forms/input-toggle-hidden.component.ts38 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/shared/shared-video-miniature/video-filters-header.component.html76 + Show Show - - src/app/+admin/users/user-edit/user-password.component.html10src/app/shared/shared-forms/input-toggle-hidden.component.ts39 + src/app/+admin/users/user-edit/user-password.component.html10 + src/app/shared/shared-forms/input-toggle-hidden.component.ts39 + Complete preview Teljes előnézet @@ -584,7 +640,7 @@ Subscribe with a remote account: - Subscribe with a remote account: + Feliratkozás egy távoli fiókkal: src/app/shared/shared-user-subscription/subscribe-button.component.html 62 @@ -600,7 +656,6 @@ Feliratkozás a helyi fiókjával src/app/shared/shared-user-subscription/subscribe-button.component.html58 - The live stream will be automatically terminated. Az élő közvetítés automatikusan véget fog érni. @@ -628,7 +683,7 @@ You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). - You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + A csatornára bármilyen ActivityPub kompatibilis fediverzum példányról feliratkozhat (például PeerTube, Mastodon vagy Pleroma). src/app/shared/shared-user-subscription/remote-subscribe.component.html 18,19 @@ -636,7 +691,7 @@ You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). - You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + Bármelyik ActivityPub kompatibilis fediverzum példányról végezhet műveleteket (például PeerTube, Mastodon vagy Pleroma). src/app/shared/shared-user-subscription/remote-subscribe.component.html 26,27 @@ -670,7 +725,7 @@ Live streaming enabled - Elő közvetítés engedélyezve + Élő közvetítés engedélyezve src/app/shared/shared-instance/instance-features-table.component.html71 @@ -701,10 +756,11 @@ Video quota Videokvóta - - - - src/app/+admin/users/user-edit/user-edit.component.html151src/app/+admin/users/user-edit/user-edit.component.html151src/app/+admin/users/user-list/user-list.component.ts113src/app/shared/shared-instance/instance-features-table.component.html47 + src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/+admin/users/user-list/user-list.component.ts113 + src/app/shared/shared-instance/instance-features-table.component.html47 + Unlimited ( per day) Korlátlan (napi ) @@ -750,8 +806,9 @@ Local Helyi - - src/app/shared/shared-instance/instance-statistics.component.html4src/app/shared/shared-video-miniature/video-filters.model.ts125 + src/app/shared/shared-instance/instance-statistics.component.html4 + src/app/shared/shared-video-miniature/video-filters.model.ts125 + users felhasználó @@ -782,9 +839,12 @@ Federation Föderáció - - src/app/+admin/admin.component.ts26src/app/shared/shared-instance/instance-statistics.component.html58 - FollowingFollowing + src/app/+admin/admin.component.ts26 + src/app/shared/shared-instance/instance-statistics.component.html58 + + + Following + Követés src/app/+admin/admin.component.ts 29 @@ -797,8 +857,10 @@ src/app/+admin/follows/follows.routes.ts 28 - - FollowersFollowers + + + Followers + Követők src/app/+admin/admin.component.ts 34 @@ -820,37 +882,43 @@ The upload failed - The upload failed - - src/app/helpers/utils/upload.ts12 + A feltöltés nem sikerült + src/app/helpers/utils/upload.ts12 + The connection was interrupted - The connection was interrupted - - src/app/helpers/utils/upload.ts16 - The server encountered an errorThe server encountered an error - - src/app/helpers/utils/upload.ts19 + A kapcsolat megszakadt + src/app/helpers/utils/upload.ts16 + + + The server encountered an error + A kiszolgáló hibára futott + src/app/helpers/utils/upload.ts19 + Your file couldn't be transferred before the set timeout (usually 10min) - Your file couldn't be transferred before the set timeout (usually 10min) - - src/app/helpers/utils/upload.ts22 + A fájl áttöltése nem sikerült a beállított határidőn belül (általában 10 perc) + src/app/helpers/utils/upload.ts22 + Your file was too large (max. size: ) - Your file was too large (max. size: ) - - src/app/helpers/utils/upload.ts26 + A fájl túl nagy volt (max. méret: ) + src/app/helpers/utils/upload.ts26 + User Felhasználó - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Kitiltás - - src/app/+admin/users/user-list/user-list.component.ts87src/app/shared/shared-moderation/user-ban-modal.component.html3src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + src/app/+admin/users/user-list/user-list.component.ts87 + src/app/shared/shared-moderation/user-ban-modal.component.html3 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + A banned user will no longer be able to login. Egy kitiltott felhasználó többé nem fog tudni bejelentkezni. @@ -859,24 +927,26 @@ Cancel Mégse - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+admin/follows/following-list/follow-modal.component.html33src/app/+login/login.component.html121src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/video-add-components/video-upload.component.html81src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73src/app/+videos/+video-watch/video-watch.component.ts416src/app/modal/confirm.component.html20src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-video-miniature/video-download.component.html152 + src/app/+about/about-instance/contact-admin-modal.component.html48 + src/app/+admin/follows/following-list/follow-modal.component.html33 + src/app/+login/login.component.html121 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html22 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html69 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73 + src/app/+videos/+video-watch/video-watch.component.ts416 + src/app/modal/confirm.component.html20 + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26 + src/app/shared/shared-moderation/batch-domains-modal.component.html31 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/video-report.component.html92 + src/app/shared/shared-moderation/user-ban-modal.component.html26 + src/app/shared/shared-moderation/video-block.component.html38 + src/app/shared/shared-video-miniature/video-download.component.html152 + Ban this user Felhasználó kitiltása @@ -941,14 +1011,14 @@ This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. - This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. - - src/app/+login/login.component.html64 + Ez a példány lehetőséget biztosít regisztrációra. De kérjük, olvassa el a FeltételeketTerms egy új fiók létrehozása előtt. Kereshet egy, az igényeinek pontosan megfelelő példányt: https://joinpeertube.org/instances. + src/app/+login/login.component.html64 + Currently this instance doesn't allow for user registration, you may check the Terms for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: https://joinpeertube.org/instances. - Currently this instance doesn't allow for user registration, you may check the Terms for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: https://joinpeertube.org/instances. - - src/app/+login/login.component.html69 + Jelenleg ez a példány nem biztosít lehetőséget regisztrációra, de tovább információkért megnézheti a Feltételeket vagy kereshet egy másik példányt amelyen lehetséges a regisztráció és feltöltheti a videóit. Böngésszen az elérhető példányok közt: https://joinpeertube.org/instances. + src/app/+login/login.component.html69 + User Felhasználó @@ -959,8 +1029,10 @@ Username or email address Felhasználónév vagy e-mail-cím src/app/+login/login.component.html23 - - ⚠️ Most email addresses do not include capital letters. ⚠️ Most email addresses do not include capital letters. + + + ⚠️ Most email addresses do not include capital letters. + ⚠️ A legtöbb e-mailcímben nincsenek nagybetűk. src/app/+login/login.component.html 33,34 @@ -969,56 +1041,57 @@ Password Jelszó - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html117src/app/+admin/users/user-edit/user-edit.component.html117src/app/+login/login.component.html38src/app/+login/login.component.html40src/app/+reset-password/reset-password.component.html8src/app/+reset-password/reset-password.component.html10src/app/+signup/+register/register-step-user.component.html56src/app/+signup/+register/register-step-user.component.html58 + src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+login/login.component.html38 + src/app/+login/login.component.html40 + src/app/+reset-password/reset-password.component.html8 + src/app/+reset-password/reset-password.component.html10 + src/app/+signup/+register/register-step-user.component.html56 + src/app/+signup/+register/register-step-user.component.html58 + Click here to reset your password Kattintson ide a jelszava visszaállításához - - src/app/+login/login.component.html51 + src/app/+login/login.component.html51 + I forgot my password - I forgot my password - - src/app/+login/login.component.html51 + Elfelejtettem a jelszavam + src/app/+login/login.component.html51 + Logging into an account lets you publish content - Logging into an account lets you publish content - - src/app/+login/login.component.html60 + Egy fiókba való belépéssel tartalmakat tehet közzé + src/app/+login/login.component.html60 + Login Bejelentkezés - - - src/app/+login/login-routing.module.ts12src/app/+login/login.component.html48src/app/menu/menu.component.html99 + src/app/+login/login-routing.module.ts12 + src/app/+login/login.component.html48 + src/app/menu/menu.component.html99 + Or sign in with Vagy jelentkezzen be ezzel: - - src/app/+login/login.component.html76 + src/app/+login/login.component.html76 + Forgot your password Elfelejtett jelszó - - src/app/+login/login.component.html95 + src/app/+login/login.component.html95 + We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. Sajnáljuk, de nem tudja helyreállítani a jelszavát, mert a példány rendszergazdája nem állította be a PeerTube levelezőrendszerét. - - src/app/+login/login.component.html103 + src/app/+login/login.component.html103 + Enter your email address and we will send you a link to reset your password. - Enter your email address and we will send you a link to reset your password. - - src/app/+login/login.component.html107 + Adja meg az e-mail címét és küldünk egy hivatkozást a jelszó visszaállítására. + src/app/+login/login.component.html107 + An email with the reset password instructions will be sent to . The link will expire within 1 hour. @@ -1028,26 +1101,27 @@ The link will expire within 1 hour. Email E-mail - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html105src/app/+admin/users/user-edit/user-edit.component.html105src/app/+admin/users/user-list/user-list.component.ts112src/app/+login/login.component.html111src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4src/app/+signup/+register/register-step-user.component.html45src/app/+signup/+register/register-step-user.component.html47src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+admin/users/user-list/user-list.component.ts112 + src/app/+login/login.component.html111 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4 + src/app/+signup/+register/register-step-user.component.html45 + src/app/+signup/+register/register-step-user.component.html47 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html8 + Email address E-mail-cím - - - src/app/+login/login.component.html113src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + src/app/+login/login.component.html113 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + Reset - Reset + Visszaállítás Password reset button - - src/app/+login/login.component.html126 + src/app/+login/login.component.html126 + on this instance ezen a példányon @@ -1060,7 +1134,7 @@ The link will expire within 1 hour. for - for + erre: src/app/+search/search.component.html 10 @@ -1088,7 +1162,7 @@ The link will expire within 1 hour. Back - Back + Vissza src/app/+signup/+register/register.component.ts 41 @@ -1097,7 +1171,7 @@ The link will expire within 1 hour. Next - Next + Következő src/app/+signup/+register/register.component.ts 42 @@ -1106,10 +1180,10 @@ The link will expire within 1 hour. Signup - Signup - + Regisztráció Button on the registration form to finalize the account and channel creation - src/app/+signup/+register/register.component.ts67 + src/app/+signup/+register/register.component.ts67 + Filters Szűrők @@ -1120,93 +1194,98 @@ The link will expire within 1 hour. Nincs találat - - src/app/+search/search.component.html33 + src/app/+search/search.component.html33 + subscribers feliratkozó - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html25src/app/+search/search.component.html55src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 + src/app/+search/search.component.html55 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + Welcome to PeerTube, dear administrator! Üdvözöli a PeerTube, kedves rendszergazda! - - src/app/modal/admin-welcome-modal.component.html3 + src/app/modal/admin-welcome-modal.component.html3 + CLI documentation CLI dokumentáció - - src/app/modal/admin-welcome-modal.component.html12 + src/app/modal/admin-welcome-modal.component.html12 + Upload or import videos, parse logs, prune storage directories, reset user password... Videók feltöltése vagy importálása, naplók feldolgozása, tárolókönyvtárak kitörlése, felhasználó jelszavának visszaállítása… - - src/app/modal/admin-welcome-modal.component.html15 + src/app/modal/admin-welcome-modal.component.html15 + Administer documentation Rendszergazda dokumentáció - - src/app/modal/admin-welcome-modal.component.html19 + src/app/modal/admin-welcome-modal.component.html19 + Managing users, following other instances, dealing with spammers... Felhasználók kezelése, más példányok követése, kéretlen üzenetek küldőinek kezelése… - - src/app/modal/admin-welcome-modal.component.html22 + src/app/modal/admin-welcome-modal.component.html22 + Use documentation Dokumentáció használata - - src/app/modal/admin-welcome-modal.component.html26 + src/app/modal/admin-welcome-modal.component.html26 + Setup your account, managing video playlists, discover third-party applications... Fiók beállítása, videolejátszási listák kezelése, harmadik féltől származó alkalmazások felfedezése… - - src/app/modal/admin-welcome-modal.component.html29 + src/app/modal/admin-welcome-modal.component.html29 + Useful links Hasznos hivatkozások - - src/app/modal/admin-welcome-modal.component.html39 + src/app/modal/admin-welcome-modal.component.html39 + Official PeerTube website (news, support, contribute...): https://joinpeertube.org Hivatalos PeerTube weboldal (hírek, támogatás, közreműködés…): https://joinpeertube.org - - src/app/modal/admin-welcome-modal.component.html42 + src/app/modal/admin-welcome-modal.component.html42 + Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances Saját példány elhelyezése a nyilvános PeerTube jegyzékbe: https://instances.joinpeertube.org/instances - - src/app/modal/admin-welcome-modal.component.html45 + src/app/modal/admin-welcome-modal.component.html45 + It's time to configure your instance! Itt az ideje beállítani a példányát! - - src/app/modal/admin-welcome-modal.component.html55 + src/app/modal/admin-welcome-modal.component.html55 + Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are. A példány nevének kiválasztása, a leírás megadása , annak meghatározása, hogy Ön kicsoda , miért hozta létre a példányát és meddig tervezi fenntartani , nagyon fontosak a látogatóknak, hogy megértsék, milyen típusú példányon is vannak. - - src/app/modal/admin-welcome-modal.component.html58 + src/app/modal/admin-welcome-modal.component.html58 + If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. Ha meg akarja nyitni a regisztrációt, akkor dönteni kell a moderációs szabályokról és a példány szolgáltatási feltételeiről, valamint meg kell adni a kategóriákat, és a moderátorok által beszélt nyelveket. Így segíthet a felhasználóknak abban, hogy a megfelelő PeerTube példányra regisztráljanak. - - src/app/modal/admin-welcome-modal.component.html64 + src/app/modal/admin-welcome-modal.component.html64 + Remind me later Emlékeztessen később - - src/app/modal/account-setup-warning-modal.component.html28src/app/modal/admin-welcome-modal.component.html74 - Set up Set up - - src/app/modal/account-setup-warning-modal.component.html35 + src/app/modal/account-setup-warning-modal.component.html28 + src/app/modal/admin-welcome-modal.component.html74 + + + Set up + Beállítás + src/app/modal/account-setup-warning-modal.component.html35 + Configure my instance Példányom beállítása - - src/app/modal/admin-welcome-modal.component.html81 + src/app/modal/admin-welcome-modal.component.html81 + Configuration warning! Beállítási figyelmeztetés! @@ -1239,7 +1318,7 @@ The link will expire within 1 hour. How you plan to pay for keeping your instance running - How you plan to pay for keeping your instance running + Hogy kíván fizetni, hogy a példánya tovább működhessen src/app/modal/instance-config-warning-modal.component.html 18 @@ -1257,13 +1336,13 @@ The link will expire within 1 hour. My settings - My settings - - - src/app/menu/menu.component.html119src/app/modal/quick-settings-modal.component.html3 + Saját beállítások + src/app/menu/menu.component.html119 + src/app/modal/quick-settings-modal.component.html3 + These settings apply only to your session on this instance. - These settings apply only to your session on this instance. + Ezek a beállítások csak erre a munkafolyamatra vonatkoznak, ezen a példányon. src/app/modal/quick-settings-modal.component.html 8 @@ -1308,176 +1387,190 @@ The link will expire within 1 hour. Public profile Nyilvános profil - - src/app/menu/menu.component.html28 + src/app/menu/menu.component.html28 + Interface: Felület: - - src/app/menu/menu.component.html35 + src/app/menu/menu.component.html35 + Videos: Videók: - - src/app/menu/menu.component.html42 + src/app/menu/menu.component.html42 + Sensitive: Érzékeny: - - src/app/menu/menu.component.html52 + src/app/menu/menu.component.html52 + Help share videos Segítség videók megosztásában - - src/app/menu/menu.component.html58 + src/app/menu/menu.component.html58 + Keyboard shortcuts Gyorsbillentyűk - - - src/app/menu/menu.component.html67src/app/menu/menu.component.html141 + src/app/menu/menu.component.html67 + src/app/menu/menu.component.html141 + powered by PeerTube - CopyLeft 2015-2021 - powered by PeerTube - CopyLeft 2015-2021 - - src/app/menu/menu.component.html146 + PeerTube motorral - CopyLeft 2015-2021 + src/app/menu/menu.component.html146 + Help Súgó - - src/app/menu/menu.component.html137 + src/app/menu/menu.component.html137 + Get help using PeerTube Segítségkérés a PeerTube használatához - - src/app/menu/menu.component.html137 + src/app/menu/menu.component.html137 + powered by PeerTube a gépházban: PeerTube - - src/app/menu/menu.component.html147 + src/app/menu/menu.component.html147 + Log out Kijelentkezés - - src/app/menu/menu.component.html72 + src/app/menu/menu.component.html72 + My account - My account - - src/app/menu/menu.component.html83 + Saját fiók + src/app/menu/menu.component.html83 + My library - My library - - src/app/menu/menu.component.html88 + Saját könyvtár + src/app/menu/menu.component.html88 + Create an account Fiók létrehozása - - - src/app/+login/login.component.html54src/app/menu/menu.component.html100 - + src/app/+login/login.component.html54 + src/app/menu/menu.component.html100 + My videos Saját videók - - - src/app/+my-library/my-library-routing.module.ts76src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts71src/app/core/menu/menu.service.ts77 + src/app/+my-library/my-library-routing.module.ts76 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts71 + src/app/core/menu/menu.service.ts77 + My video imports - My video imports - - src/app/+my-library/my-library-routing.module.ts89 + Saját importált videók + src/app/+my-library/my-library-routing.module.ts89 + My playlists Saját lejátszólisták - - src/app/+my-library/my-library-routing.module.ts39src/app/+my-library/my-video-playlists/my-video-playlists.component.html3src/app/core/menu/menu.service.ts86 + src/app/+my-library/my-library-routing.module.ts39 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 + src/app/core/menu/menu.service.ts86 + Create a new playlist - Create a new playlist - - src/app/+my-library/my-library-routing.module.ts48 + Új lejátszólista létrehozása + src/app/+my-library/my-library-routing.module.ts48 + My subscriptions Feliratkozások - - src/app/+my-library/my-library-routing.module.ts98src/app/+my-library/my-subscriptions/my-subscriptions.component.html4src/app/core/menu/menu.service.ts92 + src/app/+my-library/my-library-routing.module.ts98 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html4 + src/app/core/menu/menu.service.ts92 + Videos Videók - - src/app/+accounts/account-videos/account-videos.component.ts17src/app/+my-library/my-library.component.ts52src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17src/app/core/menu/menu.service.ts76 + src/app/+accounts/account-videos/account-videos.component.ts17 + src/app/+my-library/my-library.component.ts52 + src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17 + src/app/core/menu/menu.service.ts76 + Interface: - Interface: - - src/app/menu/menu.component.html132 + Felület: + src/app/menu/menu.component.html132 + Playlists Lejátszási listák - - src/app/+my-library/my-library.component.ts59src/app/core/menu/menu.service.ts85 + src/app/+my-library/my-library.component.ts59 + src/app/core/menu/menu.service.ts85 + Subscriptions Feliratkozások - - src/app/+my-library/my-library.component.ts64src/app/+videos/video-list/video-user-subscriptions.component.ts25src/app/+videos/videos-routing.module.ts58src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts64 + src/app/+videos/video-list/video-user-subscriptions.component.ts25 + src/app/+videos/videos-routing.module.ts58 + src/app/core/menu/menu.service.ts91 + History Előzmények - - src/app/+my-library/my-library.component.ts69src/app/core/menu/menu.service.ts97 + src/app/+my-library/my-library.component.ts69 + src/app/core/menu/menu.service.ts97 + VIDEOS VIDEÓK - - src/app/+accounts/accounts.component.ts82src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215src/app/+video-channels/video-channels.component.ts76 + src/app/+accounts/accounts.component.ts82 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215 + src/app/+video-channels/video-channels.component.ts76 + Import jobs concurrency - Import jobs concurrency - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 + Importálási folyamat konkurencia + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 + allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. - allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + lehetővé teszi egyszerre több videó importálását. ⚠️ A PeerTube újraindítása szükséges. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + jobs in parallel - jobs in parallel - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + párhuzamos folyamatok + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + Allow import with HTTP URL (e.g. YouTube) - Allow import with HTTP URL (e.g. YouTube) - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + Importálás engedélyezése HTTP URL-ről (pl. YouTube) + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + Discover Felfedezés - - - src/app/+videos/video-list/overview/video-overview.component.html1src/app/core/menu/menu.service.ts125 - - + src/app/+videos/video-list/overview/video-overview.component.html1 + src/app/core/menu/menu.service.ts125 + Administration Adminisztráció - - src/app/menu/menu.component.html93 + src/app/menu/menu.component.html93 + About Névjegy - - src/app/menu/menu.component.html124 + src/app/menu/menu.component.html124 + Contact Partner - - src/app/+about/about-routing.module.ts36src/app/menu/menu.component.html136 + src/app/+about/about-routing.module.ts36 + src/app/menu/menu.component.html136 + View your notifications Értesítések megtekintése @@ -1488,9 +1581,11 @@ The link will expire within 1 hour. Notifications Értesítések - - - src/app/+my-account/my-account-notifications/my-account-notifications.component.html1src/app/+my-account/my-account-routing.module.ts108src/app/+my-account/my-account.component.ts55src/app/menu/notification.component.html22 + src/app/+my-account/my-account-notifications/my-account-notifications.component.html1 + src/app/+my-account/my-account-routing.module.ts108 + src/app/+my-account/my-account.component.ts55 + src/app/menu/notification.component.html22 + Mark all as read Összes megjelölése olvasottként @@ -1507,23 +1602,35 @@ The link will expire within 1 hour. See all your notifications Összes értesítés megtekintése src/app/menu/notification.component.html49 - - Welcome to , dear user!Welcome to , dear user! - - src/app/modal/account-setup-warning-modal.component.html3 - It's time to set up your account profile!It's time to set up your account profile! - - src/app/modal/account-setup-warning-modal.component.html10 - Help moderators and other users to know who you are by:Help moderators and other users to know who you are by: - - src/app/modal/account-setup-warning-modal.component.html12 - Uploading an avatarUploading an avatar - - src/app/modal/account-setup-warning-modal.component.html15 - Writing a descriptionWriting a description - - src/app/modal/account-setup-warning-modal.component.html16 - Don't show me this anymoreDon't show me this anymore + + + Welcome to , dear user! + Üdvözli a , kedves felhasználónk! + src/app/modal/account-setup-warning-modal.component.html3 + + + It's time to set up your account profile! + Érdemes most beállítania a fiókját! + src/app/modal/account-setup-warning-modal.component.html10 + + + Help moderators and other users to know who you are by: + Segítsen a moderátoroknak és a felhasználóknak megismerni önt ezáltal: + src/app/modal/account-setup-warning-modal.component.html12 + + + Uploading an avatar + Egy profilkép feltöltésével + src/app/modal/account-setup-warning-modal.component.html15 + + + Writing a description + Egy leírás megadásával + src/app/modal/account-setup-warning-modal.component.html16 + + + Don't show me this anymore + Ne jelenjen meg többet src/app/modal/account-setup-warning-modal.component.html 23 @@ -1531,12 +1638,12 @@ The link will expire within 1 hour. I'm a teapot - I'm a teapot - - src/app/+page-not-found/page-not-found.component.ts27 + Teáskanna vagyok + src/app/+page-not-found/page-not-found.component.ts27 + That's an error. - That's an error. + Az egy hiba. src/app/+page-not-found/page-not-found.component.html 4 @@ -1544,7 +1651,7 @@ The link will expire within 1 hour. We couldn't find any video tied to the URL you were looking for. - We couldn't find any video tied to the URL you were looking for. + Nem található videó ehhez az URL-hez , amelyet felkeresett volna. src/app/+page-not-found/page-not-found.component.html 7 @@ -1552,7 +1659,7 @@ The link will expire within 1 hour. We couldn't find any resource tied to the URL you were looking for. - We couldn't find any resource tied to the URL you were looking for. + Nem található erőforrás ehhez az URL-hez , amelyet felkeresett volna. src/app/+page-not-found/page-not-found.component.html 8 @@ -1560,18 +1667,18 @@ The link will expire within 1 hour. Possible reasons: - Possible reasons: + Lehetséges okok: Possible reasons preceding a list of reasons a `Not Found` error page may occur src/app/+page-not-found/page-not-found.component.html12 You may have used an outdated or broken link - You may have used an outdated or broken link + Egy elavult vagy hibás hivatkozásra kattintott src/app/+page-not-found/page-not-found.component.html15 The video may have been moved or deleted - The video may have been moved or deleted + A videót áthelyezték vagy törölték src/app/+page-not-found/page-not-found.component.html 17 @@ -1579,7 +1686,7 @@ The link will expire within 1 hour. The resource may have been moved or deleted - The resource may have been moved or deleted + Az erőforrást áthelyezték vagy törölték src/app/+page-not-found/page-not-found.component.html 18 @@ -1587,17 +1694,17 @@ The link will expire within 1 hour. You may have typed the address or URL incorrectly - You may have typed the address or URL incorrectly + Hibásan írta be a címet vagy URL-t src/app/+page-not-found/page-not-found.component.html20 You are not authorized here. - You are not authorized here. + Nincs itt jogosultsága. src/app/+page-not-found/page-not-found.component.html27 You might need to check your account is allowed by the video or instance owner. - You might need to check your account is allowed by the video or instance owner. + Esetleg ellenőrizze, hogy a videó vagy a példány tulajdonosa biztosít-e elérést a fiókjának. src/app/+page-not-found/page-not-found.component.html 30 @@ -1605,7 +1712,7 @@ The link will expire within 1 hour. You might need to check your account is allowed by the resource or instance owner. - You might need to check your account is allowed by the resource or instance owner. + Esetleg ellenőrizze, hogy az erőforrás vagy a példány tulajdonosa biztosít-e elérést a fiókjának. src/app/+page-not-found/page-not-found.component.html 31 @@ -1619,16 +1726,15 @@ The link will expire within 1 hour. Sepia seems to like it. - Sepia seems to like it. + Úgy tűnik Sepia szereti. This is about Sepia's tea src/app/+page-not-found/page-not-found.component.html42 Media is too large for the server. Please contact you administrator if you want to increase the limit size. A média túl nagy ehhez a kiszolgálóhoz. Lépjen kapcsolatba a rendszergazdával, ha növelni szeretné a méretkorlátot. - - src/app/core/rest/rest-extractor.service.ts65 - + src/app/core/rest/rest-extractor.service.ts65 + GLOBAL SEARCH GLOBÁLIS KERESÉS @@ -1646,7 +1752,7 @@ The link will expire within 1 hour. Your query will be matched against video names or descriptions, channel names. - Your query will be matched against video names or descriptions, channel names. + A keresés videók nevére, leírásra és csatornák nevére működik. src/app/header/search-typeahead.component.html 37 @@ -1706,122 +1812,143 @@ The link will expire within 1 hour. Reset Visszaállítás - - - - - - src/app/+search/search-filters.component.html9src/app/+search/search-filters.component.html23src/app/+search/search-filters.component.html42src/app/+search/search-filters.component.html61src/app/+search/search-filters.component.html75src/app/+search/search-filters.component.html110src/app/+search/search-filters.component.html123src/app/+search/search-filters.component.html136src/app/+search/search-filters.component.html149src/app/+search/search-filters.component.html164src/app/+search/search-filters.component.html172src/app/+search/search-filters.component.html205 - Display onlyDisplay only + src/app/+search/search-filters.component.html9 + src/app/+search/search-filters.component.html23 + src/app/+search/search-filters.component.html42 + src/app/+search/search-filters.component.html61 + src/app/+search/search-filters.component.html75 + src/app/+search/search-filters.component.html110 + src/app/+search/search-filters.component.html123 + src/app/+search/search-filters.component.html136 + src/app/+search/search-filters.component.html149 + src/app/+search/search-filters.component.html164 + src/app/+search/search-filters.component.html172 + src/app/+search/search-filters.component.html205 + + + Display only + Csak ezek megjelenítése src/app/+search/search-filters.component.html 21 - - Live videosLive videos - - src/app/+search/search-filters.component.html29src/app/+search/search-filters.component.ts64src/app/shared/shared-video-miniature/video-filters-header.component.html104src/app/shared/shared-video-miniature/video-filters.model.ts158 - VOD videosVOD videos - - src/app/+search/search-filters.component.html34src/app/+search/search-filters.component.ts60src/app/shared/shared-video-miniature/video-filters-header.component.html109src/app/shared/shared-video-miniature/video-filters.model.ts164 + + + Live videos + Live videos + src/app/+search/search-filters.component.html29 + src/app/+search/search-filters.component.ts64 + src/app/shared/shared-video-miniature/video-filters-header.component.html104 + src/app/shared/shared-video-miniature/video-filters.model.ts158 + + + VOD videos + VOD videos + src/app/+search/search-filters.component.html34 + src/app/+search/search-filters.component.ts60 + src/app/shared/shared-video-miniature/video-filters-header.component.html109 + src/app/shared/shared-video-miniature/video-filters.model.ts164 + Published date Közzététel dátuma - - src/app/+search/search-filters.component.html59 + src/app/+search/search-filters.component.html59 + Original publication year Eredeti közzétételi év - - src/app/+search/search-filters.component.html73 + src/app/+search/search-filters.component.html73 + After... Után… - - src/app/+search/search-filters.component.html85 + src/app/+search/search-filters.component.html85 + Before... Előtt… - - src/app/+search/search-filters.component.html95 + src/app/+search/search-filters.component.html95 + Duration Időtartam - - - src/app/+search/search-filters.component.html108src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html60 + src/app/+search/search-filters.component.html108 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html60 + Display sensitive content Érzékeny tartalom megjelenítése - - src/app/+search/search-filters.component.html40 + src/app/+search/search-filters.component.html40 + Yes Igen - - src/app/+search/search-filters.component.html48 + src/app/+search/search-filters.component.html48 + No Nem - - src/app/+search/search-filters.component.html53 + src/app/+search/search-filters.component.html53 + Category Kategória - - - - src/app/+search/search-filters.component.html121src/app/+videos/+video-edit/shared/video-edit.component.html63src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html25 + src/app/+search/search-filters.component.html121 + src/app/+videos/+video-edit/shared/video-edit.component.html63 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html25 + Reset Visszaállítás - - - - - - src/app/+search/search-filters.component.html123src/app/+search/search-filters.component.html136src/app/+search/search-filters.component.html149src/app/+search/search-filters.component.html164src/app/+search/search-filters.component.html172 + src/app/+search/search-filters.component.html123 + src/app/+search/search-filters.component.html136 + src/app/+search/search-filters.component.html149 + src/app/+search/search-filters.component.html164 + src/app/+search/search-filters.component.html172 + Display all categories Összes kategória megjelenítése - - src/app/+search/search-filters.component.html127 + src/app/+search/search-filters.component.html127 + Licence Licenc - - - - src/app/+search/search-filters.component.html134src/app/+videos/+video-edit/shared/video-edit.component.html74src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html34 + src/app/+search/search-filters.component.html134 + src/app/+videos/+video-edit/shared/video-edit.component.html74 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html34 + Display all licenses Összes licenc megjelenítése - - src/app/+search/search-filters.component.html140 + src/app/+search/search-filters.component.html140 + Language Nyelv - - - - - src/app/+search/search-filters.component.html147src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10src/app/+videos/+video-edit/shared/video-edit.component.html94src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html43 + src/app/+search/search-filters.component.html147 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10 + src/app/+videos/+video-edit/shared/video-edit.component.html94 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html43 + Display all languages Összes nyelv megjelenítése - - src/app/+search/search-filters.component.html153 + src/app/+search/search-filters.component.html153 + All of these tags Ezen címkék mindegyike - - src/app/+search/search-filters.component.html162 + src/app/+search/search-filters.component.html162 + One of these tags Ezen címkék egyike - - src/app/+search/search-filters.component.html170 - PeerTube instance hostPeerTube instance host + src/app/+search/search-filters.component.html170 + + + PeerTube instance host + PeerTube példány kiszolgáló src/app/+search/search-filters.component.html 178 @@ -1830,23 +1957,23 @@ The link will expire within 1 hour. Search target Keresési cél - - src/app/+search/search-filters.component.html187 + src/app/+search/search-filters.component.html187 + Vidiverse Vidiverzum - - src/app/+search/search-filters.component.html197 + src/app/+search/search-filters.component.html197 + Reset Visszaállítás - - src/app/+search/search-filters.component.html197 + src/app/+search/search-filters.component.html197 + Filter Szűrő - - src/app/+search/search-filters.component.html208 + src/app/+search/search-filters.component.html208 + Video channels Videócsatornák @@ -1880,9 +2007,9 @@ The link will expire within 1 hour. Tags Címkék - - - src/app/+videos/+video-edit/shared/video-edit.component.html19src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + src/app/+videos/+video-edit/shared/video-edit.component.html19 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag. A címkék releváns ajánlások javaslatához használhatók. Legfeljebb 5 címke lehet. Kattintson az Enterre egy új címke hozzáadásához. @@ -1895,76 +2022,89 @@ The link will expire within 1 hour. extensions - extensions - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + kiterjesztések + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. - This image is too large. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Ez a kép túl nagy. + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner - Upload a new banner + Új borítókép feltöltése src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html9 src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html26 Change your banner - Change your banner + Borítókép megváltoztatása src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html18 Remove banner - Remove banner + Borítókép törlése src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html32 - - ratio 6/1, recommended size: 1920x317, max size: , extensions: ratio 6/1, recommended size: 1920x317, max size: , extensions: - - src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts44 - + + + ratio 6/1, recommended size: 1920x317, max size: , extensions: + arány 6:1, javasolt méret: 1920x317, max. méret: , kiterjesztések: + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts44 + Account avatar - Account avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Fiók profilkép + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar - Channel avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 - Markdown compatible that also supports custom PeerTube HTML tagsMarkdown compatible that also supports custom PeerTube HTML tags + Csatorna profilkép + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + + + Markdown compatible that also supports custom PeerTube HTML tags + Markdown formázás támogatott továbbá egyedi PeerTube HTML címkék src/app/shared/shared-custom-markup/custom-markup-help.component.html 2 - - Latest published videoLatest published video + + + Latest published video + Legutóbb közzétett videó src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html 24 - - Error in channel miniature component: Error in channel miniature component: + + + Error in channel miniature component: + Hiba a csatorna miniatűr komponensénél: src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts 57 - - Error in playlist miniature component: Error in playlist miniature component: + + + Error in playlist miniature component: + Hiba a lejátszólista miniatűr komponensénél: src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts 47 - - Error in video miniature component: Error in video miniature component: + + + Error in video miniature component: + Hiba a videó miniatűr komponensénél: src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts 59 - - Error in videos list component: Error in videos list component: + + + Error in videos list component: + Hiba a videó lista komponensénél: src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts 77 @@ -1972,7 +2112,7 @@ The link will expire within 1 hour. Advanced filters - Advanced filters + Összetett szűrők src/app/shared/shared-forms/advanced-input-filter.component.html 8 @@ -1999,59 +2139,60 @@ The link will expire within 1 hour. Video descriptions are truncated by default and require manual action to expand them. A videók leírásai alapértelmezetten meg lesznek vágva, és kézi művelet szükséges a kinyitásukhoz. src/app/+videos/+video-edit/shared/video-edit.component.html43 - - Choose the appropriate licence for your work. Choose the appropriate licence for your work. + + + Choose the appropriate licence for your work. + Válasszon egy megfelelő licencet a munkájához. src/app/+videos/+video-edit/shared/video-edit.component.html 79,80 - Channel Csatorna - - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70src/app/+signup/+register/register.component.html34src/app/+videos/+video-edit/shared/video-edit.component.html58src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+signup/+register/register.component.html34 + src/app/+videos/+video-edit/shared/video-edit.component.html58 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + Privacy Adatvédelem - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+videos/+video-edit/shared/video-edit.component.html106src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29src/app/+videos/+video-edit/video-add-components/video-upload.component.html26src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2src/app/shared/shared-abuse-list/abuse-details.component.ts22 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+videos/+video-edit/shared/video-edit.component.html106 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html26 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2 + src/app/shared/shared-abuse-list/abuse-details.component.ts22 + FAQ GYIK - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + Frequently asked questions about PeerTube Gyakori kérdések a PeerTube szoftverrel kapcsolatban - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + API API - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + API documentation API dokumentáció - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + Schedule publication () Közzététel ütemezése ( ) @@ -2064,7 +2205,7 @@ The link will expire within 1 hour. Some instances hide videos containing mature or explicit content by default. - Some instances hide videos containing mature or explicit content by default. + Bizonyos példányok alapértelmezetten elrejtik a felnőtt vagy szókimondó tartalmakat. src/app/+videos/+video-edit/shared/video-edit.component.html 135 @@ -2132,12 +2273,12 @@ The link will expire within 1 hour. You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives - You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives + A permanens élő közvetítésben többször is közvetíthet. Így az URL nem változik a nézőknek, viszont nem menthet le visszajátszásokat src/app/+videos/+video-edit/shared/video-edit.component.html236 This is a permanent live - This is a permanent live + Ez egy permanens élő közvetítés src/app/+videos/+video-edit/shared/video-edit.component.html232 @@ -2153,8 +2294,10 @@ The link will expire within 1 hour. Captions Képaláírások - - src/app/+videos/+video-edit/shared/video-edit.component.html155src/app/shared/shared-abuse-list/abuse-details.component.ts26src/app/shared/shared-moderation/abuse.service.ts181 + src/app/+videos/+video-edit/shared/video-edit.component.html155 + src/app/shared/shared-abuse-list/abuse-details.component.ts26 + src/app/shared/shared-moderation/abuse.service.ts181 + Video preview Videó előnézete @@ -2168,12 +2311,12 @@ The link will expire within 1 hour. View account - View account + Fiók megjelenítése src/app/+video-channels/video-channels.component.html30 View account - View account + Fiók megjelenítése src/app/+video-channels/video-channels.component.html 42,43 @@ -2181,7 +2324,7 @@ The link will expire within 1 hour. View owner account - View owner account + Tulajdonos fiók megjelenítése src/app/+video-channels/video-channels.component.html 46,47 @@ -2189,7 +2332,7 @@ The link will expire within 1 hour. VIDEO CHANNEL - VIDEO CHANNEL + VIDEÓ CSATORNA src/app/+video-channels/video-channels.component.html 55 @@ -2197,7 +2340,7 @@ The link will expire within 1 hour. Copy channel handle - Copy channel handle + Csatorna nevének másolása src/app/+video-channels/video-channels.component.html 66 @@ -2206,11 +2349,14 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 videos} other { videos}} - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + - + src/app/+video-channels/video-channels.component.html 76,77 @@ -2218,7 +2364,7 @@ The link will expire within 1 hour. OWNER ACCOUNT - OWNER ACCOUNT + TULAJDONOS FIÓK src/app/+video-channels/video-channels.component.html23 @@ -2271,11 +2417,11 @@ The link will expire within 1 hour. Sorry, but something went wrong Sajnáljuk, de valami elromlott - - - - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.html26src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html51src/app/+videos/+video-edit/video-add-components/video-import-url.component.html44src/app/+videos/+video-edit/video-add-components/video-upload.component.html86 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html26 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html51 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html44 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html86 + Congratulations, the video behind will be imported! You can already add information about this video. Gratulálunk, a(z) mögött lévő videó importálva lesz! Már megadhatja a videóval kapcsolatos információkat. @@ -2284,12 +2430,17 @@ The link will expire within 1 hour. Update Frissítés - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61 + src/app/+videos/+video-edit/video-update.component.html3 + src/app/+videos/+video-edit/video-update.component.html18 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + Select the file to upload A feltöltendő fájl kiválasztása @@ -2299,39 +2450,39 @@ The link will expire within 1 hour. Scheduled Ütemezett - - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 + Hide the video until a specific date A videó elrejtése egy megadott dátumig - - src/app/+videos/+video-edit/shared/video-edit.component.ts193 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 + Video background image Videó háttérképe - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html34 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html34 + Image that will be merged with your audio file. The chosen image will be definitive and cannot be modified. Egy kép, amely egyesítve lesz a hangfájllal. A kiválasztott kép végleges lesz, és nem lehet módosítani. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html37 + Total video uploaded - Total video uploaded - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html63 + Összes feltöltött videó + src/app/+videos/+video-edit/video-add-components/video-upload.component.html63 + Processing… Feldolgozás… - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html65 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html65 + Retry - Retry + Újra Retry failed upload of a video - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html80 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html80 + Total video quota Teljes videokvóta @@ -2341,40 +2492,48 @@ The link will expire within 1 hour. Congratulations! Your video is now available in your private library. Gratulálunk! A videó most már elérhető a személyes könyvtárában. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html91 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html91 + Publish will be available when upload is finished A közzététel akkor lesz elérhető, ha a feltöltés befejeződött - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html104 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html104 + Publish Közzététel + src/app/+videos/+video-edit/video-add-components/video-upload.component.html106 + src/app/header/header.component.html5 + + + Upload on hold + Feltöltés várakozik - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 - Upload on holdUpload on hold - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sajnáljuk, a feltöltési funkció tiltott a fiókjában. Ha videókat akar hozzáadni, akkor egy rendszergazdának fel kell oldania a kvótája zárolását. - - src/app/+videos/+video-edit/video-add.component.ts102 - Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + src/app/+videos/+video-edit/video-add.component.ts102 + + + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + A feltöltött videóit ellenőrzik a megjelenés előtt. Ha szeretne ellenőrzés nélkül feltölteni, egy adminisztrátornak engedélyeznie kell kell ezt a fiókján. src/app/+videos/+video-edit/video-add.component.ts 104 - - Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + + + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + Elfogyott a napi kvótája. Ha további videókat szeretne feltölteni, várnia kell 24 órát vagy egy adminisztrátornak meg kell növelnie a napi kvótáját. src/app/+videos/+video-edit/video-add.component.ts 106 - - Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + + + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + Nem elegendő a videókvótája. Ha további videókat szeretne feltölteni, egy adminisztrátornak meg kell emelnie a kvótáját. src/app/+videos/+video-edit/video-add.component.ts 108 @@ -2383,8 +2542,8 @@ The link will expire within 1 hour. Read instance rules for help Súgóként olvassa el a példány szabályait - - src/app/+videos/+video-edit/video-add.component.html2 + src/app/+videos/+video-edit/video-add.component.html2 + Select the torrent to import Az importálandó torrent kiválasztása @@ -2405,25 +2564,27 @@ The link will expire within 1 hour. Congratulations, the video will be imported with BitTorrent! You can already add information about this video. Gratulálunk, a videó importálva lesz BitTorrent használatával! Már megadhatja a videóval kapcsolatos információkat. src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html56 - - Torrents with only 1 file are supported.Torrents with only 1 file are supported. - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + + + Torrents with only 1 file are supported. + Csak egy fájlt tartalmazó torrent fájlok támogatottak. + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + Cannot create live because this instance have too many created lives Több élő közvetítés nem hozható létre, mert a példányon már túl sok lett létrehozva - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + Cannot create live because you created too many lives Nem hozható létre élő közvetítés, mert már túl sokat hozott létre - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + Live published. Élő közvetítés közzétéve. - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + Go Live Élő közvetítés @@ -2437,53 +2598,53 @@ The link will expire within 1 hour. We recommend you to not use the root user to publish your videos, since it's the super-admin account of your instance. Instead, create a dedicated account to upload your videos. Azt ajánljuk, hogy ne használja a root felhasználót a videók közzétételéhez, mivel az a példány rendszergazda fiókja. Ehelyett inkább hozzon létre egy külön fiókot a videói feltöltéséhez. - - src/app/+videos/+video-edit/video-add.component.html34 + src/app/+videos/+video-edit/video-add.component.html34 + Import importálása - - src/app/+videos/+video-edit/video-add.component.html44 + src/app/+videos/+video-edit/video-add.component.html44 + Upload feltöltése - - src/app/+videos/+video-edit/video-add.component.html45 + src/app/+videos/+video-edit/video-add.component.html45 + Upload a file Fájl feltöltése - - src/app/+videos/+video-edit/video-add.component.html53 + src/app/+videos/+video-edit/video-add.component.html53 + Import with URL Importálás URL-lel - - src/app/+videos/+video-edit/video-add.component.html63 + src/app/+videos/+video-edit/video-add.component.html63 + Import with torrent Importálás torrenttel - - src/app/+videos/+video-edit/video-add.component.html73 + src/app/+videos/+video-edit/video-add.component.html73 + Go live Élő közvetítés - - src/app/+videos/+video-edit/video-add.component.html83 + src/app/+videos/+video-edit/video-add.component.html83 + Other videos Egyéb videók - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + AUTOPLAY AUTOMATIKUS LEJÁTSZÁS - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + Report this comment Hozzászólás jelentése - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + Share Megosztás @@ -2540,7 +2701,7 @@ The link will expire within 1 hour. Support - Support + Támogatás: src/app/shared/shared-support-modal/support-modal.component.html 3 @@ -2595,64 +2756,58 @@ The link will expire within 1 hour. Public Nyilvános - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 - - - - - + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 + This video is blocked. Ez a videó le van tiltva. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + Published - Published - - - src/app/+videos/+video-watch/video-watch.component.html31 + Közzétéve + src/app/+videos/+video-watch/video-watch.component.html31 + SUPPORT TÁMOGATÁS - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + SHARE MEGOSZTÁS - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + SAVE MENTÉS - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + DOWNLOAD LETÖLTÉS - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + Like this video Videó kedvelése - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + Dislike this video Videó nem kedvelése - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + Support options for this video A videó támogatási lehetőségei - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + By által - - src/app/+videos/+video-watch/video-watch.component.html71 + src/app/+videos/+video-watch/video-watch.component.html71 + Subscribe Feliratkozás @@ -2676,19 +2831,21 @@ The link will expire within 1 hour. Show more Több megjelenítése - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + Show less Kevesebb megjelenítése - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + Origin - Origin - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 - Open the video on the origin instanceOpen the video on the origin instance + Eredet + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 + + + Open the video on the origin instance + Videó megnyitása az eredeti példányon src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html 14 @@ -2697,27 +2854,27 @@ The link will expire within 1 hour. Originally published Eredetileg közzétéve - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html20 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html20 + Friendly Reminder: Baráti emlékeztető: - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. a videóhoz használt megosztási rendszer azt vonja maga után, hogy néhány technikai információ a rendszeréről (mint például egy nyilvános IP-cím) elküldésre kerülhet más partnereknek. - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + More information További információk - - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html36src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56src/app/+admin/system/jobs/jobs.component.html56src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + src/app/+admin/moderation/video-block-list/video-block-list.component.html36 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56 + src/app/+admin/system/jobs/jobs.component.html56 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + The video was blocked due to automatic blocking of new videos Ez a videó le lett tiltva, mert az új videók automatikusan letiltásra kerülnek @@ -2725,220 +2882,224 @@ The link will expire within 1 hour. NSFW - NSFW + MKNM src/app/+admin/moderation/video-block-list/video-block-list.component.html67 Get more information További információk szerzése - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + OK Rendben - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 - The video is being imported, it will be available when the import is finished. - The video is being imported, it will be available when the import is finished. - + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 + + + The video is being imported, it will be available when the import is finished. + A videó importálása folyamatban van, az importálás befejezésekor lesz elérhető. src/app/+videos/+video-watch/shared/information/video-alert.component.html 2,3 - - The video is being transcoded, it may not work properly. - The video is being transcoded, it may not work properly. - + + + The video is being transcoded, it may not work properly. + A videó átkódolás alatt van, még nem biztos, hogy megfelelően megjelenik. src/app/+videos/+video-watch/shared/information/video-alert.component.html 6,7 - - The video is being moved to an external server, it may not work properly. - The video is being moved to an external server, it may not work properly. - + + + The video is being moved to an external server, it may not work properly. + A videó áthelyezés alatt van egy külső szerverre, nem biztos, hogy megfelelően megjelenik. src/app/+videos/+video-watch/shared/information/video-alert.component.html 10,11 - - This video will be published on . - This video will be published on . - - - src/app/+videos/+video-watch/shared/information/video-alert.component.html13 - This live has not started yet. - This live has not started yet. - - - src/app/+videos/+video-watch/shared/information/video-alert.component.html18 - This live has ended. - This live has ended. - - - src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + + + This video will be published on . + A videó a következő időpontban lesz közzétéve: . + src/app/+videos/+video-watch/shared/information/video-alert.component.html13 + + + This live has not started yet. + Ez az élő közvetítés még nem kezdődött el. + src/app/+videos/+video-watch/shared/information/video-alert.component.html18 + + + This live has ended. + Ez az élő közvetítés befejeződött. + src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + SORT BY RENDEZÉSI SZEMPONT - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + Most recent first (default) Legújabb először (alapértelmezett) - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + Most replies first Legtöbb válasz először - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + No comments. Nincsenek hozzászólások. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + View from and others - View from and others - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + megjelenítése tőle: és másoktól + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + {VAR_PLURAL, plural, =1 {1 reply} other { replies}} - {VAR_PLURAL, plural, =1 {1 reply} other { replies}} - - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74src/app/+videos/+video-watch/shared/comment/video-comments.component.html77src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + {VAR_PLURAL, plural, =1 {1 válasz} other { válasz}} + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + View from - View from - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + megjelenítése tőle: + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + View - View - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + megjelenítése + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + Comments are disabled. A hozzászólások le vannak tiltva. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + The deletion will be sent to remote instances so they can reflect the change. A törlés el lesz küldve a távoli példányokhoz, így azok is reagálhatnak a változtatásra. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts175 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts175 + It is a remote comment, so the deletion will only be effective on your instance. Ez egy távoli hozzászólás, ezért a törlés csak az Ön példányán lesz hatással. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts177 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts177 + Delete and re-draft Törlés és újraírás - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + Do you really want to delete and re-draft this comment? Biztos, hogy törli és újraírja ezt a hozzászólást? - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + Add comment... Hozzászólás hozzáadása… - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + Markdown compatible Markdown-kompatibilis - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + Markdown compatible that supports: Markdown-kompatibilis, és a következőket támogatja: - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + Auto generated links Automatikusan előállított hivatkozások - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + Break lines Sortörések - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + Lists Listák - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23src/app/shared/shared-main/misc/help.component.ts84 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23 + src/app/shared/shared-main/misc/help.component.ts84 + Emphasis Kiemelés - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25src/app/shared/shared-main/misc/help.component.ts81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25 + src/app/shared/shared-main/misc/help.component.ts81 + bold félkövér - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + italic dőlt - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + Emoji shortcuts Emodzsi rövidítések - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + Emoji markup Emodzsi beírása - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + See complete list Teljes lista megtekintése - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + You are one step away from commenting Egy lépésre van a hozzászólástól - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). - You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + Bármelyik ActivityPub kompatibilis példányon regisztrált fiókkal hozzászólhat (például PeerTube/Mastodon/Pleroma fiókkal). + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + Login to comment Bejelentkezés a hozzászóláshoz - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + Markdown Emoji List Markdown emodzsi lista - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + Comment Hozzászólás - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + Reply Válasz - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + Highlighted comment Kiemelt hozzászólás - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + Reply Válasz @@ -2947,8 +3108,8 @@ The link will expire within 1 hour. This comment has been deleted Ezt a hozzászólást törölték - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + Video redundancies Videoredundanciák @@ -2967,17 +3128,18 @@ The link will expire within 1 hour. Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed? - Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed? - - src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + A token megújítása letiltja a korábban beállított kliensek hozzáférést, amíg azokban nem adja meg az új tokent. Folytatja? + src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + Renew token Renew token - - src/app/+my-account/my-account-applications/my-account-applications.component.html35src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + src/app/+my-account/my-account-applications/my-account-applications.component.html35 + src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + Token renewed. Update your client configuration accordingly. - Token renewed. Update your client configuration accordingly. + Token megújítva. Frissítse a kliensek beállításait. src/app/+my-account/my-account-applications/my-account-applications.component.ts 49 @@ -2986,11 +3148,13 @@ The link will expire within 1 hour. Applications Applications - - src/app/+my-account/my-account-applications/my-account-applications.component.html3src/app/+my-account/my-account-routing.module.ts126src/app/+my-account/my-account.component.ts60 + src/app/+my-account/my-account-applications/my-account-applications.component.html3 + src/app/+my-account/my-account-routing.module.ts126 + src/app/+my-account/my-account.component.ts60 + SUBSCRIPTION FEED - SUBSCRIPTION FEED + FELIRATKOZÁSI LISTA src/app/+my-account/my-account-applications/my-account-applications.component.html 8 @@ -2998,7 +3162,7 @@ The link will expire within 1 hour. Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. - Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. + Használjon külső lista összesítőket, a csatornák videóinak megtekintéséhez amelyekre feliratkozott. src/app/+my-account/my-account-applications/my-account-applications.component.html 10,12 @@ -3006,7 +3170,7 @@ The link will expire within 1 hour. Feed URL - Feed URL + Lista URL src/app/+my-account/my-account-applications/my-account-applications.component.html 18 @@ -3014,7 +3178,7 @@ The link will expire within 1 hour. Feed Token - Feed Token + Lista Token src/app/+my-account/my-account-applications/my-account-applications.component.html 23 @@ -3022,7 +3186,7 @@ The link will expire within 1 hour. ⚠️ Never share your feed token with anyone. - ⚠️ Never share your feed token with anyone. + ⚠️ Soha ne adja meg a lista tokenjét senkinek. src/app/+my-account/my-account-applications/my-account-applications.component.html 26 @@ -3030,7 +3194,7 @@ The link will expire within 1 hour. Renew token - Renew token + Token megújítása src/app/+my-account/my-account-applications/my-account-applications.component.html35 @@ -3041,8 +3205,9 @@ The link will expire within 1 hour. Clear filters Szűrők törlése - - src/app/shared/shared-forms/advanced-input-filter.component.html23src/app/shared/shared-main/misc/simple-search-input.component.html14 + src/app/shared/shared-forms/advanced-input-filter.component.html23 + src/app/shared/shared-main/misc/simple-search-input.component.html14 + Video/Comment/Account Videó/hozzászólás/fiók @@ -3053,7 +3218,6 @@ The link will expire within 1 hour. Azonosító src/app/+admin/system/jobs/jobs.component.html45 - State Állapot @@ -3089,10 +3253,10 @@ The link will expire within 1 hour. Accept Elfogadás - - - - src/app/+admin/follows/followers-list/followers-list.component.html35src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25src/app/+my-library/my-ownership/my-ownership.component.html33 + src/app/+admin/follows/followers-list/followers-list.component.html35 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25 + src/app/+my-library/my-ownership/my-ownership.component.html33 + Refuse Visszautasítás @@ -3121,7 +3285,6 @@ The link will expire within 1 hour. src/app/shared/shared-moderation/batch-domains-modal.component.html3 - Redundancy allowed Redundancia megengedett @@ -3130,8 +3293,8 @@ The link will expire within 1 hour. Unfollow Unfollow - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Példány megnyitása új lapon @@ -3142,23 +3305,21 @@ The link will expire within 1 hour. No host found matching current filters. Nem található a jelenlegi szűrőkre illeszkedő gép. - - src/app/+admin/follows/following-list/following-list.component.html71 + src/app/+admin/follows/following-list/following-list.component.html71 + Your instance is not following anyone. Az Ön példánya nem követ senkit sem. - - src/app/+admin/follows/following-list/following-list.component.html72 + src/app/+admin/follows/following-list/following-list.component.html72 + Showing to of hosts – / gép megjelenítése src/app/+admin/follows/following-list/following-list.component.html11 - - Action - Action + Művelet src/app/+admin/follows/following-list/following-list.component.html30 src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html27 src/app/shared/shared-moderation/account-blocklist.component.html22 @@ -3184,8 +3345,9 @@ The link will expire within 1 hour. Create user Felhasználó létrehozása - - src/app/+admin/users/user-edit/user-create.component.ts96src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts96 + src/app/+admin/users/user-list/user-list.component.html20 + Table parameters Táblázat paraméterei @@ -3204,14 +3366,15 @@ The link will expire within 1 hour. Username Felhasználónév - - - - - src/app/+admin/users/user-edit/user-edit.component.html83src/app/+admin/users/user-edit/user-edit.component.html83src/app/+admin/users/user-list/user-list.component.ts111src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6src/app/+signup/+register/register-step-user.component.html23 + src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+admin/users/user-list/user-list.component.ts111 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6 + src/app/+signup/+register/register-step-user.component.html23 + e.g. jane_doe - e.g. jane_doe + pl. kovacs_janos Username choice placeholder in the registration form src/app/+signup/+register/register-step-user.component.html27 @@ -3236,9 +3399,10 @@ The link will expire within 1 hour. Role Szerep - - - src/app/+admin/users/user-edit/user-edit.component.html136src/app/+admin/users/user-edit/user-edit.component.html136src/app/+admin/users/user-list/user-list.component.ts114 + src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-list/user-list.component.ts114 + Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . Az átkódolás engedélyezve van. A videokvóta csak az eredeti videó méretét veszi figyelembe. Ez a felhasználó legfeljebb ~ -ot tölthet fel. @@ -3254,13 +3418,14 @@ The link will expire within 1 hour. Auth plugin - Auth plugin - - - src/app/+admin/users/user-edit/user-edit.component.html188src/app/+admin/users/user-edit/user-edit.component.html188src/app/+admin/users/user-list/user-list.component.ts121 + Hitelesítési bővítmény + src/app/+admin/users/user-edit/user-edit.component.html188 + src/app/+admin/users/user-edit/user-edit.component.html188 + src/app/+admin/users/user-list/user-list.component.ts121 + None (local authentication) - None (local authentication) + Nincs (helyi hitelesítés) src/app/+admin/users/user-edit/user-edit.component.html 192 @@ -3354,7 +3519,7 @@ The link will expire within 1 hour. Banned users - Banned users + Kitiltott felhasználók src/app/+admin/users/user-list/user-list.component.ts 40 @@ -3374,45 +3539,56 @@ The link will expire within 1 hour. Reports Jelentések - - - src/app/+admin/admin.component.ts53src/app/+admin/moderation/abuse-list/abuse-list.component.html3src/app/+admin/moderation/moderation.routes.ts37src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + src/app/+admin/admin.component.ts53 + src/app/+admin/moderation/abuse-list/abuse-list.component.html3 + src/app/+admin/moderation/moderation.routes.ts37 + src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + Video blocks Videó blokkolások - - src/app/+admin/admin.component.ts60src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + src/app/+admin/admin.component.ts60 + src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + Video comments Video comments - - - src/app/+admin/admin.component.ts67src/app/+admin/moderation/moderation.routes.ts86src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 + src/app/+admin/admin.component.ts67 + src/app/+admin/moderation/moderation.routes.ts86 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 + Muted accounts Némított fiókok - - - - - src/app/+admin/admin.component.ts74src/app/+admin/moderation/moderation.routes.ts98src/app/+my-account/my-account-routing.module.ts85src/app/+my-account/my-account.component.ts31src/app/shared/shared-moderation/account-blocklist.component.html3src/app/shared/shared-moderation/account-blocklist.component.html3 + src/app/+admin/admin.component.ts74 + src/app/+admin/moderation/moderation.routes.ts98 + src/app/+my-account/my-account-routing.module.ts85 + src/app/+my-account/my-account.component.ts31 + src/app/shared/shared-moderation/account-blocklist.component.html3 + src/app/shared/shared-moderation/account-blocklist.component.html3 + Muted servers Némított kiszolgálók - - - - src/app/+admin/admin.component.ts81src/app/+my-account/my-account-routing.module.ts94src/app/+my-account/my-account.component.ts36src/app/shared/shared-moderation/server-blocklist.component.html3src/app/shared/shared-moderation/server-blocklist.component.html3 + src/app/+admin/admin.component.ts81 + src/app/+my-account/my-account-routing.module.ts94 + src/app/+my-account/my-account.component.ts36 + src/app/shared/shared-moderation/server-blocklist.component.html3 + src/app/shared/shared-moderation/server-blocklist.component.html3 + Users Felhasználók - - src/app/+admin/admin.component.ts88src/app/+admin/users/user-edit/user-edit.component.html4src/app/+admin/users/user-edit/user-edit.component.html4 + src/app/+admin/admin.component.ts88 + src/app/+admin/users/user-edit/user-edit.component.html4 + src/app/+admin/users/user-edit/user-edit.component.html4 + Configuration Beállítások - - src/app/+admin/admin.component.ts95src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 + src/app/+admin/admin.component.ts95 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 + Video blocks Videó tiltások @@ -3485,7 +3661,7 @@ The link will expire within 1 hour. Select this row - Select this row + Sor kiválasztása src/app/+admin/moderation/video-comment-list/video-comment-list.component.html53 src/app/+admin/users/user-list/user-list.component.html74 @@ -3497,8 +3673,10 @@ The link will expire within 1 hour. src/app/+admin/moderation/video-comment-list/video-comment-list.component.html65 src/app/+my-library/my-ownership/my-ownership.component.html18 src/app/shared/shared-abuse-list/abuse-list-table.component.html41 - - FollowerFollower + + + Follower + Követő src/app/+admin/follows/followers-list/followers-list.component.html 24 @@ -3511,17 +3689,17 @@ The link will expire within 1 hour. No comments found matching current filters. - No comments found matching current filters. + Nem található a jelenlegi szűrőnek megfelelő hozzászólás. src/app/+admin/moderation/video-comment-list/video-comment-list.component.html107 No comments found. - No comments found. + Nem található hozzászólás. src/app/+admin/moderation/video-comment-list/video-comment-list.component.html108 Local comments - Local comments + Helyi hozzászólások src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts 48 @@ -3529,7 +3707,7 @@ The link will expire within 1 hour. Remote comments - Remote comments + Távoli hozzászólások src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts 52 @@ -3538,38 +3716,38 @@ The link will expire within 1 hour. No abuses found matching current filters. Nem található a jelenlegi szűrőnek megfelelő visszaélési jelentés. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + No abuses found. Nem található visszaélési jelentés. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html167 + src/app/shared/shared-abuse-list/abuse-list-table.component.html167 + Unsolved reports - Unsolved reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts43 + Megoldatlan jelentések + src/app/shared/shared-abuse-list/abuse-list-table.component.ts43 + Accepted reports - Accepted reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts47 + Elfogadott jelentések + src/app/shared/shared-abuse-list/abuse-list-table.component.ts47 + Refused reports - Refused reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts51 + Elutasított jelentések + src/app/shared/shared-abuse-list/abuse-list-table.component.ts51 + Reports with blocked videos - Reports with blocked videos - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts55 + Jelentések letiltott videókkal + src/app/shared/shared-abuse-list/abuse-list-table.component.ts55 + Reports with deleted videos - Reports with deleted videos - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts59 + Jelentések törölt videókkal + src/app/shared/shared-abuse-list/abuse-list-table.component.ts59 + Block reason: Tiltás oka: @@ -3587,14 +3765,14 @@ The link will expire within 1 hour. Automatic blocks - Automatic blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts32 + Automatikus tiltások + src/app/+admin/moderation/video-block-list/video-block-list.component.ts32 + Manual blocks - Manual blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts36 + Kézi tiltások + src/app/+admin/moderation/video-block-list/video-block-list.component.ts36 + Showing to of blocked videos – / tiltott videó megjelenítése @@ -3630,20 +3808,23 @@ The link will expire within 1 hour. - - src/app/shared/shared-abuse-list/abuse-details.component.html22src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html22 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + {VAR_PLURAL, plural, =1 {1 report} other { reports}} {VAR_PLURAL, plural, =1 {1 jelentés} other { jelentés}} - - src/app/shared/shared-abuse-list/abuse-details.component.html22src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html22 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + Video Videó - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43src/app/+my-library/my-ownership/my-ownership.component.html20src/app/+my-library/my-video-imports/my-video-imports.component.html18src/app/shared/shared-video-miniature/video-download.component.html8 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43 + src/app/+my-library/my-ownership/my-ownership.component.html20 + src/app/+my-library/my-video-imports/my-video-imports.component.html18 + src/app/shared/shared-video-miniature/video-download.component.html8 + Comment Comment @@ -3736,11 +3917,11 @@ The link will expire within 1 hour. Instance Példány - - - - - src/app/+about/about.component.html5src/app/+search/search-filters.component.html192src/app/shared/shared-moderation/server-blocklist.component.html31src/app/shared/shared-moderation/server-blocklist.component.html31 + src/app/+about/about.component.html5 + src/app/+search/search-filters.component.html192 + src/app/shared/shared-moderation/server-blocklist.component.html31 + src/app/shared/shared-moderation/server-blocklist.component.html31 + Muted at Némítás ideje @@ -3778,8 +3959,8 @@ The link will expire within 1 hour. It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. Úgy tűnik, hogy nem HTTPS kiszolgálón van. A TLS-nek bekapcsolva kell lennie a webkiszolgálóján, hogy kiszolgálókat követhessen. - - src/app/+admin/follows/following-list/follow-modal.component.html28 + src/app/+admin/follows/following-list/follow-modal.component.html28 + Mute domains Tartományok némítása @@ -3846,10 +4027,14 @@ The link will expire within 1 hour. Search Keresés - - - - src/app/+admin/plugins/plugins.component.html5src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts260src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/shared/shared-main/misc/simple-search-input.component.ts12src/app/shared/shared-main/misc/simple-search-input.component.ts13 + src/app/+admin/plugins/plugins.component.html5 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts260 + src/app/header/search-typeahead.component.html8 + src/app/shared/shared-instance/instance-features-table.component.html122 + src/app/shared/shared-main/misc/simple-search-input.component.ts12 + src/app/shared/shared-main/misc/simple-search-input.component.ts13 + Users can resolve distant content A felhasználók feloldhatják a távoli tartalmat @@ -3864,10 +4049,11 @@ The link will expire within 1 hour. Settings Beállítások - - - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html27src/app/+admin/plugins/plugin-search/plugin-search.component.html53src/app/+my-account/my-account-settings/my-account-settings.component.html1src/app/+my-account/my-account.component.ts50 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html27 + src/app/+admin/plugins/plugin-search/plugin-search.component.html53 + src/app/+my-account/my-account-settings/my-account-settings.component.html1 + src/app/+my-account/my-account.component.ts50 + Display settings Megjelenítési beállítások @@ -3876,31 +4062,32 @@ The link will expire within 1 hour. Uninstall Eltávolítás - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 - + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 + Videos with the most interactions for recent videos - Videos with the most interactions for recent videos - - src/app/+videos/video-list/videos-list-common-page.component.ts204 + Friss videók a legtöbb interakcióval + src/app/+videos/video-list/videos-list-common-page.component.ts204 + Videos with the most views during the last 24 hours - Videos with the most views during the last 24 hours - - src/app/+videos/video-list/videos-list-common-page.component.ts208 - Videos with the most views during the last daysVideos with the most views during the last days + Az elmúlt 24 órában legtöbbször megtekintett videók + src/app/+videos/video-list/videos-list-common-page.component.ts208 + + + Videos with the most views during the last days + A legutóbbi napban legtöbbször megtekintett videók src/app/+videos/video-list/videos-list-common-page.component.ts 209 - Videos that have the most likes - Videos that have the most likes - - src/app/+videos/video-list/videos-list-common-page.component.ts205 + A legtöbbször kedvelt videók + src/app/+videos/video-list/videos-list-common-page.component.ts205 + To load your new installed plugins or themes, refresh the page. Az új telepített bővítmények vagy témák betöltéséhez frissítse az oldalt. @@ -3910,14 +4097,15 @@ The link will expire within 1 hour. Popular Népszerű src/app/+admin/plugins/plugin-search/plugin-search.component.html16 - - for "" for "" + + + for "" + erre: "" src/app/+admin/plugins/plugin-search/plugin-search.component.html 22,24 - {VAR_PLURAL, plural, =1 {result} other {results} } {VAR_PLURAL, plural, =1 {találat} other {találat} } @@ -3947,56 +4135,59 @@ The link will expire within 1 hour. Jobs Feladatok - - src/app/+admin/system/system.component.html3src/app/+admin/system/system.routes.ts26 + src/app/+admin/system/system.component.html3 + src/app/+admin/system/system.routes.ts26 + Logs Naplók - - src/app/+admin/system/system.component.html5src/app/+admin/system/system.routes.ts37 + src/app/+admin/system/system.component.html5 + src/app/+admin/system/system.routes.ts37 + Debug Hibakeresés - - src/app/+admin/system/system.component.html7src/app/+admin/system/system.routes.ts48 + src/app/+admin/system/system.component.html7 + src/app/+admin/system/system.routes.ts48 + Delete this comment - Delete this comment + Hozzászólás törlése src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts75 Delete all comments of this account - Delete all comments of this account + Ennek a felhasználónak minden hozzászólásának törlése src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts81 Comments are deleted after a few minutes - Comments are deleted after a few minutes + A hozzászólások egy pár perc alatt törlődnek src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts82 comments deleted. - comments deleted. - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + hozzászólás törölve. + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + Do you really want to delete all comments of ? - Do you really want to delete all comments of ? - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + Biztos, hogy minden hozzászólását törli? + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + Comments of will be deleted in a few minutes - Comments of will be deleted in a few minutes - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + hozzászólásai pár percen belül törlődnek + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + Video comments - Video comments + Videó hozzászólások src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 This view also shows comments from muted accounts. - This view also shows comments from muted accounts. + Ez a nézet az elnémított felhasználók hozzászólásait is mutatja. src/app/+admin/moderation/video-comment-list/video-comment-list.component.html 8 @@ -4004,12 +4195,12 @@ The link will expire within 1 hour. Showing to of comments - Showing to of comments + Megjelenítve - hozzászólás, összesen hozzászólásból src/app/+admin/moderation/video-comment-list/video-comment-list.component.html15 Select all rows - Select all rows + Minden sor kiválasztása src/app/+admin/moderation/video-comment-list/video-comment-list.component.html38 src/app/+admin/users/user-list/user-list.component.html34 @@ -4025,7 +4216,7 @@ The link will expire within 1 hour. any - any + bármelyik src/app/+admin/system/jobs/jobs.component.html 21 @@ -4044,7 +4235,7 @@ The link will expire within 1 hour. Priority (1 = highest priority) - Priority (1 = highest priority) + Fontosság (1 = legfontosabb) src/app/+admin/system/jobs/jobs.component.html 47 @@ -4052,7 +4243,7 @@ The link will expire within 1 hour. Progress - Progress + Folyamat src/app/+admin/system/jobs/jobs.component.html 49 @@ -4060,12 +4251,12 @@ The link will expire within 1 hour. No jobs found. - No jobs found. + Nem található folyamat. src/app/+admin/system/jobs/jobs.component.html107 No jobs found. - No jobs found. + Nem található folyamat. src/app/+admin/system/jobs/jobs.component.html108 @@ -4119,91 +4310,93 @@ The link will expire within 1 hour. Main instance categories Főpéldány kategóriái - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html50 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html50 + Add a new category Új kategória hozzáadása - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57src/app/shared/shared-forms/select/select-categories.component.html5 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + src/app/shared/shared-forms/select/select-categories.component.html5 + The sharing system implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. A megosztási rendszer következménye, hogy bizonyos műszaki adatok (mint a nyilvános IP-cím) el lesznek küldve a többi partnernek, viszont ez nagymértékben segít a kiszolgáló tehermentesítésében. - - src/app/shared/shared-user-settings/user-video-settings.component.html45 + src/app/shared/shared-user-settings/user-video-settings.component.html45 + Help share videos being played Segítsen a lejátszott videók megosztásában - - src/app/shared/shared-user-settings/user-video-settings.component.html42 + src/app/shared/shared-user-settings/user-video-settings.component.html42 + When on a video page, directly start playing the video. Ha egy videooldalon van, azonnal elindítja a videó lejátszását. - - src/app/shared/shared-user-settings/user-video-settings.component.html56 + src/app/shared/shared-user-settings/user-video-settings.component.html56 + Automatically play videos Videók automatikus lejátszása - - src/app/shared/shared-user-settings/user-video-settings.component.html53 + src/app/shared/shared-user-settings/user-video-settings.component.html53 + When a video ends, follow up with the next suggested video. Ha egy videó véget ér, folytassa a következő javasolt videóval. - - src/app/shared/shared-user-settings/user-video-settings.component.html67 + src/app/shared/shared-user-settings/user-video-settings.component.html67 + Automatically start playing the next video A következő videó lejátszásának automatikus indítása - - src/app/shared/shared-user-settings/user-video-settings.component.html64 + src/app/shared/shared-user-settings/user-video-settings.component.html64 + Main languages you/your moderators speak Fő nyelvek, amelyeken Ön vagy a moderátorai beszélnek - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html64 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html64 + MODERATION & NSFW MODERÁLÁS ÉS ÉRZÉKENY TARTALOM - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html82 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html82 + Manage users to build a moderation team. - Manage users to build a moderation team. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html84 + A felhasználók kezelésénél készíthet moderálási csoportot. + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html84 + This instance is dedicated to sensitive or NSFW content Ez a példány érzékeny tartalmakhoz van létrehozva - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html93 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html93 + Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. - Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html98 + Ennek engedélyezésével a többi rendszergazda tudni fogja, hogy elsősorban az érzékeny tartalmakat publikálja. Ezenkívül a videó feltöltésénél az Érzékeny tartalom jelölőnégyzet alapértelmezetten automatikusan be lesz jelölve. + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html98 + Policy on videos containing sensitive content Érzékeny tartalmú videókkal kapcsolatos irányelv - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. With Hide or Blur thumbnails, a confirmation will be requested to watch the video. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111src/app/shared/shared-user-settings/user-video-settings.component.html8 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111 + src/app/shared/shared-user-settings/user-video-settings.component.html8 + Blur thumbnails Bélyegképek elhomályosítása - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html120src/app/shared/shared-user-settings/user-video-settings.component.html17 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html120 + src/app/shared/shared-user-settings/user-video-settings.component.html17 + Display Megjelenítés - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html121src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html8src/app/shared/shared-user-settings/user-video-settings.component.html18 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html121 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html8 + src/app/shared/shared-user-settings/user-video-settings.component.html18 + Strategy Stratégia @@ -4212,91 +4405,90 @@ The link will expire within 1 hour. Terms Használati feltételek - - - - - src/app/+about/about-instance/about-instance.component.html168src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129src/app/+signup/+register/register.component.html13src/app/shared/shared-instance/instance-about-accordion.component.html35 + src/app/+about/about-instance/about-instance.component.html168 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129 + src/app/+signup/+register/register.component.html13 + src/app/shared/shared-instance/instance-about-accordion.component.html35 + Code of conduct Magatartási kódex - - - - src/app/+about/about-instance/about-instance.component.html154src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140src/app/shared/shared-instance/instance-about-accordion.component.html47 + src/app/+about/about-instance/about-instance.component.html154 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140 + src/app/shared/shared-instance/instance-about-accordion.component.html47 + Moderation information Moderálási információk - - - - src/app/+about/about-instance/about-instance.component.html140src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151src/app/shared/shared-instance/instance-about-accordion.component.html41 + src/app/+about/about-instance/about-instance.component.html140 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151 + src/app/shared/shared-instance/instance-about-accordion.component.html41 + Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc Ki moderálja a példányt? Mi az irányelv az érzékeny tartalmú videókkal kapcsolatban? Politikai videók? Stb. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html152 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html152 + YOU AND YOUR INSTANCE ÖN ÉS AZ ÖN PÉLDÁNYA - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html167 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html167 + Who is behind the instance? Ki van a példány mögött? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html173 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html173 + A single person? A non-profit? A company? Egy magánszemély? Egy non-profit? Egy vállalat? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html174 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html174 + Why did you create this instance? Miért hozta létre ezt a példányt? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html185 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html185 + To share your personal videos? To open registrations and allow people to upload what they want? Személyes videók megosztásához? Regisztrációk megnyitásához és ahhoz, hogy az emberek bármit feltöltsenek, amit akarnak? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html186 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html186 + How long do you plan to maintain this instance? Meddig tervezi fenntartani ezt a példányt? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html197 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html197 + It's important to know for users who want to register on your instance Fontos tudatni a felhasználókkal, akik regisztrálni akarnak az Ön példányán - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html198 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html198 + How will you finance the PeerTube server? Hogyan fogja finanszírozni a PeerTube kiszolgálót? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html209 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html209 + With your own funds? With user donations? Advertising? Saját forrásokkal? A felhasználói adományokkal? Hirdetés? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html210 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html210 + OTHER INFORMATION EGYÉB INFORMÁCIÓK - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html225 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html225 + What server/hardware does the instance run on? Milyen kiszolgálón és hardveren fut a példány? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html231 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html231 + i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc. azaz 2vCore 2GB RAM, egy közvetlen hivatkozás a bérelt kiszolgálóra stb. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html232 - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html232 + APPEARANCE MEGJELENÉS @@ -4304,7 +4496,7 @@ The link will expire within 1 hour. Use plugins & themes for more involved changes, or add slight customizations. - Use plugins & themes for more involved changes, or add slight customizations. + Használjon bővítményeket és témákat látványosabb változásokhoz, vagy végezzen kisebb módosításokat. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 6,7 @@ -4320,107 +4512,102 @@ The link will expire within 1 hour. Kezdőlap src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html27 - - Default trending page - Default trending page - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html43 + Alapértelmezett felkapott oldal + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html43 + Best videos - Best videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html47 + Legjobb videók + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html47 + Hot videos - Hot videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html48 + Érdeklődést kiváltó videók + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html48 + Most viewed videos - Most viewed videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html49 + Legtöbbször megnézett videók + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html49 + Most liked videos Legkedveltebb videók - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html50 - - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html50 + BROADCAST MESSAGE ÜZENETSZÓRÁS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html64 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html64 + Display a message on your instance - Display a message on your instance - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html66 + Üzenet megjelenítése a példányán + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html66 + Enable broadcast message Üzenetszórás engedélyezése - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html77 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html77 + Allow users to dismiss the broadcast message A felhasználók bezárhatják a szórt üzenetet - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html84 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html84 + Broadcast message level Szórt üzenet szintje - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html89 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html89 + Message Üzenet - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html103 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html103 + NEW USERS ÚJ FELHASZNÁLÓK - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html120 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html120 + Manage users to set their quota individually. - Manage users to set their quota individually. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html122 + A felhasználók kezelésénél beállíthatja a személyes kvótákat. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html122 + Signup requires email verification A regisztráció e-mail ellenőrzést igényel - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html143 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html143 + Signup limit Regisztrációs korlát - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html147 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html147 + {VAR_PLURAL, plural, =1 {user} other {users}} - {VAR_PLURAL, plural, =1 {user} other {users}} - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html154 + {VAR_PLURAL, plural, =1 {felhasználó} other {felhasználó}} + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html154 + Signup won't be limited to a fixed number of users. - Signup won't be limited to a fixed number of users. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html159 - Minimum required age to create an accountMinimum required age to create an account + A regisztráció nem lesz korlátozva egy adott számú felhasználóra. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html159 + + + Minimum required age to create an account + Minimális életkor a fiók létrehozásához src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 163 - - {VAR_PLURAL, plural, =1 {year old} other {years old}}{VAR_PLURAL, plural, =1 {year old} other {years old}} + + + {VAR_PLURAL, plural, =1 {year old} other {years old}} + {VAR_PLURAL, plural, =1 {éves} other {éves}} src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 170 @@ -4429,8 +4616,8 @@ The link will expire within 1 hour. Enable Signup Regisztráció engedélyezése - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html132 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html132 + Users Felhasználók @@ -4487,204 +4674,204 @@ The link will expire within 1 hour. Default video quota per user Alapértelmezett videokvóta felhasználóként - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 + bytes - bytes - - - - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html178src/app/+admin/users/user-edit/user-edit.component.html178 + bájt + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html178 + src/app/+admin/users/user-edit/user-edit.component.html178 + Default daily upload limit per user Alapértelmezett napi feltöltési korlát felhasználóként - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 + Allow import with a torrent file or a magnet URI Importálás engedélyezése torrent-fájllal vagy egy mágnes URI-val - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + Unless a user is marked as trusted, their videos will stay private until a moderator reviews them. Hacsak egy felhasználó nincs megbízhatóként megjelölve, a videói mindaddig személyes állapotban maradnak, amíg egy moderátor meg nem vizsgálja azokat. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html263 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html263 + Block new videos automatically Új videók automatikus letiltása - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + SEARCH KERESÉS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + Allow users to do remote URI/handle search A felhasználók végezhetnek távoli URI/felhasználónév keresést - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + Allow your users to look up remote videos/actors that may not be federated with your instance Engedélyezés a felhasználói számára, hogy olyan távoli videókat/szereplőket keressenek, akik nem biztos, hogy föderálnak az Ön példányával - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html291 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html291 + Allow anonymous to do remote URI/handle search A vendégek végezhetnek távoli URI/felhasználónév keresést - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html299 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html299 + Allow anonymous users to look up remote videos/actors that may not be federated with your instance Engedélyezés a névtelen felhasználók számára, hogy olyan távoli videókat/szereplőket keressenek, akik nem biztos, hogy föderálnak az Ön példányával - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html302 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html302 + ⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select. ⚠️ Ez a funkcionalitás nagyban függ a kiválasztott keresőindex által követett példányok moderációjától. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html316 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html316 + You should only use moderated search indexes in production, or host your own. - You should only use moderated search indexes in production, or host your own. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 + Élesben csak moderált kereső-indexet használjon vagy üzemeltesse a sajátját. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 + Search index URL Keresőindex URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + Disable local search in search bar Helyi keresés letiltása a keresősávban - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + Otherwise the local search stays used by default Különben a helyi keresés lesz alapértelmezetten használva - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + Search bar uses the global search index by default A keresősáv a globális keresőindexet használja alapértelmezetten - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + Enable global search Globális keresés engedélyezése - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + FEDERATION FÖDERÁCIÓ - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 + Manage relations with other instances. - Manage relations with other instances. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 + A többi példánnyal való kapcsolódások szerkesztése. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 + Other instances can follow yours Más példányok követhetik az Önét - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + Manually approve new instance followers Új példánykövetők kézi jóváhagyása - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + Automatically follow back instances Példányok automatikus visszakövetése - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 + ⚠️ This functionality requires a lot of attention and extra moderation. ⚠️ Ez a funkció nagyon sok figyelmet és további moderálást igényel. - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + Index URL Index URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + Automatically follow instances of a public index Egy nyilvános index példányainak automatikus követése - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 + See the documentation for more information about the expected URL - See the documentation for more information about the expected URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + A dokumentációban talál információkat a szükséges URL-ről + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + ADMINISTRATORS RENDSZERGAZDÁK - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + Administrator Rendszergazda - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Rendszergazda e-mail - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + Enable contact form Kapcsolatfelvételi űrlap engedélyezése - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 + VOD Transcoding - VOD Transcoding - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html33 + VOD Átkódolás + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html33 + TWITTER TWITTER - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. - Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 + Jobb hivatkozás előnézetekért adja meg a példányának Twitter fiókját. Ha nincs Twitter fiókja, hagyja alapértéken. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 + Your Twitter username A Twitter felhasználóneve - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + Instance allowed by Twitter Példány Twitter által engedélyezve - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 - If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 + + + If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. + Ha a Twitteren engedélyezve van a példánya, akkor egy videólejátszó fog megjelenni a Twitter folyamban, ha PeerTube videót osztanak meg. Ha nincs engedélyezve, akkor egy kép-kártya fog megjelenni, amely átirányít a PeerTube példányra. Jelölje ezt be, mentse a beállításokat és próbálja ki egy videó URL-el a saját példányáról (https://example.com/w/blabla) ezen a címen: https://cards-dev.twitter.com/validator. Így megállapíthatja, hogy engedélyezve van-e a példány. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 + LIVE - LIVE + ÉLŐ src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html5 src/app/shared/shared-thumbnail/video-thumbnail.component.html31 Enable users of your instance to stream live. - Enable users of your instance to stream live. + Lehetővé teszi a felhasználóknak élő közvetítések létrehozását. src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 7,8 @@ -4692,12 +4879,12 @@ The link will expire within 1 hour. ⚠️ Enabling live streaming requires trust in your users and extra moderation work - ⚠️ Enabling live streaming requires trust in your users and extra moderation work + ⚠️ Az élő közvetítések engedélyezése bizalmat igényel a felhasználói felé és további moderálási munkát jelent src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html22 If enabled, your server needs to accept incoming TCP traffic on port - If enabled, your server needs to accept incoming TCP traffic on port + Engedélyezése esetén a szervernek fogadnia kell a TCP forgalmat ezen a kapun: src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 23 @@ -4705,12 +4892,12 @@ The link will expire within 1 hour. Allow your users to automatically publish a replay of their live - Allow your users to automatically publish a replay of their live + Engedélyezi a felhasználóknak élő közvetítések automatikus közzétételét és visszajátszását src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html31 If the user quota is reached, PeerTube will automatically terminate the live streaming - If the user quota is reached, PeerTube will automatically terminate the live streaming + Ha a felhasználó túllépi a kvótáját, az élő közvetítés megszakad src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 34,35 @@ -4718,7 +4905,7 @@ The link will expire within 1 hour. Max simultaneous lives created on your instance (-1 for "unlimited") - Max simultaneous lives created on your instance (-1 for "unlimited") + A példányon egyszerre létrehozható élő közvetítések maximális száma (-1 a "korlátlan") src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 41 @@ -4727,11 +4914,12 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {live} other {lives}} {VAR_PLURAL, plural, =1 {live} other {lives}} - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html46src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html46 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 + Max simultaneous lives created per user (-1 for "unlimited") - Max simultaneous lives created per user (-1 for "unlimited") + Egy felhasználó által egyszerre létrehozható élő közvetítések maximális száma (-1 a "korlátlan") src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 54 @@ -4739,22 +4927,22 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {live} other {lives}} - {VAR_PLURAL, plural, =1 {live} other {lives}} + {VAR_PLURAL, plural, =1 {élő} other {élő}} src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 Max live duration - Max live duration + Élő közvetítés maximális hossza src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html66 Live transcoding threads - Live transcoding threads + Élő közvetítés átkódolási szálak src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html128 will claim at most with VOD transcoding - will claim at most with VOD transcoding + legfeljebb lesz felhasználva VOD átkódolásra src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 131,133 @@ -4762,7 +4950,7 @@ The link will expire within 1 hour. will claim at least with VOD transcoding - will claim at least with VOD transcoding + legalább lesz felhasználva VOD átkódolásra src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 135,137 @@ -4770,36 +4958,38 @@ The link will expire within 1 hour. Live transcoding profile - Live transcoding profile + Élő közvetítés átkódolási profil src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html150 new live transcoding profiles can be added by PeerTube plugins - new live transcoding profiles can be added by PeerTube plugins + új élő közvetítés átkódolási profilok PeerTube bővítményekként telepíthetők src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html151 Live resolutions to generate - Live resolutions to generate + Élő közvetítésekhez létrehozandó felbontások src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html107 Allow live streaming - Allow live streaming + Élő közvetítések engedélyezése src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html18 Transcoding enabled for live streams - Transcoding enabled for live streams + Átkódolás engedélyezve élő közvetítésekhez src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html101 Live streaming - Live streaming - - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html42src/app/shared/shared-instance/instance-features-table.component.html67 - AdvancedAdvanced + Élő közvetítés + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html42 + src/app/shared/shared-instance/instance-features-table.component.html67 + + + Advanced + Haladó src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 51 @@ -4821,7 +5011,7 @@ The link will expire within 1 hour. Input formats - Input formats + Bemeneti formátumok src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html46 @@ -4836,7 +5026,7 @@ The link will expire within 1 hour. Allows users to upload videos. - Allows users to upload videos. + Lehetővé teszi videók feltöltését. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 54 @@ -4849,27 +5039,27 @@ The link will expire within 1 hour. Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files. - Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files. + Lehetővé teszti .mp3, .ogg, .wma, .flac, .aac, or .ac3 hangfájlok feltöltését. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html65 The file will be merged in a still image video with the preview file on upload. - The file will be merged in a still image video with the preview file on upload. + A fájl egy állóképes videóvá kerül összefűzésre az előnézeti képpel. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html66 Output formats - Output formats + Kimeneti formátumok src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html73 WebTorrent enabled - WebTorrent enabled + WebTorrent bekapcsolva src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html79 If you also enabled HLS support, it will multiply videos storage by 2 - If you also enabled HLS support, it will multiply videos storage by 2 + Ha bekapcsolta a HLS támogatást, az kétszeresére növeli a videó tárhelyet src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 83 @@ -4882,7 +5072,7 @@ The link will expire within 1 hour. Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2 - Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2 + Az ffmpeg >= 4.1 verziója szükségesHLS lejátszólisták és fragmentált MP4 fájlok létrehozása az egyszerű WebTorrentnél jobb lejátszást eredményez:A felbontás váltás finomabbGyorsabb lejátszás, különösen hosszú videóknálStabilabb lejátszás (kevesebb hiba és örökös töltés)Ha a WebTorrent támogatást is bekapcsolta, az megkétszerezi a videó tárhelyet src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 99,108 @@ -4890,12 +5080,12 @@ The link will expire within 1 hour. Resolutions to generate per enabled format - Resolutions to generate per enabled format + A létrehozandó felbontások, engedélyezett formátumonként src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html116 The original file resolution will be the default target if no option is selected. - The original file resolution will be the default target if no option is selected. + Az eredeti fájl felbontása lesz az alapértelmezett cél, ha nincs opció kiválasztva. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 132,133 @@ -4908,7 +5098,7 @@ The link will expire within 1 hour. will claim at most with live transcoding - will claim at most with live transcoding + legfeljebb lesz felhasználva élő közvetítés átkódolásra src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 146,148 @@ -4916,7 +5106,7 @@ The link will expire within 1 hour. will claim at least with live transcoding - will claim at least with live transcoding + legalább lesz felhasználva élő közvetítés átkódolásra src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 150,152 @@ -4924,7 +5114,7 @@ The link will expire within 1 hour. Transcoding jobs concurrency - Transcoding jobs concurrency + Átkódolási folyamat konkurencia src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 166 @@ -4932,7 +5122,7 @@ The link will expire within 1 hour. allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart - allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart + lehetővé teszi több fájl párhuzamos átkódolását. ⚠️ A PeerTube újraindítása szükséges src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 167 @@ -4940,12 +5130,12 @@ The link will expire within 1 hour. Transcoding profile - Transcoding profile + Átkódolási profil src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html178 new transcoding profiles can be added by PeerTube plugins - new transcoding profiles can be added by PeerTube plugins + új átkódolási profilok PeerTube bővítményekként telepíthetők src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html179 @@ -4955,7 +5145,7 @@ The link will expire within 1 hour. Some files are not federated, and fetched when necessary. Define their caching policies. - Some files are not federated, and fetched when necessary. Define their caching policies. + Néhány fájl nincs föderálva, és szükség esetén lesz letöltve. Határozza meg a gyorsítótárazási irányelveiket. src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 7,8 @@ -4968,7 +5158,7 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {cached image} other {cached images}} - {VAR_PLURAL, plural, =1 {cached image} other {cached images}} + {VAR_PLURAL, plural, =1 {gyorsítótárazott kép} other {gyorsítótárazott kép}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 22 @@ -4981,7 +5171,7 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {cached caption} other {cached captions}} - {VAR_PLURAL, plural, =1 {cached caption} other {cached captions}} + {VAR_PLURAL, plural, =1 {gyorsítótárazott felirat} other {gyorsítótárazott felirat}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 36 @@ -4989,7 +5179,7 @@ The link will expire within 1 hour. Number of video torrents to keep in cache - Number of video torrents to keep in cache + A gyorsítótárban tartandó videó torrentek száma src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 43 @@ -4997,7 +5187,7 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}} - {VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}} + {VAR_PLURAL, plural, =1 {gyorsítótárazott torrent} other {gyorsítótárazott torrent}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 50 @@ -5010,7 +5200,7 @@ The link will expire within 1 hour. Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. - Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. + Apró módosításokhoz a PeerTube példányán, amikor egy bővítmény vagy egy téma létrehozás túlzás. src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html65 @@ -5020,7 +5210,7 @@ The link will expire within 1 hour. Write JavaScript code directly.Example: console.log('my instance is amazing'); - Write JavaScript code directly.Example: console.log('my instance is amazing'); + Írjon közvetlenül JavaScript kódot.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br /&gt;"/>Példa: <<x id="START_TAG_PRE" ctype="x-pre" equiv-text="&lt;pre&gt;"/>console.log('az én példányom csodálatos');<x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="&lt;/pre&gt;"/> src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html78 @@ -5031,31 +5221,24 @@ color: red; color: red; - Write CSS code directly. Example:#custom-css -color: red; - - Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email -color: red; - - + Írjon közvetlenül CSS kódot. Például:#custom-css color: red; Kezdje ezzel: #custom-css stílusok felülírásához. Például:#custom-css .logged-in-email color: red; src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html97 You cannot allow live replay if you don't enable transcoding. - You cannot allow live replay if you don't enable transcoding. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html77 - + Nem tudja engedélyezni az élő közvetítés visszajátszását, ha nem engedélyezi az átkódolást. + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html77 + There are errors in the form: - There are errors in the form: - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html67 + Hibák vannak az űrlapon: + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html67 + Update configuration Beállítás frissítése - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80 + VIDEO SETTINGS VIDEOBEÁLLÍTÁSOK @@ -5091,137 +5274,169 @@ color: red; Profile Profil - - src/app/shared/shared-video-miniature/video-download.component.ts238 + src/app/shared/shared-video-miniature/video-download.component.ts238 + Resolution Felbontás - - src/app/shared/shared-video-miniature/video-download.component.ts247 + src/app/shared/shared-video-miniature/video-download.component.ts247 + Aspect ratio Méretarány - - src/app/shared/shared-video-miniature/video-download.component.ts248 + src/app/shared/shared-video-miniature/video-download.component.ts248 + Average frame rate Átlagos képkockasebesség - - src/app/shared/shared-video-miniature/video-download.component.ts249 + src/app/shared/shared-video-miniature/video-download.component.ts249 + Pixel format Képpontformátum - - src/app/shared/shared-video-miniature/video-download.component.ts250 + src/app/shared/shared-video-miniature/video-download.component.ts250 + Sample rate Mintavételi arány - - src/app/shared/shared-video-miniature/video-download.component.ts254 + src/app/shared/shared-video-miniature/video-download.component.ts254 + Channel Layout Csatorna elrendezése - - src/app/shared/shared-video-miniature/video-download.component.ts255 - Update your settings Update your settings + src/app/shared/shared-video-miniature/video-download.component.ts255 + + + Update your settings + Frissítse a beállításokat src/app/shared/shared-video-miniature/video-filters-header.component.html 3,7 - - More filtersMore filters + + + More filters + Több szűrő src/app/shared/shared-video-miniature/video-filters-header.component.html 20 - - Less filtersLess filters + + + Less filters + Kevesebb szűrő src/app/shared/shared-video-miniature/video-filters-header.component.html 21 - - Sort by "Recently Added"Sort by "Recently Added" + + + Sort by "Recently Added" + Rendezés: "Közelmúltban felvett" src/app/shared/shared-video-miniature/video-filters-header.component.html 46 - - Sort by "Views"Sort by "Views" + + + Sort by "Views" + Rendezés: "Megtekintések" src/app/shared/shared-video-miniature/video-filters-header.component.html 48 - - Sort by "Hot"Sort by "Hot" + + + Sort by "Hot" + Rendezés: "Felkapott" src/app/shared/shared-video-miniature/video-filters-header.component.html 49 - - Sort by "Best"Sort by "Best" + + + Sort by "Best" + Rendezés: "Legjobb" src/app/shared/shared-video-miniature/video-filters-header.component.html 50 - - Sort by "Likes"Sort by "Likes" + + + Sort by "Likes" + Rendezés: "Kedvelések" src/app/shared/shared-video-miniature/video-filters-header.component.html 51 - - Languages:Languages: + + + Languages: + Nyelvek: src/app/shared/shared-video-miniature/video-filters-header.component.html 59 - - Sensitive content:Sensitive content: + + + Sensitive content: + Érzékeny tartalom: src/app/shared/shared-video-miniature/video-filters-header.component.html 66 - - Scope:Scope: + + + Scope: + Hatókör: src/app/shared/shared-video-miniature/video-filters-header.component.html 81 - - Local videos (this instance)Local videos (this instance) + + + Local videos (this instance) + Helyi videók (ez a példány) src/app/shared/shared-video-miniature/video-filters-header.component.html 85 - - Federated videos (this instance + followed instances)Federated videos (this instance + followed instances) + + + Federated videos (this instance + followed instances) + Föderált videók (ez a példány + követett példányok) src/app/shared/shared-video-miniature/video-filters-header.component.html 90 - - Type:Type: + + + Type: + Típus: src/app/shared/shared-video-miniature/video-filters-header.component.html 95 - - VOD & Live videosVOD & Live videos + + + VOD & Live videos + VOD és élő videók src/app/shared/shared-video-miniature/video-filters-header.component.html 99 - - Categories:Categories: + + + Categories: + Kategóriák: src/app/shared/shared-video-miniature/video-filters-header.component.html 114 - - Moderation:Moderation: + + + Moderation: + Moderálás: src/app/shared/shared-video-miniature/video-filters-header.component.html 120 @@ -5266,7 +5481,7 @@ color: red; With Hide or Blur thumbnails, a confirmation will be requested to watch the video. - With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + Az Elrejtés vagy a Bélyegképek elhomályosítása beállításokkal megerősítés szükséges a videó megnézéséhez. src/app/shared/shared-user-settings/user-video-settings.component.html 8,9 @@ -5275,9 +5490,9 @@ color: red; Policy for sensitive videos Érzékeny videók irányelve - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html118src/app/shared/shared-user-settings/user-video-settings.component.html15 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html118 + src/app/shared/shared-user-settings/user-video-settings.component.html15 + Only display videos in the following languages/subtitles Csak a következő nyelveken vagy felirattal elérhető videók megjelenítése @@ -5291,9 +5506,9 @@ color: red; Add a new language Új nyelv hozzáadása - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71src/app/shared/shared-forms/select/select-languages.component.html6 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71 + src/app/shared/shared-forms/select/select-languages.component.html6 + is awaiting email verification e-mail ellenőrzésre vár @@ -5328,8 +5543,9 @@ color: red; Change ownership Tulajdonjog megváltoztatása - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts180 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts180 + Select the next owner A következő tulajdonos kiválasztása @@ -5337,27 +5553,27 @@ color: red; Last published first - Last published first + Legutóbb közzétettek előre src/app/+my-library/my-videos/my-videos.component.html27 Last created first - Last created first + Legutóbb létrehozottak előre src/app/+my-library/my-videos/my-videos.component.html28 Most viewed first - Most viewed first + Legtöbbet megtekintettek előre src/app/+my-library/my-videos/my-videos.component.html29 Most liked first - Most liked first + Legtöbbször kedveltek előre src/app/+my-library/my-videos/my-videos.component.html30 Longest first - Longest first + Leghosszabb előre src/app/+my-library/my-videos/my-videos.component.html31 @@ -5370,7 +5586,6 @@ color: red; Válasszon egy csatornát a videó fogadásához src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html10 - My ownership changes Saját tulajdonosváltozások @@ -5394,9 +5609,9 @@ color: red; Account page Fiókoldal - - - src/app/+videos/+video-watch/video-watch.component.html70src/app/+videos/+video-watch/video-watch.component.html76 + src/app/+videos/+video-watch/video-watch.component.html70 + src/app/+videos/+video-watch/video-watch.component.html76 + @@ -5410,13 +5625,13 @@ color: red; Account settings Fiókbeállítások - - src/app/+my-account/my-account-routing.module.ts28 + src/app/+my-account/my-account-routing.module.ts28 + Playlist elements Lejátszólista elemek - - src/app/+my-library/my-library-routing.module.ts57 + src/app/+my-library/my-library-routing.module.ts57 + My imports Saját importok @@ -5426,13 +5641,13 @@ color: red; Create video channel Videocsatorna létrehozása - - src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + No channel found. - No channel found. - - src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + Nem található csatorna. + src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + subscribers @@ -5454,7 +5669,7 @@ color: red; Banner image of your channel - Banner image of your channel + A csatorna borítóképe src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html 30 @@ -5486,7 +5701,7 @@ color: red; Upload a new avatar - Upload a new avatar + Új profilkép feltöltése src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html9 src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html34 @@ -5518,15 +5733,16 @@ color: red; Delete your account Fiók törlése - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 + Channel page Csatornaoldal - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html25src/app/+my-library/my-subscriptions/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+my-library/+my-video-channels/my-video-channels.component.html25 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html67 + Created by Létrehozta: @@ -5544,9 +5760,9 @@ color: red; You don't have any video in your watch history yet. - You don't have any video in your watch history yet. - - src/app/+my-library/my-history/my-history.component.html29 + Még nincs videó a megnézettek közt. + src/app/+my-library/my-history/my-history.component.html29 + Open syndication dropdown Open syndication dropdown @@ -5558,14 +5774,18 @@ color: red; src/app/shared/shared-main/feeds/feed.component.html 3 - - Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description.Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + + + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + Néhány csatornája nincs teljesen beállítva. Tegye barátságosabbá és felismerhetőbbé borítókép és profilkép feltöltésével és a leírásának megadásával. src/app/shared/shared-main/misc/channels-setup-message.component.html 5 - - Set up my channelsSet up my channels + + + Set up my channels + Csatornák beállítása src/app/shared/shared-main/misc/channels-setup-message.component.html 6 @@ -5622,16 +5842,16 @@ color: red; Create playlist Lejátszási lista létrehozása - - src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + My video channels - My video channels + Saját videócsatornák src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts13 Create a new video channel - Create a new video channel + Új videócsatorna létrehozása src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts22 @@ -5669,8 +5889,10 @@ color: red; If you need help to use PeerTube, you can have a look at the documentation. Ha segítségre van szüksége a PeerTube használatához, akkor megnézheti a dokumentációt. src/app/+signup/shared/signup-success.component.html14 - - To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + + + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + Hogy segítsen a moderátoroknak és más felhasználóknak megismerni önt, egészítse ki a profilját egy profilkép feltöltésével és egy leírás megadásával. src/app/+signup/shared/signup-success.component.html 18,19 @@ -5678,7 +5900,7 @@ color: red; Created - Created + Létrehozott src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html 3,4 @@ -5686,7 +5908,7 @@ color: red; {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} - {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} + {VAR_PLURAL, plural, =1 {1 lejátszólista} other { lejátszólista}} src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html 3 @@ -5715,16 +5937,16 @@ color: red; Video channel videos Videócsatorna videói - - src/app/+video-channels/video-channels-routing.module.ts22 + src/app/+video-channels/video-channels-routing.module.ts22 + Video channel playlists Videócsatorna lejátszólistái - - src/app/+video-channels/video-channels-routing.module.ts35 + src/app/+video-channels/video-channels-routing.module.ts35 + Manage channel - Manage channel + Csatorna kezelése src/app/+video-channels/video-channels.component.html 10,11 @@ -5747,14 +5969,14 @@ color: red; Verify account via email - Verify account via email - - src/app/+signup/+verify-account/verify-account-routing.module.ts15 + Fiók ellenőrzése e-maillel + src/app/+signup/+verify-account/verify-account-routing.module.ts15 + Ask to send an email to verify you account - Ask to send an email to verify you account - - src/app/+signup/+verify-account/verify-account-routing.module.ts24 + Kérje e-mail küldését az fiók ellenőrzéséhez + src/app/+signup/+verify-account/verify-account-routing.module.ts24 + Banned Kitiltva @@ -5777,7 +5999,7 @@ color: red; Copy account handle - Copy account handle + Fióknév másolása src/app/+accounts/accounts.component.html 31 @@ -5786,8 +6008,12 @@ color: red; {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html30src/app/+video-channels/video-channels.component.html73src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + src/app/+video-channels/video-channels.component.html73 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 videos} other { videos}} @@ -5798,7 +6024,7 @@ color: red; - + src/app/+accounts/accounts.component.html 41,42 @@ -5806,31 +6032,31 @@ color: red; Show the complete description - Show the complete description + A teljes leírás megjelenítése src/app/+accounts/accounts.component.html55 src/app/+video-channels/video-channels.component.html94 Show more... - Show more... + Több megjelenítése... src/app/+accounts/accounts.component.html57 src/app/+video-channels/video-channels.component.html96 Manage account - Manage account + Fiók kezelése src/app/+accounts/accounts.component.html62 Search account videos - Search account videos + Keresés a fiók videói közt src/app/+accounts/accounts.component.html80 CHANNELS - CHANNELS - - src/app/+accounts/accounts.component.ts81 + CSATORNÁK + src/app/+accounts/accounts.component.ts81 + This account does not have channels. Ennek a fióknak nincsenek csatornái. @@ -5845,7 +6071,7 @@ color: red; {VAR_PLURAL, plural, =1 {1 videos} other { videos}} - {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + {VAR_PLURAL, plural, =1 {1 videó} other { videó}} src/app/+accounts/account-video-channels/account-video-channels.component.html26 @@ -5855,7 +6081,7 @@ color: red; Show this channel - Show this channel + Csatorna megtekintése src/app/+accounts/account-video-channels/account-video-channels.component.html35 @@ -5869,8 +6095,10 @@ It will delete videos uploa channel with the same name ()! Biztos, hogy törli a(z) csatornát? Ez törli a csatornára feltöltött videót, és nem hozhat létre még egy csatornát ugyanezzel a névvel ()! src/app/+my-library/+my-video-channels/my-video-channels.component.ts44 - - Please type the name of the video channel () to confirmPlease type the name of the video channel () to confirm + + + Please type the name of the video channel () to confirm + A megerősítéshez írja be a videócsatorna nevét () src/app/+my-library/+my-video-channels/my-video-channels.component.ts 48 @@ -5891,9 +6119,11 @@ channel with the same name ()! See this video channel Videocsatorna megtekintése - - - src/app/+accounts/account-video-channels/account-video-channels.component.html13src/app/+accounts/account-video-channels/account-video-channels.component.html17src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + src/app/+accounts/account-video-channels/account-video-channels.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html17 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + This channel doesn't have any videos. Ennek a csatornának nincs egyetlen videója sem. @@ -5901,14 +6131,14 @@ channel with the same name ()! SHOW THIS CHANNEL > - SHOW THIS CHANNEL > + CSATORNA MEGJELENÍTÉSE > src/app/+accounts/account-video-channels/account-video-channels.component.html46 Stats Statisztikák - - src/app/menu/menu.component.html139 + src/app/menu/menu.component.html139 + This channel does not have playlists. Ennek a csatornának nincsenek lejátszási listái. @@ -5921,7 +6151,7 @@ channel with the same name ()! Network - Network + Hálózat src/app/+about/about.component.html9 @@ -5931,7 +6161,7 @@ channel with the same name ()! Follower instances () - Follower instances () + Követő példányok () src/app/+about/about-follows/about-follows.component.html 4 @@ -5939,13 +6169,12 @@ channel with the same name ()! Following instances () - Following instances () + Követett példányok () src/app/+about/about-follows/about-follows.component.html 16 - Your name Az Ön neve @@ -5970,8 +6199,10 @@ channel with the same name ()!About A(z) névjegye src/app/+about/about-instance/about-instance.component.html5 - - Contact usContact us + + + Contact us + Kapcsolatfelvétel src/app/+about/about-instance/about-instance.component.html 7 @@ -5981,7 +6212,6 @@ channel with the same name ()!3 - This instance is dedicated to sensitive/NSFW content. Ez a példány érzékeny tartalmakhoz van létrehozva. @@ -6009,7 +6239,7 @@ channel with the same name ()! How we will pay for keeping our instance running - How we will pay for keeping our instance running + Hogyan fizetünk a példányunk üzemben tartásáért src/app/+about/about-instance/about-instance.component.html 86 @@ -6064,7 +6294,7 @@ channel with the same name ()! It is free and open-source software, under AGPLv3 licence. - It is free and open-source software, under AGPLv3 licence. + Ez egy AGPLv3 licenc alatt közzétett szabad és nyílt forráskódú szoftver. src/app/+about/about-peertube/about-peertube.component.html14 @@ -6114,7 +6344,7 @@ channel with the same name ()! The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. - The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. + A személyes adatait fenyegető fő veszély a BitTorrent használata esetén, hogy az IP címet tárolja a példány BitTorrent követője addig, amíg a videót letölti vagy nézi. src/app/+about/about-peertube/about-peertube.component.html 81,83 @@ -6225,7 +6455,7 @@ channel with the same name ()! Show full list - Show full list + Teljes lista megjelenítése src/app/+about/about-follows/about-follows.component.html 12 @@ -6237,30 +6467,32 @@ channel with the same name ()! This instance is not following any other. - This instance is not following any other. + Ez a példány nem követ egyetlen másikat sem. src/app/+about/about-follows/about-follows.component.html18 About this instance A példány névjegye - - src/app/+about/about-routing.module.ts24 + src/app/+about/about-routing.module.ts24 + About PeerTube A PeerTube névjegye - - src/app/+about/about-routing.module.ts49 + src/app/+about/about-routing.module.ts49 + About this instance's network - About this instance's network - - src/app/+about/about-routing.module.ts58 + A példány hálózatáról + src/app/+about/about-routing.module.ts58 + Link copied - Link copied - - src/app/+about/about-instance/about-instance.component.ts98 - Contact the administrator(s)Contact the administrator(s) + Hivatkozás másolva + src/app/+about/about-instance/about-instance.component.ts98 + + + Contact the administrator(s) + Írjon az adminisztrátoroknak src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -6286,18 +6518,18 @@ channel with the same name ()! Create my account Fiókom létrehozása - - src/app/+signup/+register/register.component.html39 + src/app/+signup/+register/register.component.html39 + PeerTube is creating your account... A PeerTube most létrehozza a fiókját… - - src/app/+signup/+register/register.component.html47 + src/app/+signup/+register/register.component.html47 + Done Kész - - src/app/+signup/+register/register.component.html43 + src/app/+signup/+register/register.component.html43 + Who are we? Kik vagyunk mi? @@ -6364,10 +6596,12 @@ channel with the same name ()! Channel name cannot be the same as your account name. You can click on the first step to update your account name. - Channel name cannot be the same as your account name. You can click on the first step to update your account name. + A csatorna neve nem lehet ugyanaz, mint a fiókja neve. Rákattinthat az első lépésre a fiók nevének frissítéséhez. src/app/+signup/+register/register-step-channel.component.html51 - - I am at least years old and agree to the Terms and to the Code of Conduct of this instance I am at least years old and agree to the Terms and to the Code of Conduct of this instance + + + I am at least years old and agree to the Terms and to the Code of Conduct of this instance + Elmúltam éves és elfogadom a Felhasználási feltételeit és a Magatartási kódexét ennek a példánynak src/app/+signup/+register/register-step-terms.component.html 5,10 @@ -6380,103 +6614,117 @@ channel with the same name ()! Video uploads are disabled on this instance, hence your account won't be able to upload videos. - Video uploads are disabled on this instance, hence your account won't be able to upload videos. + Ezen a példányon videók feltöltése nem engedélyezett, így nem fog tudni videókat közzétenni. src/app/+signup/+register/register-step-user.component.html 4,5 - Register Regisztráció - - src/app/+signup/+register/register-routing.module.ts13 + src/app/+signup/+register/register-routing.module.ts13 + Your message has been sent. Az üzenete el lett küldve. - - src/app/+about/about-instance/contact-admin-modal.component.ts88 + src/app/+about/about-instance/contact-admin-modal.component.ts88 + You already sent this form recently Már nemrég elküldte ezt az űrlapot - - src/app/+about/about-instance/contact-admin-modal.component.ts94 + src/app/+about/about-instance/contact-admin-modal.component.ts94 + Account videos Fiók videói - - src/app/+accounts/accounts-routing.module.ts35 + src/app/+accounts/accounts-routing.module.ts35 + - ACCOUNTACCOUNT + ACCOUNT + FIÓK src/app/+accounts/accounts.component.html 8 - Account video channels Fiók videócsatornái - - src/app/+accounts/accounts-routing.module.ts26 - + src/app/+accounts/accounts-routing.module.ts26 + Display all videos (private, unlisted or not yet published) - Display all videos (private, unlisted or not yet published) - - - - - - - - src/app/shared/shared-video-miniature/video-filters-header.component.html125 - Remove this filterRemove this filter - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 - Sensitive contentSensitive content - - src/app/shared/shared-video-miniature/video-filters.model.ts115 - ScopeScope - - src/app/shared/shared-video-miniature/video-filters.model.ts122 - FederatedFederated - - src/app/shared/shared-video-miniature/video-filters.model.ts124 - LanguagesLanguages - - src/app/shared/shared-video-miniature/video-filters.model.ts132 - CategoriesCategories - - src/app/shared/shared-video-miniature/video-filters.model.ts141 - All videosAll videos - - src/app/shared/shared-video-miniature/video-filters.model.ts150 - BlurredBlurred - - src/app/shared/shared-video-miniature/video-filters.model.ts225 - hiddenhidden - - src/app/shared/shared-video-miniature/video-filters.model.ts231 - blurredblurred - - src/app/shared/shared-video-miniature/video-filters.model.ts232 - displayeddisplayed - - src/app/shared/shared-video-miniature/video-filters.model.ts234 + Minden videó megjelenítése (privát, nem listázott vagy még nem publikált) + src/app/shared/shared-video-miniature/video-filters-header.component.html125 + + + Remove this filter + Szűrő eltávolítása + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + + + Sensitive content + Érzékeny tartalom + src/app/shared/shared-video-miniature/video-filters.model.ts115 + + + Scope + Hatókör + src/app/shared/shared-video-miniature/video-filters.model.ts122 + + + Federated + Föderált + src/app/shared/shared-video-miniature/video-filters.model.ts124 + + + Languages + Nyelv + src/app/shared/shared-video-miniature/video-filters.model.ts132 + + + Categories + Kategóriák + src/app/shared/shared-video-miniature/video-filters.model.ts141 + + + All videos + Minden videó + src/app/shared/shared-video-miniature/video-filters.model.ts150 + + + Blurred + Elhomáyosítva + src/app/shared/shared-video-miniature/video-filters.model.ts225 + + + hidden + rejtett + src/app/shared/shared-video-miniature/video-filters.model.ts231 + + + blurred + elhomályosított + src/app/shared/shared-video-miniature/video-filters.model.ts232 + + + displayed + megjelenített + src/app/shared/shared-video-miniature/video-filters.model.ts234 + direct account followers közvetlen fiókkövető - - src/app/+accounts/accounts.component.ts152 + src/app/+accounts/accounts.component.ts152 + Report this account Fiók jelentése - - src/app/+accounts/accounts.component.ts196 + src/app/+accounts/accounts.component.ts196 + VIDEOS VIDEÓK @@ -6486,21 +6734,19 @@ channel with the same name ()! Username copied Felhasználónév lemásolva - - - src/app/+accounts/accounts.component.ts120src/app/+video-channels/video-channels.component.ts103 + src/app/+accounts/accounts.component.ts120 + src/app/+video-channels/video-channels.component.ts103 + 1 subscriber 1 feliratkozó - - src/app/+accounts/accounts.component.ts124 + src/app/+accounts/accounts.component.ts124 + subscribers feliratkozó - - src/app/+accounts/accounts.component.ts126 - - + src/app/+accounts/accounts.component.ts126 + Audio-only Csak hang @@ -6538,7 +6784,7 @@ channel with the same name ()! 1440p - 1440p + 1440p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts42 @@ -6550,8 +6796,10 @@ channel with the same name ()!Auto (via ffmpeg) Automatikus (ffmpeg által) src/app/+admin/config/shared/config.service.ts50 - - Followers of your instanceFollowers of your instance + + + Followers of your instance + A példány követői src/app/+admin/follows/followers-list/followers-list.component.html 3 @@ -6559,38 +6807,38 @@ channel with the same name ()! No limit - No limit + Nincs korlát src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts34 1 hour - 1 hour + 1 óra src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts35 3 hours - 3 hours + 3 óra src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts36 5 hours - 5 hours + 5 óra src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts37 10 hours - 10 hours + 10 óra src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts38 x264, targeting maximum device compatibility - x264, targeting maximum device compatibility + x264, a legjobb eszköz kompatibilitást megcélozva src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts55 src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.ts50 Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. - Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. + A szerver átkódolási és videó kiszolgálási kapacitását nem könnyű megbecsülni és nem lehetséges a PeerTube automatikus hangolása. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 9,10 @@ -6598,7 +6846,7 @@ channel with the same name ()! However, you may want to read our guidelines before tweaking the following values. - However, you may want to read our guidelines before tweaking the following values. + Érdemes lehet elolvasni az útmutatót, a következő értékek átállítása előtt. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 12,13 @@ -6606,7 +6854,7 @@ channel with the same name ()! Read guidelines - Read guidelines + Útmutató elolvasása src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 17,18 @@ -6614,7 +6862,7 @@ channel with the same name ()! Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. - Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. + A feltöltött videók feldolgozása, hogy azok bármely eszköz számára lejátszható formában legyenek kiszolgálva. Bár ez erőforrásigényes, de a PeerTube egy kritikus része, szóval gondosan járjon el. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 28,30 @@ -6622,15 +6870,17 @@ channel with the same name ()! threads - threads + szál src/app/+admin/config/edit-custom-config/edit-configuration.service.ts86 thread - thread + szál src/app/+admin/config/edit-custom-config/edit-configuration.service.ts87 - - HomepageHomepage + + + Homepage + Főoldal src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 7 @@ -6639,14 +6889,18 @@ channel with the same name ()!src/app/+admin/config/edit-custom-config/edit-homepage.component.html 13 - - InformationInformation + + + Information + Információk src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 15 - - BasicBasic + + + Basic + Alapvető src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 24 @@ -6655,9 +6909,11 @@ channel with the same name ()! Configuration updated. Beállítás frissítve. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 - INSTANCE HOMEPAGEINSTANCE HOMEPAGE + src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 + + + INSTANCE HOMEPAGE + PÉLDÁNY KEZDŐOLDAL src/app/+admin/config/edit-custom-config/edit-homepage.component.html 7 @@ -6665,9 +6921,9 @@ channel with the same name ()! You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below. - You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts101 + Bekapcsolta a regisztrációt: ezért automatikusan bekapcsolásra került az "Új videók automatikus visszatartása" lentebb a "Videók" beállításainál. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts101 + Edit custom configuration Egyéni beállítások szerkesztése @@ -6696,34 +6952,41 @@ channel with the same name ()! Domain is required. Tartomány szükséges. - - src/app/shared/form-validators/host-validators.ts92src/app/shared/form-validators/host-validators.ts101 - Hosts entered are invalid.Hosts entered are invalid. + src/app/shared/form-validators/host-validators.ts92 + src/app/shared/form-validators/host-validators.ts101 + + + Hosts entered are invalid. + A beírt kiszolgáló érvénytelen. src/app/shared/form-validators/host-validators.ts 93 - - Hosts entered contain duplicates.Hosts entered contain duplicates. + + + Hosts entered contain duplicates. + A beírt kiszolgálók közt több azonos is szerepel. src/app/shared/form-validators/host-validators.ts 94 - - Hosts or handles are invalid.Hosts or handles are invalid. + + + Hosts or handles are invalid. + A kiszolgálók vagy nevek érvénytelenek. src/app/shared/form-validators/host-validators.ts 102 - - Hosts or handles contain duplicates.Hosts or handles contain duplicates. + + + Hosts or handles contain duplicates. + A kiszolgálók vagy nevek közt több azonos is szerepel. src/app/shared/form-validators/host-validators.ts 103 - - Unlimited Korlátlan @@ -6742,42 +7005,42 @@ channel with the same name ()! 100MB - 100MB + 100 MB src/app/+admin/config/shared/config.service.ts24 src/app/+admin/config/shared/config.service.ts40 500MB - 500MB + 500 MB src/app/+admin/config/shared/config.service.ts25 src/app/+admin/config/shared/config.service.ts41 1GB - 1GB + 1 GB src/app/+admin/config/shared/config.service.ts26 5GB - 5GB + 5 GB src/app/+admin/config/shared/config.service.ts27 src/app/+admin/config/shared/config.service.ts43 20GB - 20GB + 20 GB src/app/+admin/config/shared/config.service.ts28 src/app/+admin/config/shared/config.service.ts45 50GB - 50GB + 50 GB src/app/+admin/config/shared/config.service.ts29 src/app/+admin/config/shared/config.service.ts46 100GB - 100GB + 100 GB src/app/+admin/config/shared/config.service.ts 30 @@ -6785,7 +7048,7 @@ channel with the same name ()! 200GB - 200GB + 200 GB src/app/+admin/config/shared/config.service.ts 31 @@ -6793,7 +7056,7 @@ channel with the same name ()! 500GB - 500GB + 500 GB src/app/+admin/config/shared/config.service.ts 32 @@ -6801,22 +7064,22 @@ channel with the same name ()! 10MB - 10MB + 10 MB src/app/+admin/config/shared/config.service.ts38 50MB - 50MB + 50 MB src/app/+admin/config/shared/config.service.ts39 2GB - 2GB + 2 GB src/app/+admin/config/shared/config.service.ts42 10GB - 10GB + 10 GB src/app/+admin/config/shared/config.service.ts 44 @@ -6883,8 +7146,10 @@ channel with the same name ()! eltávolítva a példány követőiből src/app/+admin/follows/followers-list/followers-list.component.ts81 - - FollowFollow + + + Follow + Követés src/app/+admin/follows/following-list/follow-modal.component.html 3 @@ -6897,8 +7162,10 @@ channel with the same name ()!src/app/+admin/follows/following-list/following-list.component.html 18 - - 1 host (without "http://"), account handle or channel handle per line1 host (without "http://"), account handle or channel handle per line + + + 1 host (without "http://"), account handle or channel handle per line + 1 kiszolgáló ("http://" nélkül), fiók név vagy csatorna név soronként src/app/+admin/follows/following-list/follow-modal.component.html 11 @@ -6909,14 +7176,17 @@ channel with the same name ()! nem érvényes - - src/app/shared/form-validators/host-validators.ts27src/app/shared/form-validators/host-validators.ts50 + src/app/shared/form-validators/host-validators.ts27 + src/app/shared/form-validators/host-validators.ts50 + Follow request(s) sent! Követési kérések elküldve! - - src/app/+admin/follows/following-list/follow-modal.component.ts63 - Your instance subscriptionsYour instance subscriptions + src/app/+admin/follows/following-list/follow-modal.component.ts63 + + + Your instance subscriptions + Az ön példány feliratkozásai src/app/+admin/follows/following-list/following-list.component.html 3 @@ -6925,8 +7195,8 @@ channel with the same name ()! Do you really want to unfollow ? Biztos, hogy megszünteti a(z) követését? - - src/app/+admin/follows/following-list/following-list.component.ts46 + src/app/+admin/follows/following-list/following-list.component.ts46 + Unfollow Követés megszüntetése @@ -6935,8 +7205,8 @@ channel with the same name ()! You are not following anymore. Többé már nem követi a(z) gépet. - - src/app/+admin/follows/following-list/following-list.component.ts54 + src/app/+admin/follows/following-list/following-list.component.ts54 + enabled engedélyezve @@ -6955,33 +7225,33 @@ channel with the same name ()! Used Használt - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Available Elérhető - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Do you really want to remove this video redundancy? Valóban el szeretné távolítani ezt a videoredundanciát? - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + Remove redundancy Redundancia eltávolítása - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + Video redundancies removed! Videoredundanciák eltávolítva! - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + Account unmuted by your instance. A(z) fiók némítását visszavonta az Ön példánya. - - src/app/shared/shared-moderation/account-blocklist.component.ts43 + src/app/shared/shared-moderation/account-blocklist.component.ts43 + Instance unmuted by your instance. A(z) példány némítását visszavonta az Ön példánya. @@ -6990,9 +7260,9 @@ channel with the same name ()! Instance muted. A példány némítva. - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + Instance muted by your instance. A(z) példány némítva az Ön példánya által. @@ -7026,9 +7296,9 @@ channel with the same name ()! Copyright Szerzői jog - - - src/app/shared/shared-abuse-list/abuse-details.component.ts23src/app/shared/shared-moderation/abuse.service.ts161 + src/app/shared/shared-abuse-list/abuse-details.component.ts23 + src/app/shared/shared-moderation/abuse.service.ts161 + Server rules Kiszolgáló szabályai @@ -7037,127 +7307,127 @@ channel with the same name ()! Thumbnails Indexképek - - - src/app/shared/shared-abuse-list/abuse-details.component.ts25src/app/shared/shared-moderation/abuse.service.ts176 + src/app/shared/shared-abuse-list/abuse-details.component.ts25 + src/app/shared/shared-moderation/abuse.service.ts176 + Internal actions Belső műveletek - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts56src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts56 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + Delete report Jelentés törlése - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + Actions for the flagged account Műveletek a megjelölt fiókhoz - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + Mark as accepted Megjelölés elfogadottként - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + Mark as rejected Megjelölés visszautasítottként - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + Add internal note Belső jegyzet hozzáadása - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + Actions for the video A videó műveletei - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts79src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts79 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + Block video Videó letiltása - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + Video blocked. Videó letiltva. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts357src/app/shared/shared-moderation/video-block.component.ts60 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts357 + src/app/shared/shared-moderation/video-block.component.ts60 + Unblock video Videó feloldása - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + Video unblocked. Video feloldva. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + Do you really want to delete this abuse report? Valóban törölni szeretné ezt a visszaélési jelentést? - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + Abuse deleted. Visszaélési jelentés törölve. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + Deleted comment Törölt megjegyzés - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + Messages with reporter Üzenetek a bejelentővel - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + Messages with moderators Üzenetek moderátorokkal - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + Update internal note Belső jegyzet frissítése - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + Switch video block to manual Videó letiltásának manuálisra állítása - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts61 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts61 + Video switched to manual block. A videó kézi letiltásra állítva. - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts67 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts67 + Do you really want to unblock this video? It will be available again in the videos list. Biztosan feloldja a videó tiltását? Újra elérhető lesz a videólistában. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts132src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts132 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + Unblock Feloldás - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts83src/app/+admin/moderation/video-block-list/video-block-list.component.ts134src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts83 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts134 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + Video unblocked. A videó feloldva. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts140src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts140 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + yes igen @@ -7173,25 +7443,25 @@ channel with the same name ()! You don't have plugins installed yet. Még nincsenek telepített bővítményei. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts86 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts86 + You don't have themes installed yet. Még nincsenek telepített témái. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts89 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts89 + Update to Frissítés erre: - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts97 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts97 + Do you really want to uninstall ? Valóban el szeretné távolítani a(z) bővítményt? - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110 + Uninstall Eltávolítás @@ -7202,30 +7472,30 @@ channel with the same name ()! eltávolítva. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts118 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts118 + This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes. This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts134 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts134 + Upgrade Upgrade - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts135 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts135 + Proceed upgrade Proceed upgrade - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts136 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts136 + updated. frissítve. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts150 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts150 + Jobs Feladatok @@ -7239,25 +7509,25 @@ channel with the same name ()! The plugin index is not available. Please retry later. A bővítményindex nem érhető el. Próbálja újra később. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts100 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts100 + Please only install plugins or themes you trust, since they can execute any code on your instance. Csak olyan bővítményeket vagy témákat telepítsen, amelyekben megbízik, mivel azok bármilyen kódot végrehajthatnak az Ön példányán. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts134 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts134 + Install ? Telepíti a(z) bővítményt? - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts135 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts135 + installed. telepítve. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts147 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts147 + Settings updated. Beállítások frissítve. @@ -7266,23 +7536,23 @@ channel with the same name ()! Plugins Bővítmények - - src/app/+admin/plugins/shared/plugin-api.service.ts31 + src/app/+admin/plugins/shared/plugin-api.service.ts31 + Themes Témák - - src/app/+admin/plugins/shared/plugin-api.service.ts35 + src/app/+admin/plugins/shared/plugin-api.service.ts35 + plugin bővítmény - - src/app/+admin/plugins/shared/plugin-api.service.ts43 + src/app/+admin/plugins/shared/plugin-api.service.ts43 + theme téma - - src/app/+admin/plugins/shared/plugin-api.service.ts46 + src/app/+admin/plugins/shared/plugin-api.service.ts46 + IP address IP address @@ -7408,9 +7678,9 @@ channel with the same name ()! Error Hiba - - - src/app/core/auth/auth.service.ts103src/app/core/notification/notifier.service.ts18 + src/app/core/auth/auth.service.ts103 + src/app/core/notification/notifier.service.ts18 + Standard logs Szabványos naplók @@ -7424,8 +7694,8 @@ channel with the same name ()! User created. felhasználó létrehozva. - - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts77 + Create user Felhasználó létrehozása @@ -7449,25 +7719,23 @@ channel with the same name ()! Update user password Felhasználó jelszavának frissítése - - src/app/+admin/users/user-edit/user-password.component.ts53 - - + src/app/+admin/users/user-edit/user-password.component.ts53 + User updated. felhasználó frissítve. - - src/app/+admin/users/user-edit/user-update.component.ts92 + src/app/+admin/users/user-edit/user-update.component.ts92 + Update user Felhasználó frissítése - - src/app/+admin/users/user-edit/user-update.component.ts111 + src/app/+admin/users/user-edit/user-update.component.ts111 + An email asking for password reset has been sent to . Egy jelszó-visszaállítást kérő e-mail lett küldve számára. - - src/app/+admin/users/user-edit/user-update.component.ts118 + src/app/+admin/users/user-edit/user-update.component.ts118 + Users list Felhasználók listája @@ -7481,21 +7749,19 @@ channel with the same name ()! Update a user Felhasználó frissítése - - src/app/+admin/users/users.routes.ts45 + src/app/+admin/users/users.routes.ts45 + Federation Föderáció src/app/+admin/admin.component.ts26 - - Videos will be deleted, comments will be tombstoned. A videók törölve lesznek, a hozzászólások el lesznek temetve. - - - src/app/+admin/users/user-list/user-list.component.ts82src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + src/app/+admin/users/user-list/user-list.component.ts82 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + Ban Kitiltás @@ -7505,35 +7771,41 @@ channel with the same name ()! User won't be able to login anymore, but videos and comments will be kept as is. A felhasználó nem lesz képes többé bejelentkezni, de a videók és a hozzászólások meg lesznek tartva, ahogy vannak. - - - src/app/+admin/users/user-list/user-list.component.ts88src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + src/app/+admin/users/user-list/user-list.component.ts88 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + Unban Kitiltás visszavonása - - - - src/app/+admin/users/user-list/user-list.component.ts93src/app/+admin/users/user-list/user-list.component.ts172src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + src/app/+admin/users/user-list/user-list.component.ts93 + src/app/+admin/users/user-list/user-list.component.ts172 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + Set Email as Verified E-mail beállítása ellenőrzöttre - - - src/app/+admin/users/user-list/user-list.component.ts100src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 - CreatedCreated + src/app/+admin/users/user-list/user-list.component.ts100 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 + + + Created + Created src/app/+admin/users/user-list/user-list.component.ts 115 - - Daily quotaDaily quota + + + Daily quota + Daily quota src/app/+admin/users/user-list/user-list.component.ts 120 - - Last loginLast login + + + Last login + Last login src/app/+admin/users/user-list/user-list.component.ts 122 @@ -7542,83 +7814,83 @@ channel with the same name ()! You cannot ban root. Nem tilthatja ki a rendszergazdát. - - - src/app/+admin/users/user-list/user-list.component.ts159src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + src/app/+admin/users/user-list/user-list.component.ts159 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + Do you really want to unban users? Valóban vissza szeretné vonni felhasználó kitiltását? - - src/app/+admin/users/user-list/user-list.component.ts172 + src/app/+admin/users/user-list/user-list.component.ts172 + users unbanned. felhasználó kitiltása visszavonva. - - src/app/+admin/users/user-list/user-list.component.ts178 + src/app/+admin/users/user-list/user-list.component.ts178 + You cannot delete root. Nem törölheti a rendszergazdát. - - - src/app/+admin/users/user-list/user-list.component.ts189src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + src/app/+admin/users/user-list/user-list.component.ts189 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + If you remove these users, you will not be able to create others with the same username! Ha eltávolítja ezeket a felhasználókat, akkor nem fog tudni másokat létrehozni ugyanezzel a felhasználónévvel! - - src/app/+admin/users/user-list/user-list.component.ts194 + src/app/+admin/users/user-list/user-list.component.ts194 + users deleted. felhasználó törölve. - - src/app/+admin/users/user-list/user-list.component.ts201 + src/app/+admin/users/user-list/user-list.component.ts201 + users email set as verified. felhasználó e-mail-címe ellenőrzöttre lett állítva. - - src/app/+admin/users/user-list/user-list.component.ts213 + src/app/+admin/users/user-list/user-list.component.ts213 + Account unmuted. A(z) fiók némítása visszavonva. - - - src/app/shared/shared-moderation/account-blocklist.component.ts42src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + src/app/shared/shared-moderation/account-blocklist.component.ts42 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + Instance unmuted. A(z) példány némítása visszavonva. - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 + Videos history is enabled Videók előzményei engedélyezve - - src/app/+my-library/my-history/my-history.component.ts114 + src/app/+my-library/my-history/my-history.component.ts114 + Videos history is disabled Videók előzményei letiltva - - src/app/+my-library/my-history/my-history.component.ts115 + src/app/+my-library/my-history/my-history.component.ts115 + Delete videos history Videók előzményeinek törlése - - src/app/+my-library/my-history/my-history.component.ts127 + src/app/+my-library/my-history/my-history.component.ts127 + Are you sure you want to delete all your videos history? Biztosan törölni szeretné az összes videója előzményét? - - src/app/+my-library/my-history/my-history.component.ts128 + src/app/+my-library/my-history/my-history.component.ts128 + Videos history deleted Videók előzményei törölve - - src/app/+my-library/my-history/my-history.component.ts136 + src/app/+my-library/my-history/my-history.component.ts136 + My watch history My watch history @@ -7635,8 +7907,8 @@ channel with the same name ()! Ownership accepted Tulajdonjog elfogadva - - src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts69 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts69 + Please check your emails to verify your new email. Nézze meg az e-mailjeit az új e-mailje ellenőrzéséhez. @@ -7659,24 +7931,24 @@ channel with the same name ()! You current password is invalid. A jelenlegi jelszava érvénytelen. - - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + Password updated. Jelszó frissítve. - - src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted. Biztosan törölni szeretné a fiókját? Ez törölni fogja az összes adatát, beleértve a csatornákat, a videókat és a hozzászólásokat is. A többi kiszolgálón és egyéb harmadik feleknél gyorsítótárazott tartalom törlése tovább tarthat. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + Type your username to confirm Írja be felhasználónevét a megerősítéshez - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + Delete your account Fiók törlése @@ -7685,19 +7957,19 @@ channel with the same name ()! Delete my account Fiókom törlése - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + Your account is deleted. A fiókja törölve. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + Interface settings updated. A felület beállításai frissítve. - - - src/app/shared/shared-user-settings/user-interface-settings.component.ts73src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + src/app/shared/shared-user-settings/user-interface-settings.component.ts73 + src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + New video from your subscriptions Új videó a feliratkozásaiból @@ -7787,13 +8059,13 @@ channel with the same name ()! Preferences saved Beállítások mentve - - src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + Profile updated. Profil frissítve. - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 + People can find you using @@ People can find you using @@ @@ -7805,72 +8077,71 @@ channel with the same name ()! Avatar changed. Profilkép megváltoztatva. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts44src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + avatar avatar - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 + src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 + Avatar deleted. Avatar deleted. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts61src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 + src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 + Unknown language Ismeretlen nyelv - - src/app/shared/shared-forms/select/select-languages.component.ts41 + src/app/shared/shared-forms/select/select-languages.component.ts41 + Too many languages are enabled. Please enable them all or stay below 20 enabled languages. Túl sok nyelv engedélyezett. Engedélyezze az összeset, vagy maradjon 20 engedélyezett nyelv alatt. - - src/app/shared/shared-user-settings/user-video-settings.component.ts76 + src/app/shared/shared-user-settings/user-video-settings.component.ts76 + Video settings updated. Videobeállítások frissítve. - - src/app/shared/shared-user-settings/user-video-settings.component.ts121 + src/app/shared/shared-user-settings/user-video-settings.component.ts121 + Display/Video settings updated. A megjelenítési és a videobeállítások frissítve. - - src/app/shared/shared-user-settings/user-video-settings.component.ts130 + src/app/shared/shared-user-settings/user-video-settings.component.ts130 + Video channel created. A(z) videócsatorna létrehozva. - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts66 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts66 + This name already exists on this instance. Ez a név már létezik ebben a példányban. - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts72 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts72 + Video channel updated. A(z) videocsatorna frissítve. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 + Banner changed. Banner changed. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 + banner banner - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 + Banner deleted. Banner deleted. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 - + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 + Video channel deleted. A(z) videócsatorna törölve. @@ -7879,8 +8150,8 @@ channel with the same name ()! Views for the day A nap megtekintései - - src/app/+my-library/+my-video-channels/my-video-channels.component.ts88 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts88 + Update video channel Videócsatorna frissítése @@ -7906,8 +8177,10 @@ channel with the same name ()!src/app/+remote-interaction/remote-interaction.component.ts 48 - - Reset passwordReset password + + + Reset password + Reset password src/app/+reset-password/reset-password-routing.module.ts 11 @@ -7924,8 +8197,8 @@ channel with the same name ()! Playlist created. A(z) lejátszási lista létrehozva. - - src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + Create Létrehozás @@ -7935,9 +8208,9 @@ channel with the same name ()! Update playlist Lejátszólista frissítése - - - src/app/+my-library/my-library-routing.module.ts66src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47 + src/app/+my-library/my-library-routing.module.ts66 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47 + Notifications Értesítések @@ -7946,7 +8219,7 @@ channel with the same name ()! Applications - Applications + Alkalmazások src/app/+my-account/my-account.component.ts60 src/app/+my-account/my-account-routing.module.ts127 @@ -7958,15 +8231,15 @@ channel with the same name ()! Playlist updated. A(z) lejátszási lista frissítve. - - src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + Do you really want to delete ? Valóban törölni szeretné a(z) lejátszási listát? - - - - src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34src/app/+my-library/my-videos/my-videos.component.ts143 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34 + src/app/+my-library/my-videos/my-videos.component.ts143 + Change ownership Change ownership @@ -7985,20 +8258,21 @@ channel with the same name ()! Ownership changes Ownership changes - - src/app/+my-library/my-library-routing.module.ts107src/app/+my-library/my-videos/my-videos.component.html16 + src/app/+my-library/my-library-routing.module.ts107 + src/app/+my-library/my-videos/my-videos.component.html16 + Do you really want to delete videos? Valóban törölni szeretne videót? - - src/app/+my-library/my-videos/my-videos.component.ts116 + src/app/+my-library/my-videos/my-videos.component.ts116 + videos deleted. videó törölve. - - src/app/+my-library/my-videos/my-videos.component.ts133 + src/app/+my-library/my-videos/my-videos.component.ts133 + Do you really want to delete ? Valóban törölni szeretné a(z) @@ -8012,15 +8286,17 @@ channel with the same name ()! Video deleted. A(z) videó törölve. - - - src/app/+my-library/my-videos/my-videos.component.ts151src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + src/app/+my-library/my-videos/my-videos.component.ts151 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + Ownership change request sent. Tulajdonjog-változtatási kérelem elküldve. - - src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 - Sort bySort by + src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 + + + Sort by + Sort by src/app/+my-library/my-videos/my-videos.component.html 26 @@ -8049,8 +8325,8 @@ channel with the same name ()! My abuse reports Visszaélési jelentések - - src/app/+my-account/my-account-routing.module.ts117 + src/app/+my-account/my-account-routing.module.ts117 + Ownership changes Tulajdonjog-változtatások @@ -8059,13 +8335,13 @@ channel with the same name ()! My video history My video history - - src/app/+my-library/my-library-routing.module.ts117 + src/app/+my-library/my-library-routing.module.ts117 + Channels Channels - - src/app/+my-library/my-library.component.ts45 + src/app/+my-library/my-library.component.ts45 + Videos Videos @@ -8079,47 +8355,46 @@ channel with the same name ()! max size legnagyobb méret - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Maximize editor - - src/app/shared/shared-forms/markdown-textarea.component.ts49 + src/app/shared/shared-forms/markdown-textarea.component.ts49 + Exit maximized editor Exit maximized editor - - src/app/shared/shared-forms/markdown-textarea.component.ts50 + src/app/shared/shared-forms/markdown-textarea.component.ts50 + Now please check your emails to verify your account and complete signup. Most nézze meg az e-mailjeit a fiókja ellenőrzéséhez és a regisztráció befejezéséhez. - - src/app/+signup/+register/register.component.ts129 + src/app/+signup/+register/register.component.ts129 + You are now logged in as ! Most néven van bejelentkezve. - - src/app/+signup/+register/register.component.ts137 + src/app/+signup/+register/register.component.ts137 + An email with verification link will be sent to . Egy ellenőrző hivatkozást tartalmazó e-mail lesz küldve erre a címre: . - - src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 + Unable to find user id or verification string. Nem található a felhasználó-azonosító vagy az ellenőrző karakterlánc. src/app/+reset-password/reset-password.component.ts38 src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts33 - Subscribe to the account Feliratkozás a fiókra - - - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts713 + src/app/+video-channels/video-channels.component.ts71 + src/app/+videos/+video-watch/video-watch.component.ts713 + PLAYLISTS PLAYLISTS @@ -8131,99 +8406,110 @@ channel with the same name ()! Focus the search bar Fókuszálás a keresősávra - - src/app/app.component.ts270 + src/app/app.component.ts270 + Toggle the left menu A bal oldali menü ki- és bekapcsolása - - src/app/app.component.ts275 + src/app/app.component.ts275 + Go to the discover videos page Ugrás a videók felfedezése oldalra - - src/app/app.component.ts280 + src/app/app.component.ts280 + Go to the trending videos page Ugrás a felkapott videók oldalra - - src/app/app.component.ts285 + src/app/app.component.ts285 + Go to the recently added videos page Ugrás a legutóbb hozzáadott videók oldalára - - src/app/app.component.ts290 + src/app/app.component.ts290 + Go to the local videos page Ugrás a helyi videók oldalára - - src/app/app.component.ts295 + src/app/app.component.ts295 + Go to the videos upload page Ugrás a videók feltöltési oldalára - - src/app/app.component.ts300 + src/app/app.component.ts300 + Go to my subscriptions Ugrás a feliratkozásaimhoz - - src/app/core/auth/auth.service.ts63 + src/app/core/auth/auth.service.ts63 + Go to my videos Ugrás a videóimhoz - - src/app/core/auth/auth.service.ts67 + src/app/core/auth/auth.service.ts67 + Go to my imports Ugrás az importálásaimhoz - - src/app/core/auth/auth.service.ts71 + src/app/core/auth/auth.service.ts71 + Go to my channels Ugrás a csatornáimhoz - - src/app/core/auth/auth.service.ts75 + src/app/core/auth/auth.service.ts75 + - Cannot retrieve OAuth Client credentials: . + Cannot retrieve OAuth Client credentials: . Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section. Az OAuth kliens hitelesítő adatai nem kérhetők le: . Győződjön meg róla, hogy helyesen állította be a PeerTube-ot (konfiguráció / könyvtár), különösképpen a „webserver” szakaszban. - - src/app/core/auth/auth.service.ts98 + src/app/core/auth/auth.service.ts98 + You need to reconnect. Újra kell csatlakoznia. - - src/app/core/auth/auth.service.ts221 + src/app/core/auth/auth.service.ts221 + Keyboard Shortcuts: Gyorsbillentyűk: src/app/core/hotkeys/hotkeys.component.ts11 - - My historyMy history + + + My history + My history src/app/core/menu/menu.service.ts 98 - - In my libraryIn my library + + + In my library + In my library src/app/core/menu/menu.service.ts 104 - - TrendingTrending - - src/app/+videos/video-list/videos-list-common-page.component.ts201src/app/core/menu/menu.service.ts131 - ON ON + + + Trending + Trending + src/app/+videos/video-list/videos-list-common-page.component.ts201 + src/app/core/menu/menu.service.ts131 + + + ON + ON src/app/core/menu/menu.service.ts 150 - - HomeHome - - - src/app/core/menu/menu.service.ts115src/app/core/menu/menu.service.ts116 + + + Home + Home + src/app/core/menu/menu.service.ts115 + src/app/core/menu/menu.service.ts116 + Success Sikerült @@ -8232,105 +8518,107 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Incorrect username or password. Helytelen felhasználónév vagy jelszó. - - src/app/+login/login.component.ts163 + src/app/+login/login.component.ts163 + Your account is blocked. A fiókja le van tiltva. - - src/app/+login/login.component.ts164 + src/app/+login/login.component.ts164 + any language bármely nyelv - - src/app/menu/menu.component.ts266 - + src/app/menu/menu.component.ts266 + hide elrejtés - - src/app/menu/menu.component.ts301 + src/app/menu/menu.component.ts301 + blur homályosítás - - src/app/menu/menu.component.ts305 + src/app/menu/menu.component.ts305 + display megjelenítés - - src/app/menu/menu.component.ts309 + src/app/menu/menu.component.ts309 + Unknown Ismeretlen - - src/app/menu/menu.component.ts196 + src/app/menu/menu.component.ts196 + Your password has been successfully reset! A jelszava sikeresen vissza lett állítva! src/app/+reset-password/reset-password.component.ts47 - Today Ma - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts123 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts123 + Yesterday Tegnap - - src/app/shared/shared-video-miniature/videos-list.component.ts124 + src/app/shared/shared-video-miniature/videos-list.component.ts124 + This week This week - - src/app/shared/shared-video-miniature/videos-list.component.ts125 + src/app/shared/shared-video-miniature/videos-list.component.ts125 + This month This month - - src/app/shared/shared-video-miniature/videos-list.component.ts126 + src/app/shared/shared-video-miniature/videos-list.component.ts126 + Last month Múlt hónap - - src/app/shared/shared-video-miniature/videos-list.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts127 + Older Régebbiek - - src/app/shared/shared-video-miniature/videos-list.component.ts128 + src/app/shared/shared-video-miniature/videos-list.component.ts128 + Cannot load more videos. Try again later. Több videó nem tölthető be. Próbálja újra később. - - src/app/shared/shared-video-miniature/videos-list.component.ts225src/app/shared/shared-video-miniature/videos-selection.component.ts127 - + src/app/shared/shared-video-miniature/videos-list.component.ts225 + src/app/shared/shared-video-miniature/videos-selection.component.ts127 + Last 7 days Elmúlt 7 nap - - src/app/+search/search-filters.component.ts45 + src/app/+search/search-filters.component.ts45 + Last 30 days Elmúlt 30 nap - - src/app/+search/search-filters.component.ts49 + src/app/+search/search-filters.component.ts49 + Last 365 days Elmúlt 365 nap - - src/app/+search/search-filters.component.ts53 - VOD videosVOD videos + src/app/+search/search-filters.component.ts53 + + + VOD videos + VOD videók src/app/+search/search-filters.component.ts 60 - - Live videosLive videos + + + Live videos + Élő közvetítések src/app/+search/search-filters.component.ts 64 @@ -8339,47 +8627,48 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Short (< 4 min) Rövid (< 4 perc) - - src/app/+search/search-filters.component.ts71 + src/app/+search/search-filters.component.ts71 + Medium (4-10 min) Közepes (4-10 perc) - - src/app/+search/search-filters.component.ts75 + src/app/+search/search-filters.component.ts75 + Long (> 10 min) Hosszú (> 10 perc) - - src/app/+search/search-filters.component.ts79 + src/app/+search/search-filters.component.ts79 + Relevance Fontosság - - src/app/+search/search-filters.component.ts86 + src/app/+search/search-filters.component.ts86 + Publish date Közzétételi dátum - - src/app/+search/search-filters.component.ts90 + src/app/+search/search-filters.component.ts90 + Views Megtekintések - - - src/app/+search/search-filters.component.ts94 + src/app/+search/search-filters.component.ts94 + Search index is unavailable. Retrying with instance results instead. A keresőindex nem érhető el. Újrapróbálkozás a példány találataival. - - src/app/+search/search.component.ts163 + src/app/+search/search.component.ts163 + Search error Keresési hiba - - src/app/+search/search.component.ts164 - PeerTube instance host filter is invalidPeerTube instance host filter is invalid - - src/app/+search/search.component.ts332 + src/app/+search/search.component.ts164 + + + PeerTube instance host filter is invalid + PeerTube instance host filter is invalid + src/app/+search/search.component.ts332 + Search Keresés @@ -8401,9 +8690,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular évvel ezelőtt - - src/app/shared/shared-main/angular/from-now.pipe.ts11 - 1 year ago1 year ago + src/app/shared/shared-main/angular/from-now.pipe.ts11 + + + 1 year ago + 1 year ago src/app/shared/shared-main/angular/from-now.pipe.ts 12 @@ -8413,15 +8704,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 17 - months ago hónappal ezelőtt - - src/app/shared/shared-main/angular/from-now.pipe.ts18 - 1 month ago1 month ago + src/app/shared/shared-main/angular/from-now.pipe.ts18 + + + 1 month ago + 1 month ago src/app/shared/shared-main/angular/from-now.pipe.ts 19 @@ -8431,61 +8723,63 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 24 - weeks ago héttel ezelőtt - - src/app/shared/shared-main/angular/from-now.pipe.ts25 - 1 week ago1 week ago + src/app/shared/shared-main/angular/from-now.pipe.ts25 + + + 1 week ago + 1 week ago src/app/shared/shared-main/angular/from-now.pipe.ts 26 - days ago nappal ezelőtt - - src/app/shared/shared-main/angular/from-now.pipe.ts29 - 1 day ago1 day ago + src/app/shared/shared-main/angular/from-now.pipe.ts29 + + + 1 day ago + 1 day ago src/app/shared/shared-main/angular/from-now.pipe.ts 30 - hours ago órával ezelőtt - - src/app/shared/shared-main/angular/from-now.pipe.ts33 - 1 hour ago1 hour ago + src/app/shared/shared-main/angular/from-now.pipe.ts33 + + + 1 hour ago + 1 hour ago src/app/shared/shared-main/angular/from-now.pipe.ts 34 - min ago perccel ezelőtt - - src/app/shared/shared-main/angular/from-now.pipe.ts37 + src/app/shared/shared-main/angular/from-now.pipe.ts37 + just now épp most - - src/app/shared/shared-main/angular/from-now.pipe.ts39 + src/app/shared/shared-main/angular/from-now.pipe.ts39 + sec @@ -8570,20 +8864,26 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Signup limit must be a number. A regisztrációkorlátnak számnak kell lennie. src/app/shared/form-validators/custom-config-validators.ts48 - - Signup minimum age is required.Signup minimum age is required. + + + Signup minimum age is required. + Signup minimum age is required. src/app/shared/form-validators/custom-config-validators.ts 55 - - Signup minimum age must be greater than 1.Signup minimum age must be greater than 1. + + + Signup minimum age must be greater than 1. + Signup minimum age must be greater than 1. src/app/shared/form-validators/custom-config-validators.ts 56 - - Signup minimum age must be a number.Signup minimum age must be a number. + + + Signup minimum age must be a number. + Signup minimum age must be a number. src/app/shared/form-validators/custom-config-validators.ts 57 @@ -8592,95 +8892,95 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Admin email is required. A rendszergazda e-mail-címének megadása kötelező. - - src/app/shared/form-validators/custom-config-validators.ts64 + src/app/shared/form-validators/custom-config-validators.ts64 + Admin email must be valid. A rendszergazda e-mail-címének érvényesnek kell lennie. - - src/app/shared/form-validators/custom-config-validators.ts65 + src/app/shared/form-validators/custom-config-validators.ts65 + Transcoding threads is required. Az átkódolási szálak megadása kötelező. - - src/app/shared/form-validators/custom-config-validators.ts72 + src/app/shared/form-validators/custom-config-validators.ts72 + Transcoding threads must be greater or equal to 0. Az átkódolási szálaknak legalább 0-nak kell lenniük. - - src/app/shared/form-validators/custom-config-validators.ts73 + src/app/shared/form-validators/custom-config-validators.ts73 + Max live duration is required. Max live duration is required. - - src/app/shared/form-validators/custom-config-validators.ts80 + src/app/shared/form-validators/custom-config-validators.ts80 + Max live duration should be greater or equal to -1. Max live duration should be greater or equal to -1. - - src/app/shared/form-validators/custom-config-validators.ts81 + src/app/shared/form-validators/custom-config-validators.ts81 + Max instance lives is required. Max instance lives is required. - - src/app/shared/form-validators/custom-config-validators.ts88 + src/app/shared/form-validators/custom-config-validators.ts88 + Max instance lives should be greater or equal to -1. Max instance lives should be greater or equal to -1. - - src/app/shared/form-validators/custom-config-validators.ts89 + src/app/shared/form-validators/custom-config-validators.ts89 + Max user lives is required. Max user lives is required. - - src/app/shared/form-validators/custom-config-validators.ts96 + src/app/shared/form-validators/custom-config-validators.ts96 + Max user lives should be greater or equal to -1. Max user lives should be greater or equal to -1. - - src/app/shared/form-validators/custom-config-validators.ts97 + src/app/shared/form-validators/custom-config-validators.ts97 + Concurrency is required. Concurrency is required. - - src/app/shared/form-validators/custom-config-validators.ts104 + src/app/shared/form-validators/custom-config-validators.ts104 + Concurrency should be greater or equal to 1. Concurrency should be greater or equal to 1. - - src/app/shared/form-validators/custom-config-validators.ts105 + src/app/shared/form-validators/custom-config-validators.ts105 + Index URL should be a URL Az index URL-nek URL-nek kell lennie - - src/app/shared/form-validators/custom-config-validators.ts112 + src/app/shared/form-validators/custom-config-validators.ts112 + Search index URL should be a URL A keresőindex URL egy URL kell legyen - - src/app/shared/form-validators/custom-config-validators.ts119 + src/app/shared/form-validators/custom-config-validators.ts119 + Email is required. Az e-mail-cím megadása kötelező. - - - src/app/shared/form-validators/instance-validators.ts7src/app/shared/form-validators/user-validators.ts39 + src/app/shared/form-validators/instance-validators.ts7 + src/app/shared/form-validators/user-validators.ts39 + Email must be valid. Az e-mail-címnek érvényesnek kell lennie. - - - src/app/shared/form-validators/instance-validators.ts8src/app/shared/form-validators/user-validators.ts40 + src/app/shared/form-validators/instance-validators.ts8 + src/app/shared/form-validators/user-validators.ts40 + Handle is required. Handle is required. - - src/app/shared/form-validators/user-validators.ts50 + src/app/shared/form-validators/user-validators.ts50 + Handle must be valid (eg. chocobozzz@example.com). Handle must be valid (eg. chocobozzz@example.com). - - src/app/shared/form-validators/user-validators.ts51 + src/app/shared/form-validators/user-validators.ts51 + Your name is required. Az Ön nevének megadása kötelező. @@ -8729,16 +9029,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Username is required. A felhasználónév megadása kötelező. - - - src/app/shared/form-validators/login-validators.ts9src/app/shared/form-validators/user-validators.ts14 + src/app/shared/form-validators/login-validators.ts9 + src/app/shared/form-validators/user-validators.ts14 + Password is required. A jelszó megadása kötelező. - - - - src/app/shared/form-validators/login-validators.ts18src/app/shared/form-validators/user-validators.ts60src/app/shared/form-validators/user-validators.ts71 + src/app/shared/form-validators/login-validators.ts18 + src/app/shared/form-validators/user-validators.ts60 + src/app/shared/form-validators/user-validators.ts71 + Confirmation of the password is required. A jelszó megerősítése kötelező. @@ -8747,129 +9047,129 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Username must be at least 1 character long. A felhasználónévnek legalább 1 karakter hosszúságúnak kell lennie. - - src/app/shared/form-validators/user-validators.ts15 + src/app/shared/form-validators/user-validators.ts15 + Username cannot be more than 50 characters long. A felhasználónév nem lehet hosszabb 50 karakternél. - - src/app/shared/form-validators/user-validators.ts16 + src/app/shared/form-validators/user-validators.ts16 + Username should be lowercase alphanumeric; dots and underscores are allowed. A felhasználónévnek kisbetűkből és számokból kell állnia. A pont és az aláhúzás is engedélyezett. - - src/app/shared/form-validators/user-validators.ts17 + src/app/shared/form-validators/user-validators.ts17 + Channel name is required. A csatornanév kötelező. - - src/app/shared/form-validators/user-validators.ts29 + src/app/shared/form-validators/user-validators.ts29 + Channel name must be at least 1 character long. A csatornanévnek legalább 1 karakteresnek kell lennie. - - src/app/shared/form-validators/user-validators.ts30 + src/app/shared/form-validators/user-validators.ts30 + Channel name cannot be more than 50 characters long. A csatornanévnek legfeljebb 50 karakteresnek kell lennie. - - src/app/shared/form-validators/user-validators.ts31 + src/app/shared/form-validators/user-validators.ts31 + Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores. Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores. - - src/app/shared/form-validators/user-validators.ts32 + src/app/shared/form-validators/user-validators.ts32 + Password must be at least 6 characters long. A jelszónak legalább 6 karakter hosszúságúnak kell lennie. - - - src/app/shared/form-validators/user-validators.ts72src/app/shared/form-validators/user-validators.ts83 + src/app/shared/form-validators/user-validators.ts72 + src/app/shared/form-validators/user-validators.ts83 + Password cannot be more than 255 characters long. A jelszó nem lehet hosszabb 255 karakternél. - - - src/app/shared/form-validators/user-validators.ts73src/app/shared/form-validators/user-validators.ts84 + src/app/shared/form-validators/user-validators.ts73 + src/app/shared/form-validators/user-validators.ts84 + The new password and the confirmed password do not correspond. Az új jelszó és a megerősített jelszó nem egyezik. - - src/app/shared/form-validators/user-validators.ts91 + src/app/shared/form-validators/user-validators.ts91 + Video quota is required. A videokvóta megadása kötelező. - - src/app/shared/form-validators/user-validators.ts98 + src/app/shared/form-validators/user-validators.ts98 + Quota must be greater than -1. A kvótának nagyobbnak kell lennie −1-nél. - - src/app/shared/form-validators/user-validators.ts99 + src/app/shared/form-validators/user-validators.ts99 + Daily upload limit is required. A napi feltöltési korlát megadása kötelező. - - src/app/shared/form-validators/user-validators.ts105 + src/app/shared/form-validators/user-validators.ts105 + Daily upload limit must be greater than -1. A napi feltöltési korlátnak nagyobbnak kell lennie −1-nél. - - src/app/shared/form-validators/user-validators.ts106 + src/app/shared/form-validators/user-validators.ts106 + User role is required. A felhasználói szerep megadása kötelező. - - src/app/shared/form-validators/user-validators.ts113 + src/app/shared/form-validators/user-validators.ts113 + Description must be at least 3 characters long. A leírásnak legalább 3 karakter hosszúságúnak kell lennie. - - - - src/app/shared/form-validators/user-validators.ts125src/app/shared/form-validators/video-channel-validators.ts36src/app/shared/form-validators/video-playlist-validators.ts33 + src/app/shared/form-validators/user-validators.ts125 + src/app/shared/form-validators/video-channel-validators.ts36 + src/app/shared/form-validators/video-playlist-validators.ts33 + Description cannot be more than 1000 characters long. A leírás nem lehet hosszabb 1000 karakternél. - - - - src/app/shared/form-validators/user-validators.ts126src/app/shared/form-validators/video-channel-validators.ts37src/app/shared/form-validators/video-playlist-validators.ts34 + src/app/shared/form-validators/user-validators.ts126 + src/app/shared/form-validators/video-channel-validators.ts37 + src/app/shared/form-validators/video-playlist-validators.ts34 + You must agree with the instance terms in order to register on it. El kell fogadnia a példány használati feltételeit, hogy regisztrálni tudjon rá. - - src/app/shared/form-validators/user-validators.ts133 + src/app/shared/form-validators/user-validators.ts133 + Ban reason must be at least 3 characters long. A kitiltás indokának legalább 3 karakter hosszúságúnak kell lennie. - - src/app/shared/form-validators/user-validators.ts143 + src/app/shared/form-validators/user-validators.ts143 + Ban reason cannot be more than 250 characters long. A kitiltás indoka nem lehet hosszabb 250 karakternél. - - src/app/shared/form-validators/user-validators.ts144 + src/app/shared/form-validators/user-validators.ts144 + Display name is required. A megjelenített név megadása kötelező. - - - - src/app/shared/form-validators/user-validators.ts155src/app/shared/form-validators/video-channel-validators.ts24src/app/shared/form-validators/video-playlist-validators.ts12 + src/app/shared/form-validators/user-validators.ts155 + src/app/shared/form-validators/video-channel-validators.ts24 + src/app/shared/form-validators/video-playlist-validators.ts12 + Display name must be at least 1 character long. A megjelenített névnek legalább 1 karakter hosszúságúnak kell lennie. - - - - src/app/shared/form-validators/user-validators.ts156src/app/shared/form-validators/video-channel-validators.ts25src/app/shared/form-validators/video-playlist-validators.ts13 + src/app/shared/form-validators/user-validators.ts156 + src/app/shared/form-validators/video-channel-validators.ts25 + src/app/shared/form-validators/video-playlist-validators.ts13 + Display name cannot be more than 50 characters long. A megjelenített név nem lehet hosszabb 50 karakternél. - - - src/app/shared/form-validators/user-validators.ts157src/app/shared/form-validators/video-channel-validators.ts26 + src/app/shared/form-validators/user-validators.ts157 + src/app/shared/form-validators/video-channel-validators.ts26 + Report reason is required. A jelentés indokának megadása kötelező. @@ -8953,33 +9253,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Name is required. A név megadása kötelező. - - src/app/shared/form-validators/video-channel-validators.ts10 + src/app/shared/form-validators/video-channel-validators.ts10 + Name must be at least 1 character long. A névnek legalább 1 karakter hosszúságúnak kell lennie. - - src/app/shared/form-validators/video-channel-validators.ts11 + src/app/shared/form-validators/video-channel-validators.ts11 + Name cannot be more than 50 characters long. A név nem lehet hosszabb 50 karakternél. - - src/app/shared/form-validators/video-channel-validators.ts12 + src/app/shared/form-validators/video-channel-validators.ts12 + Name should be lowercase alphanumeric; dots and underscores are allowed. A névnek kisbetűkből és számokból kell állnia. A pont és az aláhúzás is engedélyezett. - - src/app/shared/form-validators/video-channel-validators.ts13 + src/app/shared/form-validators/video-channel-validators.ts13 + Support text must be at least 3 characters long. A támogatási szövegnek legalább 3 karakter hosszúságúnak kell lennie. - - src/app/shared/form-validators/video-channel-validators.ts47 + src/app/shared/form-validators/video-channel-validators.ts47 + Support text cannot be more than 1000 characters long A támogatási szöveg nem lehet hosszabb 1000 karakternél - - src/app/shared/form-validators/video-channel-validators.ts48 + src/app/shared/form-validators/video-channel-validators.ts48 + See the documentation to learn how to use the PeerTube live streaming feature. See the documentation to learn how to use the PeerTube live streaming feature. @@ -9145,14 +9445,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular PeerTube cannot handle this kind of file. Accepted extensions are }. A PeerTube nem tudja kezelni az ilyen fájlokat. A támogatott kiterjesztések: }. src/app/shared/shared-forms/reactive-file.component.ts56 - - All categoriesAll categories + + + All categories + All categories src/app/shared/shared-forms/select/select-categories.component.ts 24 - - You can't select more than itemsYou can't select more than items + + + You can't select more than items + You can't select more than items src/app/shared/shared-forms/select/select-checkbox-all.component.ts 81 @@ -9161,8 +9465,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Add a new option Új lehetőség hozzáadása - - src/app/shared/shared-forms/select/select-checkbox.component.ts27 + src/app/shared/shared-forms/select/select-checkbox.component.ts27 + Custom value... Custom value... @@ -9436,77 +9740,78 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Instance languages Példány nyelvei - - src/app/+videos/+video-edit/shared/video-edit.component.ts179 + src/app/+videos/+video-edit/shared/video-edit.component.ts179 + All languages Összes nyelv - - - src/app/+videos/+video-edit/shared/video-edit.component.ts180src/app/shared/shared-forms/select/select-languages.component.ts25 + src/app/+videos/+video-edit/shared/video-edit.component.ts180 + src/app/shared/shared-forms/select/select-languages.component.ts25 + Hidden Rejtett - - src/app/shared/shared-instance/instance-features-table.component.ts53 + src/app/shared/shared-instance/instance-features-table.component.ts53 + Blurred with confirmation request Elhomályosítva megerősítő kéréssel - - src/app/shared/shared-instance/instance-features-table.component.ts54 + src/app/shared/shared-instance/instance-features-table.component.ts54 + Displayed Megjelenített - - src/app/shared/shared-instance/instance-features-table.component.ts55src/app/shared/shared-video-miniature/video-filters.model.ts227 + src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-video-miniature/video-filters.model.ts227 + ~ 1 minute ~ 1 perc - - src/app/shared/shared-instance/instance-features-table.component.ts74 + src/app/shared/shared-instance/instance-features-table.component.ts74 + ~ minutes ~ perc - - src/app/shared/shared-instance/instance-features-table.component.ts76 + src/app/shared/shared-instance/instance-features-table.component.ts76 + of full HD videos teljes HD videó - - src/app/shared/shared-instance/instance-features-table.component.ts92 + src/app/shared/shared-instance/instance-features-table.component.ts92 + of HD videos HD videó - - src/app/shared/shared-instance/instance-features-table.component.ts93 + src/app/shared/shared-instance/instance-features-table.component.ts93 + of average quality videos átlagos minőségű videó - - src/app/shared/shared-instance/instance-features-table.component.ts94 + src/app/shared/shared-instance/instance-features-table.component.ts94 + (channel page) (csatornaoldal) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (fiókoldal) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Nyomaték @@ -9535,8 +9840,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Close search Close search - - src/app/shared/shared-main/misc/simple-search-input.component.html19 + src/app/shared/shared-main/misc/simple-search-input.component.html19 + users banned. @@ -9552,34 +9857,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to unban ? Valóban vissza szeretné vonni kitiltását? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + User unbanned. felhasználó kitiltása visszavonva. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + If you remove this user, you will not be able to create another with the same username! Ha eltávolítja ezt a felhasználót, akkor nem fog tudni másikat létrehozni ugyanezzel a felhasználónévvel! - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + User deleted. felhasználó törölve. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + User email set as verified felhasználó e-mail-címe ellenőrzöttre lett állítva - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + Account muted. A(z) fiók némítva. - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + Instance muted. A(z) @@ -9593,19 +9898,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account muted by the instance. A(z) fiókot némította a példány. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts446src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts446 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + Mute server Kiszolgáló némítása - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + Server muted by the instance. A(z) kiszolgálót némította a példány. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + Add a message to communicate with the reporter Üzenet hozzáadása a bejelentővel történő kommunikációhoz @@ -9619,158 +9924,158 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. A(z) fiók némítását visszavonta a példány. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + Instance muted by the instance. A(z) példányt némította a példány. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + Instance unmuted by the instance. A(z) példány némítását visszavonta a példány. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + Are you sure you want to remove all the comments of this account? Biztosan törölni szeretné a fiók összes hozzászólását? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + Delete account comments Fiók hozzászólásainak törlése - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + Will remove comments of this account (may take several minutes). A fiók hozzászólásai törlésre kerülnek (több percbe telhet). - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + Edit user Felhasználó szerkesztése - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + Change quota, role, and more. Kvóta, szerep és egyebek megváltoztatása. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + Delete user Felhasználó törlése - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + Unban user Felhasználó kitiltásának visszavonása - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + Allow the user to login and create videos/comments again Lehetővé tétel a felhasználó számára, hogy újra bejelentkezzen és videókat vagy hozzászólásokat hozzon létre - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + Mute this account A fiók némítása - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + Hide any content from that user from you. Hide any content from that user from you. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + Unmute this account A fiók némításának visszavonása - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + Show back content from that user for you. A felhasználótól származó tartalom újra megjelenítése az Ön számára. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + Mute the instance A példány némítása - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + Hide any content from that instance for you. A példányról származó összes tartalom elrejtése az Ön számára. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + Unmute the instance A példány némításának visszavonása - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + Show back content from that instance for you. A példányról származó tartalom újra megjelenítése az Ön számára. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + Remove comments from your videos Hozzászólások törlése a videóiról - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + Remove comments made by this account on your videos. Remove comments made by this account on your videos. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + Mute this account by your instance A fiók némítása az Ön példánya által - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + Hide any content from that user from you, your instance and its users. Hide any content from that user from you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + Unmute this account by your instance A fiók a némításának visszavonása az Ön példánya által - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + Show this user's content to the users of this instance again. Show this user's content to the users of this instance again. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + Mute the instance by your instance A példány a némítása az Ön példánya által - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + Hide any content from that instance from you, your instance and its users. Hide any content from that instance from you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + Unmute the instance by your instance A példány a némításának visszavonása az Ön példánya által - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + Show back content from that instance for you, your instance and its users. A példányról származó tartalom újra megjelenítése az Ön, a példánya és annak felhasználói számára. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + Remove comments from your instance Hozzászólások törlése a példányáról - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + Remove comments made by this account from your instance. Remove comments made by this account from your instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + Violent or repulsive Erőszakos vagy visszataszító @@ -9799,38 +10104,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes. Marketinget, spamet, szándékosan csaló híreket vagy egyéb félrevezető indexképet/szöveget/címkéket tartalmaz. Kérem biztosítson megbízható forrásokat az álhírek jelentéséhez. - - src/app/shared/shared-moderation/abuse.service.ts151 + src/app/shared/shared-moderation/abuse.service.ts151 + Privacy breach or doxxing Adatvédelem megkerülése vagy adatok kiszivárogtatása - - src/app/shared/shared-moderation/abuse.service.ts155 + src/app/shared/shared-moderation/abuse.service.ts155 + Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details). Személyes információkat tartalmaz amikkel követhető, beazonosítható, megkereshető vagy megszemélyesíthető valaki (pl. név, cím, telefonszám, email vagy hitelkártya adatok). - - src/app/shared/shared-moderation/abuse.service.ts157 + src/app/shared/shared-moderation/abuse.service.ts157 + Infringes your copyright wrt. the regional laws with which the server must comply. A szerzőit jogai sérti a kiszolgálóra vonatkozó helyi törvények szempontjából. - - src/app/shared/shared-moderation/abuse.service.ts162 + src/app/shared/shared-moderation/abuse.service.ts162 + Breaks server rules Sérti a szerver szabályait - - src/app/shared/shared-moderation/abuse.service.ts166 + src/app/shared/shared-moderation/abuse.service.ts166 + Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server. Bármi ami nem tartozik a fentiekbe és sérti a szerveren érvényes szolgáltatási feltételeket, magatartási kódexet vagy általános szabályokat. - - src/app/shared/shared-moderation/abuse.service.ts168 + src/app/shared/shared-moderation/abuse.service.ts168 + The above can only be seen in thumbnails. A fenti csak indexképekben látható. - - src/app/shared/shared-moderation/abuse.service.ts177 + src/app/shared/shared-moderation/abuse.service.ts177 + Captions Feliratok @@ -9840,23 +10145,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular The above can only be seen in captions (please describe which). A fenti csak feliratokban látható (kérem írja le, melyik). - - src/app/shared/shared-moderation/abuse.service.ts182 + src/app/shared/shared-moderation/abuse.service.ts182 + Too many attempts, please try again after minutes. Túl sok próbálkozás. Próbálja meg újra perc múlva. - - src/app/core/rest/rest-extractor.service.ts70 + src/app/core/rest/rest-extractor.service.ts70 + Too many attempts, please try again later. Túl sok próbálkozás. Próbálja meg újra később. - - src/app/core/rest/rest-extractor.service.ts72 + src/app/core/rest/rest-extractor.service.ts72 + Server error. Please retry later. Kiszolgálóhiba. Próbálja újra később. - - src/app/core/rest/rest-extractor.service.ts75 + src/app/core/rest/rest-extractor.service.ts75 + Subscribed to all current channels of . You will be notified of all their new videos. Feliratkozva összes jelenlegi csatornájára. Értesítést fog kapni az összes új videójukról. @@ -9910,9 +10215,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderátor - - src/app/core/users/user.service.ts418 - Search videos, playlists, channels…Search videos, playlists, channels… + src/app/core/users/user.service.ts418 + + + Search videos, playlists, channels… + Search videos, playlists, channels… src/app/header/search-typeahead.component.html 3 @@ -9923,101 +10230,101 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Videó eltávolítva innen: - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + Video added in at timestamps Videó hozzáadva ehhez: , ezzel az időbélyeggel: - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + Video added in Videó hozzádva ekkor: - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + Timestamps updated Időbélyegek frissítve - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + Starts at Ekkor kezdődik - - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Stops at Ekkor áll le - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + and stops at és ekkor áll le - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Delete video Videó törlése - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + Actions for the comment Műveletek a hozzászóláshoz - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + Delete comment Hozzászólás törlése - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + Do you really want to delete this comment? Biztos, hogy törli ezt a hozzászólást? - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + Comment deleted. Hozzászólás törölve. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + Encoder Kódoló - - src/app/shared/shared-video-miniature/video-download.component.ts213 + src/app/shared/shared-video-miniature/video-download.component.ts213 + Format name Formátum neve - - src/app/shared/shared-video-miniature/video-download.component.ts214 + src/app/shared/shared-video-miniature/video-download.component.ts214 + Size Méret - - src/app/shared/shared-video-miniature/video-download.component.ts215 + src/app/shared/shared-video-miniature/video-download.component.ts215 + Bitrate Bitsebesség - - - src/app/shared/shared-video-miniature/video-download.component.ts217src/app/shared/shared-video-miniature/video-download.component.ts240 + src/app/shared/shared-video-miniature/video-download.component.ts217 + src/app/shared/shared-video-miniature/video-download.component.ts240 + Codec Kodek - - src/app/shared/shared-video-miniature/video-download.component.ts237 + src/app/shared/shared-video-miniature/video-download.component.ts237 + Copied Másolva - - - src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts197 + src/app/shared/shared-forms/input-toggle-hidden.component.ts47 + src/app/shared/shared-video-miniature/video-download.component.ts197 + Copy Copy @@ -10027,31 +10334,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video reported. Videó bejelentve. - - src/app/shared/shared-moderation/report-modals/video-report.component.ts113 + src/app/shared/shared-moderation/report-modals/video-report.component.ts113 + Do you really want to delete this video? Valóban törölni szeretné ezt a videót? - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/shared/shared-abuse-list/abuse-list-table.component.ts387src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts387 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + Video deleted. A videó törölve. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts98src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts98 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + Actions for the reporter Műveletek a jelentővel kapcsolatban - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + Mute reporter Jelentő némítása - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + This video will be duplicated by your instance. Ezt a videót kettőzni fogja az Ön példánya. @@ -10065,9 +10372,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display live information Display live information - - - src/app/+my-library/my-videos/my-videos.component.ts174src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + src/app/+my-library/my-videos/my-videos.component.ts174 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + Update Frissítés @@ -10085,20 +10392,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Save to playlist Mentés a lejátszási listára - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + You need to be <a href="/login">logged in</a> to rate this video. You need to be <a href="/login">logged in</a> to rate this video. - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + Mirror Lemásolás src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302 - - SubtitlesSubtitles + + + Subtitles + Subtitles src/app/shared/shared-video-miniature/video-download.component.html 9 @@ -10107,29 +10416,30 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Report Jelentés - - src/app/shared/shared-abuse-list/abuse-details.component.html55src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314 + src/app/shared/shared-abuse-list/abuse-details.component.html55 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314 + Remove Eltávolítás - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + Remove & re-draft Eltávolítás és újraírás - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + Mute account Fiók némítása - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts304src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts304 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + Open video actions Open video actions @@ -10145,8 +10455,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mute server account Kiszolgálófiók némítésa - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + Report Jelentés @@ -10195,29 +10505,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Published Közzétéve - - src/app/shared/shared-video-miniature/video-miniature.component.ts158 + src/app/shared/shared-video-miniature/video-miniature.component.ts158 + Publication scheduled on Közzététel ütemezve ekkor - - src/app/shared/shared-video-miniature/video-miniature.component.ts163 + src/app/shared/shared-video-miniature/video-miniature.component.ts163 + Waiting transcoding Átkódolásra vár - - src/app/shared/shared-video-miniature/video-miniature.component.ts167 + src/app/shared/shared-video-miniature/video-miniature.component.ts167 + To transcode Átkódoláshoz - - src/app/shared/shared-video-miniature/video-miniature.component.ts171 + src/app/shared/shared-video-miniature/video-miniature.component.ts171 + To import Importáláshoz - - src/app/shared/shared-video-miniature/video-miniature.component.ts175 - Subscribe to RSS feed ""Subscribe to RSS feed "" + src/app/shared/shared-video-miniature/video-miniature.component.ts175 + + + Subscribe to RSS feed "" + Subscribe to RSS feed "" src/app/shared/shared-video-miniature/videos-list.component.html 8 @@ -10249,244 +10561,241 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Only I can see this video Csak én láthatom ezt a videót - - src/app/shared/shared-main/video/video.service.ts325 + src/app/shared/shared-main/video/video.service.ts325 + Only shareable via a private link Csak személyes hivatkozással osztható meg - - src/app/shared/shared-main/video/video.service.ts326 + src/app/shared/shared-main/video/video.service.ts326 + Anyone can see this video Bárki láthatja ezt a videót - - src/app/shared/shared-main/video/video.service.ts327 + src/app/shared/shared-main/video/video.service.ts327 + Only users of this instance can see this video Csak a példány felhasználói nézhetik meg ezt a videót - - src/app/shared/shared-main/video/video.service.ts328 + src/app/shared/shared-main/video/video.service.ts328 + viewers viewers - - src/app/shared/shared-main/video/video.model.ts216 + src/app/shared/shared-main/video/video.model.ts216 + views views - - src/app/shared/shared-main/video/video.model.ts219 + src/app/shared/shared-main/video/video.model.ts219 + Close Bezárás - - node_modules/@ng-bootstrap/src/alert/alert.ts58 + node_modules/@ng-bootstrap/src/alert/alert.ts58 + Slide of Slide of Currently selected slide number read by screen reader - - node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + Previous Előző - - node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + Next Következő - - node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + Previous month Előző hónap - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + Next month Következő hónap - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + Select month Válasszon hónapot - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + Select year Válasszon évet - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + «« «« - - node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + « « - - node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + » » - - node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + »» »» - - node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + First Első - - node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + Previous Előző - - node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + Next Következő - - node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + Last Utolsó - - node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + - - node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + HH HH - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + Hours Óra - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + MM MM - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + Minutes Perc - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + Increment hours Óra növelése - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + Decrement hours Óra csökkentése - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + Increment minutes Perc növelése - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + Decrement minutes Perc csökkentése - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + SS SS - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + Seconds Másodperc - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + Increment seconds Másodperc növelése - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + Decrement seconds Másodperc csökkentése - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + Close Bezárás - - node_modules/@ng-bootstrap/src/toast/toast.ts78 + node_modules/@ng-bootstrap/src/toast/toast.ts78 + Video to import updated. Az importálandó videó frissítve. - - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + Your video was uploaded to your account and is private. A videó fel lett töltve a fiókjába, és személyes. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? De a kapcsolódó adatok (címkék, leírás, …) el fognak veszni. Biztosan el szeretné hagyni ezt az oldalt? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? A videó még nincs feltöltve. Biztosan el szeretné hagyni ezt az oldalt? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Feltöltés - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload feltöltése - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Videó közzétéve. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Mentetlen változtatásai vannak. Ha elhagyja ezt az oldalt, akkor a változtatásai el fognak veszni. - - src/app/+videos/+video-edit/video-update.component.ts94 + src/app/+videos/+video-edit/video-update.component.ts94 + Video updated. Videó frissítve. @@ -10500,23 +10809,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Stop autoplaying next video Következő videó automatikus lejátszásának leállítása - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + Autoplay next video Következő videó automatikus lejátszása - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + Stop looping playlist videos Lejátszási listán lévő videók ismétlésének leállítása - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + Loop playlist videos Lejátszási listán lévő videók ismétlése - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 + Placeholder image Placeholder image @@ -10528,28 +10837,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? Ez a videó nem érhető el ezen a példányon. Szeretné, hogy átirányítsuk a forráspéldányhoz: <a href=""></a>? - - src/app/+videos/+video-watch/video-watch.component.ts296 + src/app/+videos/+video-watch/video-watch.component.ts296 + Redirection Átirányítás - - src/app/+videos/+video-watch/video-watch.component.ts297 + src/app/+videos/+video-watch/video-watch.component.ts297 + This video contains mature or explicit content. Are you sure you want to watch it? Ez a videó felnőtt vagy korhatáros tartalmat tartalmaz. Biztosan meg szeretné nézni? - - src/app/+videos/+video-watch/video-watch.component.ts343 + src/app/+videos/+video-watch/video-watch.component.ts343 + Mature or explicit content Felnőtt vagy korhatáros tartalom - - src/app/+videos/+video-watch/video-watch.component.ts344 + src/app/+videos/+video-watch/video-watch.component.ts344 + Up Next Legközelebb - - src/app/+videos/+video-watch/video-watch.component.ts415 + src/app/+videos/+video-watch/video-watch.component.ts415 + Cancel Mégse @@ -10558,90 +10867,89 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Autoplay is suspended Az automatikus lejátszás fel van függesztve - - src/app/+videos/+video-watch/video-watch.component.ts417 + src/app/+videos/+video-watch/video-watch.component.ts417 + Enter/exit fullscreen (requires player focus) Teljes képernyőre váltás vagy normál méret (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts688 + src/app/+videos/+video-watch/video-watch.component.ts688 + Play/Pause the video (requires player focus) A videó lejátszása vagy szüneteltetése (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts689 + src/app/+videos/+video-watch/video-watch.component.ts689 + Mute/unmute the video (requires player focus) A videó némítása vagy a némítás visszavonása (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts690 + src/app/+videos/+video-watch/video-watch.component.ts690 + Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) Kihagyás a videó százalékáig: a 0 jelentése 0%, a 9 jelentése 90% (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts692 + src/app/+videos/+video-watch/video-watch.component.ts692 + Increase the volume (requires player focus) A hangerő növelése (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts694 + src/app/+videos/+video-watch/video-watch.component.ts694 + Decrease the volume (requires player focus) A hangerő csökkentése (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts695 + src/app/+videos/+video-watch/video-watch.component.ts695 + Seek the video forward (requires player focus) A videó előretekerése (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts697 + src/app/+videos/+video-watch/video-watch.component.ts697 + Seek the video backward (requires player focus) A videó visszatekerése (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts698 + src/app/+videos/+video-watch/video-watch.component.ts698 + Increase playback rate (requires player focus) Lejátszási sebesség növelése (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts700 + src/app/+videos/+video-watch/video-watch.component.ts700 + Decrease playback rate (requires player focus) Lejátszási sebesség csökkentése (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+videos/+video-watch/video-watch.component.ts701 + Navigate in the video frame by frame (requires player focus) Navigálás a videóban képkockánként (lejátszófókuszt igényel) - - src/app/+videos/+video-watch/video-watch.component.ts703 + src/app/+videos/+video-watch/video-watch.component.ts703 + Like the video A videó kedvelése - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + Dislike the video A videó nem kedvelése - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + When active, the next video is automatically played after the current one. Ha be van kapcsolva, akkor a következő videó automatikusan lejátszásra kerül a jelenlegi után. - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + Recently added Nemrég hozzáadott - - src/app/+videos/video-list/videos-list-common-page.component.ts195src/app/core/menu/menu.service.ts137 + src/app/+videos/video-list/videos-list-common-page.component.ts195 + src/app/core/menu/menu.service.ts137 + Videos from your subscriptions Videók a feliratkozóitól - - src/app/+videos/video-list/video-user-subscriptions.component.ts30 - - + src/app/+videos/video-list/video-user-subscriptions.component.ts30 + Subscriptions Feliratkozások @@ -10665,10 +10973,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos Helyi videók - - - src/app/+videos/video-list/videos-list-common-page.component.ts189src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 - Only videos uploaded on this instance are displayedOnly videos uploaded on this instance are displayed + src/app/+videos/video-list/videos-list-common-page.component.ts189 + src/app/core/menu/menu.service.ts142 + src/app/core/menu/menu.service.ts143 + + + Only videos uploaded on this instance are displayed + Only videos uploaded on this instance are displayed src/app/+videos/video-list/videos-list-common-page.component.ts 190 @@ -10677,28 +10988,29 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Discover videos Videók felfedezése - - src/app/+videos/videos-routing.module.ts19src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts19 + src/app/core/menu/menu.service.ts124 + Trending videos Felkapott videók - - src/app/core/menu/menu.service.ts130 + src/app/core/menu/menu.service.ts130 + Recently added videos Nemrég hozzáadott videók - - src/app/core/menu/menu.service.ts136 + src/app/core/menu/menu.service.ts136 + Upload a video Videó feltöltése - - src/app/app-routing.module.ts91 + src/app/app-routing.module.ts91 + Edit a video Videó szerkesztése - - src/app/app-routing.module.ts100 + src/app/app-routing.module.ts100 + diff --git a/client/src/locale/angular.it-IT.xlf b/client/src/locale/angular.it-IT.xlf index 88370ef60..ec1afdef8 100644 --- a/client/src/locale/angular.it-IT.xlf +++ b/client/src/locale/angular.it-IT.xlf @@ -237,7 +237,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -299,10 +299,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles @@ -315,7 +315,7 @@ Annulla - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Scarica @@ -2318,7 +2318,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Spiacente, la funzionalità di upload è disabilitata per il tuo account. Se vuoi aggiungere video, un amministratore deve sbloccare la tua quota. @@ -10332,33 +10332,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Il video è stato caricato sul proprio account ed è privato. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? I dati associati (tag, descrizione, ...) saranno persi. Chiudere questa pagina ? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Il tuo video non è ancora caricato. Sei sicuro di volere chiudere questa pagina ? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Carica - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Carica - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video pubblicato. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.ja-JP.xlf b/client/src/locale/angular.ja-JP.xlf index 6cbd9f77e..b62458684 100644 --- a/client/src/locale/angular.ja-JP.xlf +++ b/client/src/locale/angular.ja-JP.xlf @@ -5,13 +5,13 @@ Close the left menu メニューを閉じる - - src/app/app.component.ts133 + src/app/app.component.ts133 + Open the left menu メニューを開く - - src/app/app.component.ts135 + src/app/app.component.ts135 + You don't have notifications. 通知はありません。 @@ -230,9 +230,9 @@ My watch history My watch history - - - src/app/+my-library/my-history/my-history.component.html3src/app/+my-library/my-history/my-history.component.ts68 + src/app/+my-library/my-history/my-history.component.html3 + src/app/+my-library/my-history/my-history.component.ts68 + Save to 保存 @@ -302,22 +302,22 @@ Create 作成 - - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html8src/app/+admin/users/user-edit/user-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. @@ -334,8 +334,8 @@ subtitles 字幕 - - src/app/shared/shared-video-miniature/video-download.component.ts57 + src/app/shared/shared-video-miniature/video-download.component.ts57 + Format フォーマット @@ -388,12 +388,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles 字幕 @@ -406,7 +406,7 @@ - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download ダウンロード @@ -429,16 +429,10 @@ No results. No results. - - - - - - - - - - src/app/+videos/video-list/overview/video-overview.component.html4src/app/shared/shared-video-miniature/videos-list.component.html41src/app/shared/shared-video-miniature/videos-selection.component.ts23 + src/app/+videos/video-list/overview/video-overview.component.html4 + src/app/shared/shared-video-miniature/videos-list.component.html41 + src/app/shared/shared-video-miniature/videos-selection.component.ts23 + Submit 送信 @@ -478,8 +472,10 @@ Blocking this live will automatically terminate the live stream. Blocking this live will automatically terminate the live stream. src/app/shared/shared-moderation/video-block.component.html33 - - Element not foundElement not found + + + Element not found + Element not found src/app/shared/shared-search/find-in-bulk.service.ts 80 @@ -537,8 +533,8 @@ Cannot fetch information of this remote account リモートアカウントの情報を読み込むことができません - - src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + Blocked Blocked @@ -554,9 +550,9 @@ {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos} } - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html32src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + src/app/+my-library/+my-video-channels/my-video-channels.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + @@ -589,13 +585,11 @@ Save 保存 - - - - - - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38src/app/shared/shared-user-settings/user-interface-settings.component.html16src/app/shared/shared-user-settings/user-video-settings.component.html72src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38 + src/app/shared/shared-user-settings/user-interface-settings.component.html16 + src/app/shared/shared-user-settings/user-video-settings.component.html72 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + Delete from から削除 @@ -613,40 +607,39 @@ src/app/shared/shared-video-miniature/abstract-video-list.html44 src/app/shared/shared-video-miniature/abstract-video-list.html44 - Videos with the most interactions for recent videos, minus user history Videos with the most interactions for recent videos, minus user history - - src/app/+videos/video-list/videos-list-common-page.component.ts203 + src/app/+videos/video-list/videos-list-common-page.component.ts203 + Delete 削除 - - - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts88src/app/+admin/moderation/video-block-list/video-block-list.component.ts92src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164src/app/+admin/users/user-list/user-list.component.ts81src/app/+admin/users/user-list/user-list.component.ts195src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.html50src/app/+my-library/my-videos/my-videos.component.ts117src/app/+my-library/my-videos/my-videos.component.ts144src/app/+my-library/my-videos/my-videos.component.ts185src/app/+videos/+video-edit/shared/video-edit.component.html178src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts145src/app/shared/shared-abuse-list/abuse-list-table.component.ts388src/app/shared/shared-abuse-list/abuse-list-table.component.ts423src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts88 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts92 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164 + src/app/+admin/users/user-list/user-list.component.ts81 + src/app/+admin/users/user-list/user-list.component.ts195 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.html50 + src/app/+my-library/my-videos/my-videos.component.ts117 + src/app/+my-library/my-videos/my-videos.component.ts144 + src/app/+my-library/my-videos/my-videos.component.ts185 + src/app/+videos/+video-edit/shared/video-edit.component.html178 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts388 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts423 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + Only live videos ライブ動画のみ @@ -677,11 +670,12 @@ Hide Hide - - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-forms/input-toggle-hidden.component.ts38src/app/shared/shared-user-settings/user-video-settings.component.html16src/app/shared/shared-video-miniature/video-filters-header.component.html76 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-forms/input-toggle-hidden.component.ts38 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/shared/shared-video-miniature/video-filters-header.component.html76 + Show Show @@ -726,7 +720,6 @@ ローカルアカウントで登録する src/app/shared/shared-user-subscription/subscribe-button.component.html58 - The live stream will be automatically terminated. ライブ配信は自動的に終了します。 @@ -877,8 +870,9 @@ Local ローカル - - src/app/shared/shared-instance/instance-statistics.component.html4src/app/shared/shared-video-miniature/video-filters.model.ts125 + src/app/shared/shared-instance/instance-statistics.component.html4 + src/app/shared/shared-video-miniature/video-filters.model.ts125 + users ユーザー @@ -953,42 +947,42 @@ The upload failed アップロードに失敗しました - - src/app/helpers/utils/upload.ts12 + src/app/helpers/utils/upload.ts12 + The connection was interrupted The connection was interrupted - - src/app/helpers/utils/upload.ts16 + src/app/helpers/utils/upload.ts16 + The server encountered an error The server encountered an error - - src/app/helpers/utils/upload.ts19 + src/app/helpers/utils/upload.ts19 + Your file couldn't be transferred before the set timeout (usually 10min) Your file couldn't be transferred before the set timeout (usually 10min) - - src/app/helpers/utils/upload.ts22 + src/app/helpers/utils/upload.ts22 + Your file was too large (max. size: ) Your file was too large (max. size: ) - - src/app/helpers/utils/upload.ts26 + src/app/helpers/utils/upload.ts26 + User User - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban BAN - - - - src/app/+admin/users/user-list/user-list.component.ts87src/app/shared/shared-moderation/user-ban-modal.component.html3src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + src/app/+admin/users/user-list/user-list.component.ts87 + src/app/shared/shared-moderation/user-ban-modal.component.html3 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + A banned user will no longer be able to login. @@ -999,26 +993,26 @@ Cancel キャンセル - - - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+admin/follows/following-list/follow-modal.component.html33src/app/+login/login.component.html121src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/video-add-components/video-upload.component.html81src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73src/app/+videos/+video-watch/video-watch.component.ts416src/app/modal/confirm.component.html20src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-video-miniature/video-download.component.html152 + src/app/+about/about-instance/contact-admin-modal.component.html48 + src/app/+admin/follows/following-list/follow-modal.component.html33 + src/app/+login/login.component.html121 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html22 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html69 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73 + src/app/+videos/+video-watch/video-watch.component.ts416 + src/app/modal/confirm.component.html20 + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26 + src/app/shared/shared-moderation/batch-domains-modal.component.html31 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/video-report.component.html92 + src/app/shared/shared-moderation/user-ban-modal.component.html26 + src/app/shared/shared-moderation/video-block.component.html38 + src/app/shared/shared-video-miniature/video-download.component.html152 + Ban this user このユーザーをBANする @@ -1263,8 +1257,8 @@ The link will expire within 1 hour. Signup アカウント作成 Button on the registration form to finalize the account and channel creation - - src/app/+signup/+register/register.component.ts67 + src/app/+signup/+register/register.component.ts67 + Filters フィルタ @@ -1287,58 +1281,58 @@ The link will expire within 1 hour. Welcome to PeerTube, dear administrator! 管理者の方、PeerTubeへようこそ! - - src/app/modal/admin-welcome-modal.component.html3 + src/app/modal/admin-welcome-modal.component.html3 + CLI documentation CLIドキュメント - - src/app/modal/admin-welcome-modal.component.html12 + src/app/modal/admin-welcome-modal.component.html12 + Upload or import videos, parse logs, prune storage directories, reset user password... Upload or import videos, parse logs, prune storage directories, reset user password... - - src/app/modal/admin-welcome-modal.component.html15 + src/app/modal/admin-welcome-modal.component.html15 + Administer documentation 運営者向けドキュメント - - src/app/modal/admin-welcome-modal.component.html19 + src/app/modal/admin-welcome-modal.component.html19 + Managing users, following other instances, dealing with spammers... Managing users, following other instances, dealing with spammers... - - src/app/modal/admin-welcome-modal.component.html22 + src/app/modal/admin-welcome-modal.component.html22 + Use documentation ドキュメントを利用する - - src/app/modal/admin-welcome-modal.component.html26 + src/app/modal/admin-welcome-modal.component.html26 + Setup your account, managing video playlists, discover third-party applications... Setup your account, managing video playlists, discover third-party applications... - - src/app/modal/admin-welcome-modal.component.html29 + src/app/modal/admin-welcome-modal.component.html29 + Useful links 便利なリンク集 - - src/app/modal/admin-welcome-modal.component.html39 + src/app/modal/admin-welcome-modal.component.html39 + Official PeerTube website (news, support, contribute...): https://joinpeertube.org PeerTube公式ウェブサイト(ニュース、サポート、コントリビュートなど): https://joinpeertube.org - - src/app/modal/admin-welcome-modal.component.html42 + src/app/modal/admin-welcome-modal.component.html42 + Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances あなたのインスタンスをPeerTubeの公開インデックスに加える:https://instances.joinpeertube.org/instances - - src/app/modal/admin-welcome-modal.component.html45 + src/app/modal/admin-welcome-modal.component.html45 + It's time to configure your instance! あなたのインスタンスの設定を行いましょう! - - src/app/modal/admin-welcome-modal.component.html55 + src/app/modal/admin-welcome-modal.component.html55 + Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are. @@ -1359,26 +1353,29 @@ The link will expire within 1 hour. is very important for visitors to understand on what type of instance they are. - - src/app/modal/admin-welcome-modal.component.html58 + src/app/modal/admin-welcome-modal.component.html58 + If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. - - src/app/modal/admin-welcome-modal.component.html64 + src/app/modal/admin-welcome-modal.component.html64 + Remind me later 後ほど通知させる - - src/app/modal/account-setup-warning-modal.component.html28src/app/modal/admin-welcome-modal.component.html74 - Set up Set up - - src/app/modal/account-setup-warning-modal.component.html35 + src/app/modal/account-setup-warning-modal.component.html28 + src/app/modal/admin-welcome-modal.component.html74 + + + Set up + Set up + src/app/modal/account-setup-warning-modal.component.html35 + Configure my instance インスタンスの設定をする - - src/app/modal/admin-welcome-modal.component.html81 + src/app/modal/admin-welcome-modal.component.html81 + Configuration warning! Configuration warning! @@ -1560,11 +1557,11 @@ The link will expire within 1 hour. My videos 自分の動画 - - - - - src/app/+my-library/my-library-routing.module.ts76src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts71src/app/core/menu/menu.service.ts77 + src/app/+my-library/my-library-routing.module.ts76 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts71 + src/app/core/menu/menu.service.ts77 + My video imports 自分がインポートした動画 @@ -1592,9 +1589,11 @@ The link will expire within 1 hour. Videos 動画 - - - src/app/+accounts/account-videos/account-videos.component.ts17src/app/+my-library/my-library.component.ts52src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17src/app/core/menu/menu.service.ts76 + src/app/+accounts/account-videos/account-videos.component.ts17 + src/app/+my-library/my-library.component.ts52 + src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17 + src/app/core/menu/menu.service.ts76 + Interface: 言語: @@ -1609,11 +1608,11 @@ The link will expire within 1 hour. Subscriptions 登録チャンネル - - - - - src/app/+my-library/my-library.component.ts64src/app/+videos/video-list/video-user-subscriptions.component.ts25src/app/+videos/videos-routing.module.ts58src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts64 + src/app/+videos/video-list/video-user-subscriptions.component.ts25 + src/app/+videos/videos-routing.module.ts58 + src/app/core/menu/menu.service.ts91 + History 履歴 @@ -1623,10 +1622,10 @@ The link will expire within 1 hour. VIDEOS 動画 - - - - src/app/+accounts/accounts.component.ts82src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215src/app/+video-channels/video-channels.component.ts76 + src/app/+accounts/accounts.component.ts82 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215 + src/app/+video-channels/video-channels.component.ts76 + Import jobs concurrency Import jobs concurrency @@ -1667,9 +1666,9 @@ The link will expire within 1 hour. Contact 連絡先 - - - src/app/+about/about-routing.module.ts36src/app/menu/menu.component.html136 + src/app/+about/about-routing.module.ts36 + src/app/menu/menu.component.html136 + View your notifications 通知を表示 @@ -1701,23 +1700,35 @@ The link will expire within 1 hour. See all your notifications 通知をすべて見る src/app/menu/notification.component.html49 - - Welcome to , dear user!Welcome to , dear user! - - src/app/modal/account-setup-warning-modal.component.html3 - It's time to set up your account profile!It's time to set up your account profile! - - src/app/modal/account-setup-warning-modal.component.html10 - Help moderators and other users to know who you are by:Help moderators and other users to know who you are by: - - src/app/modal/account-setup-warning-modal.component.html12 - Uploading an avatarUploading an avatar - - src/app/modal/account-setup-warning-modal.component.html15 - Writing a descriptionWriting a description - - src/app/modal/account-setup-warning-modal.component.html16 - Don't show me this anymoreDon't show me this anymore + + + Welcome to , dear user! + Welcome to , dear user! + src/app/modal/account-setup-warning-modal.component.html3 + + + It's time to set up your account profile! + It's time to set up your account profile! + src/app/modal/account-setup-warning-modal.component.html10 + + + Help moderators and other users to know who you are by: + Help moderators and other users to know who you are by: + src/app/modal/account-setup-warning-modal.component.html12 + + + Uploading an avatar + Uploading an avatar + src/app/modal/account-setup-warning-modal.component.html15 + + + Writing a description + Writing a description + src/app/modal/account-setup-warning-modal.component.html16 + + + Don't show me this anymore + Don't show me this anymore src/app/modal/account-setup-warning-modal.component.html 23 @@ -1820,8 +1831,8 @@ The link will expire within 1 hour. Media is too large for the server. Please contact you administrator if you want to increase the limit size. Media is too large for the server. Please contact you administrator if you want to increase the limit size. - - src/app/core/rest/rest-extractor.service.ts65 + src/app/core/rest/rest-extractor.service.ts65 + GLOBAL SEARCH グローバル検索 @@ -1927,15 +1938,19 @@ The link will expire within 1 hour. Live videos Live videos - - - src/app/+search/search-filters.component.html29src/app/+search/search-filters.component.ts64src/app/shared/shared-video-miniature/video-filters-header.component.html104src/app/shared/shared-video-miniature/video-filters.model.ts158 + src/app/+search/search-filters.component.html29 + src/app/+search/search-filters.component.ts64 + src/app/shared/shared-video-miniature/video-filters-header.component.html104 + src/app/shared/shared-video-miniature/video-filters.model.ts158 + VOD videos VOD videos - - - src/app/+search/search-filters.component.html34src/app/+search/search-filters.component.ts60src/app/shared/shared-video-miniature/video-filters-header.component.html109src/app/shared/shared-video-miniature/video-filters.model.ts164 + src/app/+search/search-filters.component.html34 + src/app/+search/search-filters.component.ts60 + src/app/shared/shared-video-miniature/video-filters-header.component.html109 + src/app/shared/shared-video-miniature/video-filters.model.ts164 + Published date 投稿日 @@ -2123,14 +2138,14 @@ The link will expire within 1 hour. extensions extensions - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. このイメージはサイズが大きすぎます。 - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner 新しいバナーをアップロードする @@ -2155,13 +2170,13 @@ The link will expire within 1 hour. Account avatar アカウントのアバター - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar チャンネルのアバター - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Markdown compatible that also supports custom PeerTube HTML tags @@ -2177,26 +2192,34 @@ The link will expire within 1 hour. src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html 24 - - Error in channel miniature component: Error in channel miniature component: + + + Error in channel miniature component: + Error in channel miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts 57 - - Error in playlist miniature component: Error in playlist miniature component: + + + Error in playlist miniature component: + Error in playlist miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts 47 - - Error in video miniature component: Error in video miniature component: + + + Error in video miniature component: + Error in video miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts 59 - - Error in videos list component: Error in videos list component: + + + Error in videos list component: + Error in videos list component: src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts 77 @@ -2390,10 +2413,10 @@ The link will expire within 1 hour. Captions 字幕 - - - - src/app/+videos/+video-edit/shared/video-edit.component.html155src/app/shared/shared-abuse-list/abuse-details.component.ts26src/app/shared/shared-moderation/abuse.service.ts181 + src/app/+videos/+video-edit/shared/video-edit.component.html155 + src/app/shared/shared-abuse-list/abuse-details.component.ts26 + src/app/shared/shared-moderation/abuse.service.ts181 + Video preview Video preview @@ -2530,17 +2553,17 @@ The link will expire within 1 hour. Update 更新 - - - - - - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61 + src/app/+videos/+video-edit/video-update.component.html3 + src/app/+videos/+video-edit/video-update.component.html18 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + Select the file to upload アップロードするファイルを選択する @@ -2617,25 +2640,31 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. - - src/app/+videos/+video-edit/video-add.component.ts102 - Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + src/app/+videos/+video-edit/video-add.component.ts102 + + + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. src/app/+videos/+video-edit/video-add.component.ts 104 - - Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + + + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. src/app/+videos/+video-edit/video-add.component.ts 106 - - Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + + + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. src/app/+videos/+video-edit/video-add.component.ts 108 @@ -2644,8 +2673,8 @@ The link will expire within 1 hour. Read instance rules for help Read instance rules for help - - src/app/+videos/+video-edit/video-add.component.html2 + src/app/+videos/+video-edit/video-add.component.html2 + Select the torrent to import インポートする Torrent を選択する @@ -2670,23 +2699,23 @@ The link will expire within 1 hour. Torrents with only 1 file are supported. Torrents with only 1 file are supported. - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + Cannot create live because this instance have too many created lives Cannot create live because this instance have too many created lives - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + Cannot create live because you created too many lives Cannot create live because you created too many lives - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + Live published. ライブ配信が投稿されました。 - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + Go Live Go Live @@ -2711,38 +2740,38 @@ The link will expire within 1 hour. to upload your videos. - - src/app/+videos/+video-edit/video-add.component.html34 + src/app/+videos/+video-edit/video-add.component.html34 + Import インポート - - src/app/+videos/+video-edit/video-add.component.html44 + src/app/+videos/+video-edit/video-add.component.html44 + Upload アップロード - - src/app/+videos/+video-edit/video-add.component.html45 + src/app/+videos/+video-edit/video-add.component.html45 + Upload a file ファイルをアップロードする - - src/app/+videos/+video-edit/video-add.component.html53 + src/app/+videos/+video-edit/video-add.component.html53 + Import with URL URL でインポート - - src/app/+videos/+video-edit/video-add.component.html63 + src/app/+videos/+video-edit/video-add.component.html63 + Import with torrent Torrent でインポート - - src/app/+videos/+video-edit/video-add.component.html73 + src/app/+videos/+video-edit/video-add.component.html73 + Go live Go live - - src/app/+videos/+video-edit/video-add.component.html83 + src/app/+videos/+video-edit/video-add.component.html83 + Other videos 他の動画 @@ -2881,8 +2910,8 @@ The link will expire within 1 hour. This video is blocked. この動画はブロックされてます。 - - src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + Published に投稿 @@ -3032,9 +3061,10 @@ The link will expire within 1 hour. src/app/+videos/+video-watch/shared/information/video-alert.component.html 6,7 - - The video is being moved to an external server, it may not work properly. - The video is being moved to an external server, it may not work properly. + + + The video is being moved to an external server, it may not work properly. + The video is being moved to an external server, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html @@ -3045,18 +3075,18 @@ The link will expire within 1 hour. This video will be published on . This video will be published on . - - src/app/+videos/+video-watch/shared/information/video-alert.component.html13 + src/app/+videos/+video-watch/shared/information/video-alert.component.html13 + This live has not started yet. このライブ配信はまだ始まっていません。 - - src/app/+videos/+video-watch/shared/information/video-alert.component.html18 + src/app/+videos/+video-watch/shared/information/video-alert.component.html18 + This live has ended. ライブ配信が終了しました。 - - src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + SORT BY 並べ替え @@ -3080,30 +3110,30 @@ The link will expire within 1 hour. View from and others View from and others - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + {VAR_PLURAL, plural, =1 {1 reply} other { replies}} {VAR_PLURAL, plural, =1 {1 reply} other { replies}} - - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74src/app/+videos/+video-watch/shared/comment/video-comments.component.html77src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + View from View from - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + View View - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + Comments are disabled. コメント機能が無効になっています。 - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + Add comment... コメントを入力... @@ -3239,14 +3269,14 @@ The link will expire within 1 hour. Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed? Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed? - - src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + Renew token Renew token - - - src/app/+my-account/my-account-applications/my-account-applications.component.html35src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + src/app/+my-account/my-account-applications/my-account-applications.component.html35 + src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + Token renewed. Update your client configuration accordingly. Token renewed. Update your client configuration accordingly. @@ -3315,8 +3345,9 @@ The link will expire within 1 hour. Clear filters フィルタをクリアする - - src/app/shared/shared-forms/advanced-input-filter.component.html23src/app/shared/shared-main/misc/simple-search-input.component.html14 + src/app/shared/shared-forms/advanced-input-filter.component.html23 + src/app/shared/shared-main/misc/simple-search-input.component.html14 + Video/Comment/Account 動画/コメント/アカウント @@ -3407,9 +3438,8 @@ The link will expire within 1 hour. Unfollow Unfollow - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab 新しいタブでインスタンスを開く @@ -3464,9 +3494,9 @@ The link will expire within 1 hour. Create user ユーザー作成 - - - src/app/+admin/users/user-edit/user-create.component.ts96src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts96 + src/app/+admin/users/user-list/user-list.component.html20 + Table parameters Table parameters @@ -4182,14 +4212,14 @@ The link will expire within 1 hour. Search 検索 - - - - - - - - src/app/+admin/plugins/plugins.component.html5src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts260src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/shared/shared-main/misc/simple-search-input.component.ts12src/app/shared/shared-main/misc/simple-search-input.component.ts13 + src/app/+admin/plugins/plugins.component.html5 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts260 + src/app/header/search-typeahead.component.html8 + src/app/shared/shared-instance/instance-features-table.component.html122 + src/app/shared/shared-main/misc/simple-search-input.component.ts12 + src/app/shared/shared-main/misc/simple-search-input.component.ts13 + Users can resolve distant content 他のインスタンスのコンテンツ @@ -4220,29 +4250,29 @@ The link will expire within 1 hour. src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36 src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 - Videos with the most interactions for recent videos 最近の動画でインタラクションが多かった動画を表示します - - src/app/+videos/video-list/videos-list-common-page.component.ts204 + src/app/+videos/video-list/videos-list-common-page.component.ts204 + Videos with the most views during the last 24 hours 過去24時間の間で視聴回数の多かった動画を表示します - - src/app/+videos/video-list/videos-list-common-page.component.ts208 - Videos with the most views during the last daysVideos with the most views during the last days + src/app/+videos/video-list/videos-list-common-page.component.ts208 + + + Videos with the most views during the last days + Videos with the most views during the last days src/app/+videos/video-list/videos-list-common-page.component.ts 209 - Videos that have the most likes いいね!が多かった動画を表示します - - src/app/+videos/video-list/videos-list-common-page.component.ts205 + src/app/+videos/video-list/videos-list-common-page.component.ts205 + To load your new installed plugins or themes, refresh the page. 新しくインストールしたプラグインやテーマを適用するには、ページを更新して下さい。 @@ -4329,18 +4359,18 @@ The link will expire within 1 hour. comments deleted. のコメントは削除されました。 - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + Do you really want to delete all comments of ? 本当に の全てのコメントを削除しますか? - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + Comments of will be deleted in a few minutes のコメントは数分以内に削除されます - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + Video comments 動画のコメント @@ -4476,38 +4506,39 @@ The link will expire within 1 hour. Add a new category 新しいカテゴリーを加える - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57src/app/shared/shared-forms/select/select-categories.component.html5 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + src/app/shared/shared-forms/select/select-categories.component.html5 + The sharing system implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. 共有システムは、あなたのシステムの技術的情報(公開IPアドレスのような)が他のピアに送信される事を暗に意味していますが、サーバー負荷を大きく軽減する助けとなります。 - - src/app/shared/shared-user-settings/user-video-settings.component.html45 + src/app/shared/shared-user-settings/user-video-settings.component.html45 + Help share videos being played サーバー負荷軽減のために、再生される動画のピアを担う - - src/app/shared/shared-user-settings/user-video-settings.component.html42 + src/app/shared/shared-user-settings/user-video-settings.component.html42 + When on a video page, directly start playing the video. 動画ページにアクセスすると、すぐに動画を再生する。 - - src/app/shared/shared-user-settings/user-video-settings.component.html56 + src/app/shared/shared-user-settings/user-video-settings.component.html56 + Automatically play videos 自動的に動画を再生する - - src/app/shared/shared-user-settings/user-video-settings.component.html53 + src/app/shared/shared-user-settings/user-video-settings.component.html53 + When a video ends, follow up with the next suggested video. 動画の再生が終了すると、次のオススメ動画が続いて再生されます。 - - src/app/shared/shared-user-settings/user-video-settings.component.html67 + src/app/shared/shared-user-settings/user-video-settings.component.html67 + Automatically start playing the next video 自動的に次の動画を再生する - - src/app/shared/shared-user-settings/user-video-settings.component.html64 + src/app/shared/shared-user-settings/user-video-settings.component.html64 + Main languages you/your moderators speak このインスタンスのモデレーターとあなたが話す言語 @@ -4981,8 +5012,8 @@ The link will expire within 1 hour. Administrator 管理者 - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email 管理者のメールアドレス @@ -5440,137 +5471,169 @@ color: red; Profile プロファイル - - src/app/shared/shared-video-miniature/video-download.component.ts238 + src/app/shared/shared-video-miniature/video-download.component.ts238 + Resolution 解像度 - - src/app/shared/shared-video-miniature/video-download.component.ts247 + src/app/shared/shared-video-miniature/video-download.component.ts247 + Aspect ratio 比率 - - src/app/shared/shared-video-miniature/video-download.component.ts248 + src/app/shared/shared-video-miniature/video-download.component.ts248 + Average frame rate 平均フレームレート - - src/app/shared/shared-video-miniature/video-download.component.ts249 + src/app/shared/shared-video-miniature/video-download.component.ts249 + Pixel format ピクセル形式 - - src/app/shared/shared-video-miniature/video-download.component.ts250 + src/app/shared/shared-video-miniature/video-download.component.ts250 + Sample rate サンプルレート - - src/app/shared/shared-video-miniature/video-download.component.ts254 + src/app/shared/shared-video-miniature/video-download.component.ts254 + Channel Layout ステレオ・モノラル等 - - src/app/shared/shared-video-miniature/video-download.component.ts255 - Update your settings Update your settings + src/app/shared/shared-video-miniature/video-download.component.ts255 + + + Update your settings + Update your settings src/app/shared/shared-video-miniature/video-filters-header.component.html 3,7 - - More filtersMore filters + + + More filters + More filters src/app/shared/shared-video-miniature/video-filters-header.component.html 20 - - Less filtersLess filters + + + Less filters + Less filters src/app/shared/shared-video-miniature/video-filters-header.component.html 21 - - Sort by "Recently Added"Sort by "Recently Added" + + + Sort by "Recently Added" + Sort by "Recently Added" src/app/shared/shared-video-miniature/video-filters-header.component.html 46 - - Sort by "Views"Sort by "Views" + + + Sort by "Views" + Sort by "Views" src/app/shared/shared-video-miniature/video-filters-header.component.html 48 - - Sort by "Hot"Sort by "Hot" + + + Sort by "Hot" + Sort by "Hot" src/app/shared/shared-video-miniature/video-filters-header.component.html 49 - - Sort by "Best"Sort by "Best" + + + Sort by "Best" + Sort by "Best" src/app/shared/shared-video-miniature/video-filters-header.component.html 50 - - Sort by "Likes"Sort by "Likes" + + + Sort by "Likes" + Sort by "Likes" src/app/shared/shared-video-miniature/video-filters-header.component.html 51 - - Languages:Languages: + + + Languages: + Languages: src/app/shared/shared-video-miniature/video-filters-header.component.html 59 - - Sensitive content:Sensitive content: + + + Sensitive content: + Sensitive content: src/app/shared/shared-video-miniature/video-filters-header.component.html 66 - - Scope:Scope: + + + Scope: + Scope: src/app/shared/shared-video-miniature/video-filters-header.component.html 81 - - Local videos (this instance)Local videos (this instance) + + + Local videos (this instance) + Local videos (this instance) src/app/shared/shared-video-miniature/video-filters-header.component.html 85 - - Federated videos (this instance + followed instances)Federated videos (this instance + followed instances) + + + Federated videos (this instance + followed instances) + Federated videos (this instance + followed instances) src/app/shared/shared-video-miniature/video-filters-header.component.html 90 - - Type:Type: + + + Type: + Type: src/app/shared/shared-video-miniature/video-filters-header.component.html 95 - - VOD & Live videosVOD & Live videos + + + VOD & Live videos + VOD & Live videos src/app/shared/shared-video-miniature/video-filters-header.component.html 99 - - Categories:Categories: + + + Categories: + Categories: src/app/shared/shared-video-miniature/video-filters-header.component.html 114 - - Moderation:Moderation: + + + Moderation: + Moderation: src/app/shared/shared-video-miniature/video-filters-header.component.html 120 @@ -5640,9 +5703,9 @@ color: red; Add a new language 新しく言語を加える - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71src/app/shared/shared-forms/select/select-languages.component.html6 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71 + src/app/shared/shared-forms/select/select-languages.component.html6 + is awaiting email verification はメールアドレスの認証を待っています @@ -5677,9 +5740,9 @@ color: red; Change ownership 所有権を変更する - - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts180 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts180 + Select the next owner 次の所有者を選択 @@ -5780,13 +5843,13 @@ color: red; Create video channel 動画チャンネルの作成 - - src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + No channel found. チャンネルが見つかりませんでした。 - - src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + subscribers チャンネル登録者数 @@ -5877,16 +5940,16 @@ color: red; Delete your account アカウントを削除する - - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 + Channel page チャンネルページ - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html25src/app/+my-library/my-subscriptions/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+my-library/+my-video-channels/my-video-channels.component.html25 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html67 + Created by 制作 @@ -5905,8 +5968,8 @@ color: red; You don't have any video in your watch history yet. まだ視聴履歴に見た動画がありません。 - - src/app/+my-library/my-history/my-history.component.html29 + src/app/+my-library/my-history/my-history.component.html29 + Open syndication dropdown Open syndication dropdown @@ -5918,14 +5981,18 @@ color: red; src/app/shared/shared-main/feeds/feed.component.html 3 - - Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description.Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + + + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. src/app/shared/shared-main/misc/channels-setup-message.component.html 5 - - Set up my channelsSet up my channels + + + Set up my channels + Set up my channels src/app/shared/shared-main/misc/channels-setup-message.component.html 6 @@ -5982,8 +6049,8 @@ color: red; Create playlist プレイリストの作成 - - src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + My video channels 自分の動画チャンネル @@ -6031,8 +6098,10 @@ color: red; If you need help to use PeerTube, you can have a look at the documentation. PeerTubeを利用するためにヘルプが必要な場合、ドキュメントを読むことができます。 src/app/+signup/shared/signup-success.component.html14 - - To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + + + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. src/app/+signup/shared/signup-success.component.html 18,19 @@ -6147,12 +6216,12 @@ color: red; {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} - - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html30src/app/+video-channels/video-channels.component.html73src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + src/app/+video-channels/video-channels.component.html73 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 videos} other { videos}} @@ -6194,8 +6263,8 @@ color: red; CHANNELS チャンネル - - src/app/+accounts/accounts.component.ts81 + src/app/+accounts/accounts.component.ts81 + This account does not have channels. このアカウントはチャンネルを持ってません。 @@ -6320,7 +6389,6 @@ channel with the same name ()! 16 - Your name 名前 @@ -6345,8 +6413,10 @@ channel with the same name ()! About について src/app/+about/about-instance/about-instance.component.html5 - - Contact usContact us + + + Contact us + Contact us src/app/+about/about-instance/about-instance.component.html 7 @@ -6356,7 +6426,6 @@ channel with the same name ()! 3 - This instance is dedicated to sensitive/NSFW content. このインスタンスはセンシティブもしくはNSFWなコンテンツに力を注いでいます。 @@ -6657,24 +6726,26 @@ channel with the same name ()! About this instance このインスタンスについて - - src/app/+about/about-routing.module.ts24 + src/app/+about/about-routing.module.ts24 + About PeerTube PeerTubeについて - - src/app/+about/about-routing.module.ts49 + src/app/+about/about-routing.module.ts49 + About this instance's network このインスタンスのネットワークについて - - src/app/+about/about-routing.module.ts58 + src/app/+about/about-routing.module.ts58 + Link copied リンクをコピーしました src/app/+about/about-instance/about-instance.component.ts98 - - Contact the administrator(s)Contact the administrator(s) + + + Contact the administrator(s) + Contact the administrator(s) src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -6827,9 +6898,8 @@ channel with the same name ()! Account videos このアカウントの動画 - - src/app/+accounts/accounts-routing.module.ts35 - + src/app/+accounts/accounts-routing.module.ts35 + ACCOUNT アカウント @@ -6841,65 +6911,80 @@ channel with the same name ()! Account video channels このアカウントのチャンネルリスト - - src/app/+accounts/accounts-routing.module.ts26 - + src/app/+accounts/accounts-routing.module.ts26 + Display all videos (private, unlisted or not yet published) Display all videos (private, unlisted or not yet published) - - - - - - - - src/app/shared/shared-video-miniature/video-filters-header.component.html125 - Remove this filterRemove this filter - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 - Sensitive contentSensitive content - - src/app/shared/shared-video-miniature/video-filters.model.ts115 - ScopeScope - - src/app/shared/shared-video-miniature/video-filters.model.ts122 - FederatedFederated - - src/app/shared/shared-video-miniature/video-filters.model.ts124 - LanguagesLanguages - - src/app/shared/shared-video-miniature/video-filters.model.ts132 - CategoriesCategories - - src/app/shared/shared-video-miniature/video-filters.model.ts141 - All videosAll videos - - src/app/shared/shared-video-miniature/video-filters.model.ts150 - BlurredBlurred - - src/app/shared/shared-video-miniature/video-filters.model.ts225 - hiddenhidden - - src/app/shared/shared-video-miniature/video-filters.model.ts231 - blurredblurred - - src/app/shared/shared-video-miniature/video-filters.model.ts232 - displayeddisplayed - - src/app/shared/shared-video-miniature/video-filters.model.ts234 + src/app/shared/shared-video-miniature/video-filters-header.component.html125 + + + Remove this filter + Remove this filter + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + + + Sensitive content + Sensitive content + src/app/shared/shared-video-miniature/video-filters.model.ts115 + + + Scope + Scope + src/app/shared/shared-video-miniature/video-filters.model.ts122 + + + Federated + Federated + src/app/shared/shared-video-miniature/video-filters.model.ts124 + + + Languages + Languages + src/app/shared/shared-video-miniature/video-filters.model.ts132 + + + Categories + Categories + src/app/shared/shared-video-miniature/video-filters.model.ts141 + + + All videos + All videos + src/app/shared/shared-video-miniature/video-filters.model.ts150 + + + Blurred + Blurred + src/app/shared/shared-video-miniature/video-filters.model.ts225 + + + hidden + hidden + src/app/shared/shared-video-miniature/video-filters.model.ts231 + + + blurred + blurred + src/app/shared/shared-video-miniature/video-filters.model.ts232 + + + displayed + displayed + src/app/shared/shared-video-miniature/video-filters.model.ts234 + direct account followers direct account followers - - src/app/+accounts/accounts.component.ts152 + src/app/+accounts/accounts.component.ts152 + Report this account アカウントを通報する - - src/app/+accounts/accounts.component.ts196 + src/app/+accounts/accounts.component.ts196 + VIDEOS VIDEOS @@ -6909,19 +6994,19 @@ channel with the same name ()! Username copied ユーザー名をコピーしました - - - src/app/+accounts/accounts.component.ts120src/app/+video-channels/video-channels.component.ts103 + src/app/+accounts/accounts.component.ts120 + src/app/+video-channels/video-channels.component.ts103 + 1 subscriber チャンネル登録者1人 - - src/app/+accounts/accounts.component.ts124 + src/app/+accounts/accounts.component.ts124 + subscribers チャンネル登録者数 人 - - src/app/+accounts/accounts.component.ts126 + src/app/+accounts/accounts.component.ts126 + Audio-only 音声のみ @@ -7084,8 +7169,8 @@ channel with the same name ()! Configuration updated. 設定が更新されました。 - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 + INSTANCE HOMEPAGE インスタンスのホームページ @@ -7353,8 +7438,8 @@ channel with the same name ()! Follow request(s) sent! フォローリクエストを送信しました! - - src/app/+admin/follows/following-list/follow-modal.component.ts63 + src/app/+admin/follows/following-list/follow-modal.component.ts63 + Your instance subscriptions Your instance subscriptions @@ -7366,8 +7451,8 @@ channel with the same name ()! Do you really want to unfollow ? 本当に のフォローを解除しますか? - - src/app/+admin/follows/following-list/following-list.component.ts46 + src/app/+admin/follows/following-list/following-list.component.ts46 + Unfollow フォロー解除 @@ -7396,33 +7481,33 @@ channel with the same name ()! Used Used - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Available Available - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Do you really want to remove this video redundancy? Do you really want to remove this video redundancy? - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + Remove redundancy Remove redundancy - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + Video redundancies removed! Video redundancies removed! - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + Account unmuted by your instance. あなたのインスタンスからアカウント のミュートが解除されました。 - - src/app/shared/shared-moderation/account-blocklist.component.ts43 + src/app/shared/shared-moderation/account-blocklist.component.ts43 + Instance unmuted by your instance. あなたのインスタンスからインスタンス のミュートが解除されました。 @@ -7431,9 +7516,9 @@ channel with the same name ()! Instance muted. インスタンスをミュートしました。 - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + Instance muted by your instance. インスタンス はあなたのインスタンスからミュートされました。 @@ -7467,9 +7552,9 @@ channel with the same name ()! Copyright コピーライト - - - src/app/shared/shared-abuse-list/abuse-details.component.ts23src/app/shared/shared-moderation/abuse.service.ts161 + src/app/shared/shared-abuse-list/abuse-details.component.ts23 + src/app/shared/shared-moderation/abuse.service.ts161 + Server rules サーバールール @@ -7478,67 +7563,67 @@ channel with the same name ()! Thumbnails サムネイル - - - src/app/shared/shared-abuse-list/abuse-details.component.ts25src/app/shared/shared-moderation/abuse.service.ts176 + src/app/shared/shared-abuse-list/abuse-details.component.ts25 + src/app/shared/shared-moderation/abuse.service.ts176 + Internal actions Internal actions - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts56src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts56 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + Delete report 通報を削除する - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + Actions for the flagged account Actions for the flagged account - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + Mark as accepted 承認済としてマーク - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + Mark as rejected 却下としてマーク - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + Add internal note Add internal note - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + Actions for the video Actions for the video - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts79src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts79 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + Block video 動画をブロックする - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + Video blocked. 動画がブロックされました。 - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts357src/app/shared/shared-moderation/video-block.component.ts60 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts357 + src/app/shared/shared-moderation/video-block.component.ts60 + Unblock video 動画のブロックを解除する - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + Video unblocked. 動画のブロックが解除されました。 - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + Do you really want to delete this abuse report? この悪用通報を本当に削除しますか? @@ -7547,28 +7632,28 @@ channel with the same name ()! Abuse deleted. 悪用が削除されました。 - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + Deleted comment コメントが削除されました - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + Messages with reporter 通報者とのメッセージ - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + Messages with moderators モデレーターとのメッセージ - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + Update internal note Update internal note - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + Switch video block to manual Switch video block to manual @@ -7582,23 +7667,23 @@ channel with the same name ()! Do you really want to unblock this video? It will be available again in the videos list. 本当にこの動画のブロックを解除しますか?動画リストに再度表示されます。 - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts132src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts132 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + Unblock ブロック解除 - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts83src/app/+admin/moderation/video-block-list/video-block-list.component.ts134src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts83 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts134 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + Video unblocked. Video unblocked. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts140src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts140 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + yes はい @@ -7707,23 +7792,23 @@ channel with the same name ()! Plugins プラグイン - - src/app/+admin/plugins/shared/plugin-api.service.ts31 + src/app/+admin/plugins/shared/plugin-api.service.ts31 + Themes テーマ - - src/app/+admin/plugins/shared/plugin-api.service.ts35 + src/app/+admin/plugins/shared/plugin-api.service.ts35 + plugin プラグイン - - src/app/+admin/plugins/shared/plugin-api.service.ts43 + src/app/+admin/plugins/shared/plugin-api.service.ts43 + theme テーマ - - src/app/+admin/plugins/shared/plugin-api.service.ts46 + src/app/+admin/plugins/shared/plugin-api.service.ts46 + IP address IPアドレス @@ -7865,8 +7950,8 @@ channel with the same name ()! User created. ユーザー を作成しました。 - - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts77 + Create user ユーザー作成 @@ -7890,23 +7975,23 @@ channel with the same name ()! Update user password ユーザーパスワードを更新する - - src/app/+admin/users/user-edit/user-password.component.ts53 + src/app/+admin/users/user-edit/user-password.component.ts53 + User updated. User updated. - - src/app/+admin/users/user-edit/user-update.component.ts92 + src/app/+admin/users/user-edit/user-update.component.ts92 + Update user ユーザーを更新する - - src/app/+admin/users/user-edit/user-update.component.ts111 + src/app/+admin/users/user-edit/user-update.component.ts111 + An email asking for password reset has been sent to . パスワードの再設定の手順が記載されたメールが に送信されました。 - - src/app/+admin/users/user-edit/user-update.component.ts118 + src/app/+admin/users/user-edit/user-update.component.ts118 + Users list ユーザーリスト @@ -7930,9 +8015,9 @@ channel with the same name ()! Videos will be deleted, comments will be tombstoned. 動画が削除され、コメントも削除されます。 - - - src/app/+admin/users/user-list/user-list.component.ts82src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + src/app/+admin/users/user-list/user-list.component.ts82 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + Ban Ban @@ -7942,9 +8027,9 @@ channel with the same name ()! User won't be able to login anymore, but videos and comments will be kept as is. ユーザーがログイン出来なくなりますが、動画とコメントがそのまま残ります。 - - - src/app/+admin/users/user-list/user-list.component.ts88src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + src/app/+admin/users/user-list/user-list.component.ts88 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + Unban BANを解除 @@ -7955,9 +8040,9 @@ channel with the same name ()! Set Email as Verified メールを確認済みとして設定 - - - src/app/+admin/users/user-list/user-list.component.ts100src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 + src/app/+admin/users/user-list/user-list.component.ts100 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 + Created Created @@ -8016,52 +8101,52 @@ channel with the same name ()! 名のユーザーが削除されました。 - - src/app/+admin/users/user-list/user-list.component.ts201 + src/app/+admin/users/user-list/user-list.component.ts201 + users email set as verified. ユーザー 名のメールアドレスは確認済として設定されています。 - - src/app/+admin/users/user-list/user-list.component.ts213 + src/app/+admin/users/user-list/user-list.component.ts213 + Account unmuted. アカウント のミュートを解除しました。 - - - src/app/shared/shared-moderation/account-blocklist.component.ts42src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + src/app/shared/shared-moderation/account-blocklist.component.ts42 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + Instance unmuted. インスタンス のミュートを解除しました。 - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 + Videos history is enabled 再生履歴が有効になっています - - src/app/+my-library/my-history/my-history.component.ts114 + src/app/+my-library/my-history/my-history.component.ts114 + Videos history is disabled 再生履歴が無効になっています - - src/app/+my-library/my-history/my-history.component.ts115 + src/app/+my-library/my-history/my-history.component.ts115 + Delete videos history 再生履歴を削除 - - src/app/+my-library/my-history/my-history.component.ts127 + src/app/+my-library/my-history/my-history.component.ts127 + Are you sure you want to delete all your videos history? 再生履歴をすべて削除してもよろしいですか? - - src/app/+my-library/my-history/my-history.component.ts128 + src/app/+my-library/my-history/my-history.component.ts128 + Videos history deleted 再生履歴を削除しました - - src/app/+my-library/my-history/my-history.component.ts136 + src/app/+my-library/my-history/my-history.component.ts136 + My watch history 視聴履歴 @@ -8101,24 +8186,24 @@ channel with the same name ()! You current password is invalid. 現在のパスワードは無効です。 - - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + Password updated. パスワードは変更されました。 - - src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted. 本当にアカウントを削除しますか?チャンネル、動画、コメントを含めた全てのデータが削除されます。他のサーバーやサードパーティによってキャッシュされたコンテンツは、もう削除できなくなるかもしれません。 - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + Type your username to confirm 確認のためにユーザー名を入力してください - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + Delete your account Delete your account @@ -8127,19 +8212,19 @@ channel with the same name ()! Delete my account アカウントを削除する - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + Your account is deleted. あなたのアカウントは削除されました。 - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + Interface settings updated. 外観設定が更新されました。 - - - src/app/shared/shared-user-settings/user-interface-settings.component.ts73src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + src/app/shared/shared-user-settings/user-interface-settings.component.ts73 + src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + New video from your subscriptions 登録チャンネルから新しい動画がアップロードされました @@ -8234,8 +8319,8 @@ channel with the same name ()! Profile updated. プロフィールを更新しました。 - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 + People can find you using @@ People can find you using @@ @@ -8247,41 +8332,41 @@ channel with the same name ()! Avatar changed. アバターを変更しました。 - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts44src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + avatar アバター - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 + src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 + Avatar deleted. アバターを削除しました。 - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts61src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 + src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 + Unknown language 不明な言語 - - src/app/shared/shared-forms/select/select-languages.component.ts41 + src/app/shared/shared-forms/select/select-languages.component.ts41 + Too many languages are enabled. Please enable them all or stay below 20 enabled languages. 非常に多くの言語が設定されています。全ての言語を有効にするか、または20言語以下に設定してください。 - - src/app/shared/shared-user-settings/user-video-settings.component.ts76 + src/app/shared/shared-user-settings/user-video-settings.component.ts76 + Video settings updated. 動画設定が更新されました。 - - src/app/shared/shared-user-settings/user-video-settings.component.ts121 + src/app/shared/shared-user-settings/user-video-settings.component.ts121 + Display/Video settings updated. 表示・動画設定が更新されました。 - - src/app/shared/shared-user-settings/user-video-settings.component.ts130 + src/app/shared/shared-user-settings/user-video-settings.component.ts130 + Video channel created. 動画チャンネル を作成しました。 @@ -8295,23 +8380,23 @@ channel with the same name ()! Video channel updated. 動画チャンネル: を更新しました。 - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 + Banner changed. バナーが変更されました。 - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 + banner バナー - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 + Banner deleted. バナーが削除されました。 - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 + Video channel deleted. 動画チャンネル を削除しました。 @@ -8367,8 +8452,8 @@ channel with the same name ()! Playlist created. プレイリスト を作成しました。 - - src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + Create Create @@ -8401,15 +8486,15 @@ channel with the same name ()! Playlist updated. プレイリスト: を更新しました。 - - src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + Do you really want to delete ? 本当にプレイリスト を削除してもよろしいですか? - - - - src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34src/app/+my-library/my-videos/my-videos.component.ts143 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34 + src/app/+my-library/my-videos/my-videos.component.ts143 + Change ownership 所有権を変更する @@ -8434,15 +8519,15 @@ channel with the same name ()! Do you really want to delete videos? 本当に 個の動画を削除してもよろしいですか? - - src/app/+my-library/my-videos/my-videos.component.ts116 + src/app/+my-library/my-videos/my-videos.component.ts116 + videos deleted. 個の動画を削除しました。 - - src/app/+my-library/my-videos/my-videos.component.ts133 + src/app/+my-library/my-videos/my-videos.component.ts133 + Do you really want to delete ? 本当に動画 @@ -8456,14 +8541,14 @@ channel with the same name ()! Video deleted. 動画 を削除しました。 - - - src/app/+my-library/my-videos/my-videos.component.ts151src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + src/app/+my-library/my-videos/my-videos.component.ts151 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + Ownership change request sent. 所有権の変更リクエストが送信されました。 - - src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 + src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 + Sort by Sort by @@ -8525,9 +8610,9 @@ channel with the same name ()! max size 最大サイズ - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Maximize editor @@ -8541,13 +8626,13 @@ channel with the same name ()! Now please check your emails to verify your account and complete signup. アカウントの認証とアカウント作成を完了するため、メールをチェックしてください。 - - src/app/+signup/+register/register.component.ts129 + src/app/+signup/+register/register.component.ts129 + You are now logged in as ! としてログインしています! - - src/app/+signup/+register/register.component.ts137 + src/app/+signup/+register/register.component.ts137 + An email with verification link will be sent to . 確認リンクを記載したメールが に送信されます。 @@ -8559,13 +8644,12 @@ channel with the same name ()! src/app/+reset-password/reset-password.component.ts38 src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts33 - Subscribe to the account アカウントを購読する - - - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts713 + src/app/+video-channels/video-channels.component.ts71 + src/app/+videos/+video-watch/video-watch.component.ts713 + PLAYLISTS プレイリスト @@ -8577,38 +8661,38 @@ channel with the same name ()! Focus the search bar 検索バーを絞り込む - - src/app/app.component.ts270 + src/app/app.component.ts270 + Toggle the left menu メニューの表示/非表示 - - src/app/app.component.ts275 + src/app/app.component.ts275 + Go to the discover videos page ディスカバーページへ移動 - - src/app/app.component.ts280 + src/app/app.component.ts280 + Go to the trending videos page トレンドのページへ移動する - - src/app/app.component.ts285 + src/app/app.component.ts285 + Go to the recently added videos page 最近投稿された動画ページへ移動 - - src/app/app.component.ts290 + src/app/app.component.ts290 + Go to the local videos page ローカル動画のページへ移動 - - src/app/app.component.ts295 + src/app/app.component.ts295 + Go to the videos upload page 動画のアップロードページへ移動する - - src/app/app.component.ts300 + src/app/app.component.ts300 + Go to my subscriptions 自分の登録チャンネルへ移動 @@ -8639,8 +8723,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular You need to reconnect. 再接続する必要があります。 - - src/app/core/auth/auth.service.ts221 + src/app/core/auth/auth.service.ts221 + Keyboard Shortcuts: キーボードショートカット: @@ -8665,8 +8749,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Trending トレンド - - src/app/+videos/video-list/videos-list-common-page.component.ts201src/app/core/menu/menu.service.ts131 + src/app/+videos/video-list/videos-list-common-page.component.ts201 + src/app/core/menu/menu.service.ts131 + ON ON @@ -8729,54 +8814,54 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Today 今日 - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts123 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts123 + Yesterday 昨日 - - src/app/shared/shared-video-miniature/videos-list.component.ts124 + src/app/shared/shared-video-miniature/videos-list.component.ts124 + This week 今週 - - src/app/shared/shared-video-miniature/videos-list.component.ts125 + src/app/shared/shared-video-miniature/videos-list.component.ts125 + This month 今月 - - src/app/shared/shared-video-miniature/videos-list.component.ts126 + src/app/shared/shared-video-miniature/videos-list.component.ts126 + Last month 先月 - - src/app/shared/shared-video-miniature/videos-list.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts127 + Older もっと前 - - src/app/shared/shared-video-miniature/videos-list.component.ts128 + src/app/shared/shared-video-miniature/videos-list.component.ts128 + Cannot load more videos. Try again later. これ以上の動画を読み込むことができません。時間をおいてまた試して下さい。 - - src/app/shared/shared-video-miniature/videos-list.component.ts225src/app/shared/shared-video-miniature/videos-selection.component.ts127 - + src/app/shared/shared-video-miniature/videos-list.component.ts225 + src/app/shared/shared-video-miniature/videos-selection.component.ts127 + Last 7 days - 過去 7 日間 + 過去7日間 src/app/+search/search-filters.component.ts45 Last 30 days - 過去 30 日間 + 過去30日間 src/app/+search/search-filters.component.ts49 Last 365 days - 過去 365 日間 + 過去365日間 src/app/+search/search-filters.component.ts53 @@ -8797,17 +8882,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Short (< 4 min) - 短い (< 4 分) + 短い(< 4 分) src/app/+search/search-filters.component.ts71 Medium (4-10 min) - 中間 (4 ~ 10 分) + 中間(4 ~ 10 分) src/app/+search/search-filters.component.ts75 Long (> 10 min) - 長い (> 10 分) + 長い(> 10 分) src/app/+search/search-filters.component.ts79 @@ -8823,24 +8908,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Views 視聴回数 - - - src/app/+search/search-filters.component.ts94 + src/app/+search/search-filters.component.ts94 + Search index is unavailable. Retrying with instance results instead. Search index is unavailable. Retrying with instance results instead. - - src/app/+search/search.component.ts163 + src/app/+search/search.component.ts163 + Search error 検索エラー - - src/app/+search/search.component.ts164 + src/app/+search/search.component.ts164 + PeerTube instance host filter is invalid PeerTube instance host filter is invalid - - src/app/+search/search.component.ts332 + src/app/+search/search.component.ts332 + Search 検索 @@ -9294,17 +9378,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Description must be at least 3 characters long. 説明は 3 文字以上にする必要があります。 - - - - src/app/shared/form-validators/user-validators.ts125src/app/shared/form-validators/video-channel-validators.ts36src/app/shared/form-validators/video-playlist-validators.ts33 + src/app/shared/form-validators/user-validators.ts125 + src/app/shared/form-validators/video-channel-validators.ts36 + src/app/shared/form-validators/video-playlist-validators.ts33 + Description cannot be more than 1000 characters long. 説明は 1,000 文字以内でなければなりません。 - - - - src/app/shared/form-validators/user-validators.ts126src/app/shared/form-validators/video-channel-validators.ts37src/app/shared/form-validators/video-playlist-validators.ts34 + src/app/shared/form-validators/user-validators.ts126 + src/app/shared/form-validators/video-channel-validators.ts37 + src/app/shared/form-validators/video-playlist-validators.ts34 + You must agree with the instance terms in order to register on it. インスタンスにアカウントを作成するには、必ずインスタンスの利用規約に同意しなければなりません。 @@ -9323,23 +9407,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display name is required. 表示名は必須です。 - - - - src/app/shared/form-validators/user-validators.ts155src/app/shared/form-validators/video-channel-validators.ts24src/app/shared/form-validators/video-playlist-validators.ts12 + src/app/shared/form-validators/user-validators.ts155 + src/app/shared/form-validators/video-channel-validators.ts24 + src/app/shared/form-validators/video-playlist-validators.ts12 + Display name must be at least 1 character long. 表示名は 1 文字以上にする必要があります。 - - - - src/app/shared/form-validators/user-validators.ts156src/app/shared/form-validators/video-channel-validators.ts25src/app/shared/form-validators/video-playlist-validators.ts13 + src/app/shared/form-validators/user-validators.ts156 + src/app/shared/form-validators/video-channel-validators.ts25 + src/app/shared/form-validators/video-playlist-validators.ts13 + Display name cannot be more than 50 characters long. 表示名は 50 文字以内でなければなりません。 - - - src/app/shared/form-validators/user-validators.ts157src/app/shared/form-validators/video-channel-validators.ts26 + src/app/shared/form-validators/user-validators.ts157 + src/app/shared/form-validators/video-channel-validators.ts26 + Report reason is required. 通報理由が必要です。 @@ -9423,33 +9507,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Name is required. 名前は必須です。 - - src/app/shared/form-validators/video-channel-validators.ts10 + src/app/shared/form-validators/video-channel-validators.ts10 + Name must be at least 1 character long. 名前は 1 文字以上にする必要があります。 - - src/app/shared/form-validators/video-channel-validators.ts11 + src/app/shared/form-validators/video-channel-validators.ts11 + Name cannot be more than 50 characters long. 名前は 50 文字以内でなければなりません。 - - src/app/shared/form-validators/video-channel-validators.ts12 + src/app/shared/form-validators/video-channel-validators.ts12 + Name should be lowercase alphanumeric; dots and underscores are allowed. 名前には小文字の英数字とドット(.)、アンダースコア(_)が利用できます。 - - src/app/shared/form-validators/video-channel-validators.ts13 + src/app/shared/form-validators/video-channel-validators.ts13 + Support text must be at least 3 characters long. 支持テキストは 3 文字以上にする必要があります。 - - src/app/shared/form-validators/video-channel-validators.ts47 + src/app/shared/form-validators/video-channel-validators.ts47 + Support text cannot be more than 1000 characters long Support text cannot be more than 1000 characters long - - src/app/shared/form-validators/video-channel-validators.ts48 + src/app/shared/form-validators/video-channel-validators.ts48 + See the documentation to learn how to use the PeerTube live streaming feature. ドキュメントを読んで、PeerTubeのライブ配信の特徴を知ろう。 @@ -9614,14 +9698,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular PeerTube cannot handle this kind of file. Accepted extensions are }. PeerTube cannot handle this kind of file. Accepted extensions are }. src/app/shared/shared-forms/reactive-file.component.ts56 - - All categoriesAll categories + + + All categories + All categories src/app/shared/shared-forms/select/select-categories.component.ts 24 - - You can't select more than itemsYou can't select more than items + + + You can't select more than items + You can't select more than items src/app/shared/shared-forms/select/select-checkbox-all.component.ts 81 @@ -9630,8 +9718,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Add a new option Add a new option - - src/app/shared/shared-forms/select/select-checkbox.component.ts27 + src/app/shared/shared-forms/select/select-checkbox.component.ts27 + Custom value... Custom value... @@ -9910,9 +9998,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular All languages 全ての言語 - - - src/app/+videos/+video-edit/shared/video-edit.component.ts180src/app/shared/shared-forms/select/select-languages.component.ts25 + src/app/+videos/+video-edit/shared/video-edit.component.ts180 + src/app/shared/shared-forms/select/select-languages.component.ts25 + Hidden 表示しない @@ -9926,8 +10014,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Displayed 表示する - - src/app/shared/shared-instance/instance-features-table.component.ts55src/app/shared/shared-video-miniature/video-filters.model.ts227 + src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-video-miniature/video-filters.model.ts227 + ~ 1 minute ~ 1分 @@ -9962,16 +10051,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (channel page) (チャンネルページへ) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (アカウントページへ) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis 強調 @@ -10000,8 +10089,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Close search Close search - - src/app/shared/shared-main/misc/simple-search-input.component.html19 + src/app/shared/shared-main/misc/simple-search-input.component.html19 + users banned. ユーザー人をBANしました。 @@ -10030,19 +10119,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular User deleted. ユーザー を削除しました。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + User email set as verified ユーザー のメールアドレスが確認されました - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + Account muted. アカウント をミュートしました。 - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + Instance muted. インスタンス をミュートしました。 @@ -10054,19 +10143,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account muted by the instance. アカウント をあなたのインスタンスからミュートしました。 - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts446src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts446 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + Mute server ミュートしたサーバー - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + Server muted by the instance. サーバーをあなたのインスタンスからミュートしました。 - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + Add a message to communicate with the reporter Add a message to communicate with the reporter @@ -10080,158 +10169,158 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. アカウント をあなたのインスタンスからミュート解除しました。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + Instance muted by the instance. インスタンス をあなたのインスタンスがミュートしました。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + Instance unmuted by the instance. インスタンス をあなたのインスタンスからミュート解除しました。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + Are you sure you want to remove all the comments of this account? 本当にこのアカウントの全てのコメントを削除しますか? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + Delete account comments アカウントのコメントを削除する - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + Will remove comments of this account (may take several minutes). このアカウントからのコメントは削除されます(処理に数分かかる場合があります)。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + Edit user ユーザーの編集 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + Change quota, role, and more. Change quota, role, and more. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + Delete user ユーザーの削除 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + Unban user ユーザーのBanの解除 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + Allow the user to login and create videos/comments again Allow the user to login and create videos/comments again - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + Mute this account このアカウントをミュート - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + Hide any content from that user from you. ユーザーからの全てのコンテンツを隠す。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + Unmute this account このアカウントのミュートを解除 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + Show back content from that user for you. ユーザーからの全てのコンテンツを再度表示する。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + Mute the instance インスタンスをミュート - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + Hide any content from that instance for you. インスタンスからの全てのコンテンツを隠す。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + Unmute the instance インスタンスのミュートを解除 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + Show back content from that instance for you. インスタンスからの全てのコンテンツを再度表示する。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + Remove comments from your videos 動画からコメントを削除する - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + Remove comments made by this account on your videos. このアカウントによって作成された、動画へのコメントを削除する。 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + Mute this account by your instance あなたのインスタンスからこのアカウントをミュート - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + Hide any content from that user from you, your instance and its users. Hide any content from that user from you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + Unmute this account by your instance あなたのインスタンスからこのアカウントのミュートを解除 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + Show this user's content to the users of this instance again. Show this user's content to the users of this instance again. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + Mute the instance by your instance あなたのインスタンスからインスタンスをミュート - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + Hide any content from that instance from you, your instance and its users. Hide any content from that instance from you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + Unmute the instance by your instance あなたのインスタンスからインスタンスのミュートを解除 - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + Show back content from that instance for you, your instance and its users. Show back content from that instance for you, your instance and its users. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + Remove comments from your instance インスタンスからコメントを削除する - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + Remove comments made by this account from your instance. Remove comments made by this account from your instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + Violent or repulsive 暴力的または非常に不快 @@ -10260,38 +10349,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes. Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes. - - src/app/shared/shared-moderation/abuse.service.ts151 + src/app/shared/shared-moderation/abuse.service.ts151 + Privacy breach or doxxing Privacy breach or doxxing - - src/app/shared/shared-moderation/abuse.service.ts155 + src/app/shared/shared-moderation/abuse.service.ts155 + Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details). Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details). - - src/app/shared/shared-moderation/abuse.service.ts157 + src/app/shared/shared-moderation/abuse.service.ts157 + Infringes your copyright wrt. the regional laws with which the server must comply. Infringes your copyright wrt. the regional laws with which the server must comply. - - src/app/shared/shared-moderation/abuse.service.ts162 + src/app/shared/shared-moderation/abuse.service.ts162 + Breaks server rules Breaks server rules - - src/app/shared/shared-moderation/abuse.service.ts166 + src/app/shared/shared-moderation/abuse.service.ts166 + Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server. Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server. - - src/app/shared/shared-moderation/abuse.service.ts168 + src/app/shared/shared-moderation/abuse.service.ts168 + The above can only be seen in thumbnails. The above can only be seen in thumbnails. - - src/app/shared/shared-moderation/abuse.service.ts177 + src/app/shared/shared-moderation/abuse.service.ts177 + Captions 字幕 @@ -10301,23 +10390,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular The above can only be seen in captions (please describe which). The above can only be seen in captions (please describe which). - - src/app/shared/shared-moderation/abuse.service.ts182 + src/app/shared/shared-moderation/abuse.service.ts182 + Too many attempts, please try again after minutes. 試行回数が多すぎます。 分後にもう一度お試しください。 - - src/app/core/rest/rest-extractor.service.ts70 + src/app/core/rest/rest-extractor.service.ts70 + Too many attempts, please try again later. 試行回数が多すぎます。しばらくしてからもう一度お試しください。 - - src/app/core/rest/rest-extractor.service.ts72 + src/app/core/rest/rest-extractor.service.ts72 + Server error. Please retry later. サーバーエラーです。 後でもう一度やり直してください。 - - src/app/core/rest/rest-extractor.service.ts75 + src/app/core/rest/rest-extractor.service.ts75 + Subscribed to all current channels of . You will be notified of all their new videos. Subscribed to all current channels of . You will be notified of all their new videos. @@ -10369,8 +10458,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator モデレーター - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… 動画、プレイリスト、チャンネルを検索する… @@ -10384,30 +10473,30 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 動画は によって削除されました。 - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + Video added in at timestamps Video added in at timestamps - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + Video added in 動画 は追加されました。 - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + Timestamps updated タイムスタンプが更新されました - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + Starts at Starts at @@ -10427,61 +10516,61 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Delete video 動画の削除 - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + Actions for the comment Actions for the comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + Delete comment コメントの削除 - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + Do you really want to delete this comment? 本当にこのコメントを削除しますか? - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + Comment deleted. コメントが削除されました。 - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + Encoder エンコーダー - - src/app/shared/shared-video-miniature/video-download.component.ts213 + src/app/shared/shared-video-miniature/video-download.component.ts213 + Format name ファイルフォーマット - - src/app/shared/shared-video-miniature/video-download.component.ts214 + src/app/shared/shared-video-miniature/video-download.component.ts214 + Size 動画サイズ - - src/app/shared/shared-video-miniature/video-download.component.ts215 + src/app/shared/shared-video-miniature/video-download.component.ts215 + Bitrate ビットレート - - - src/app/shared/shared-video-miniature/video-download.component.ts217src/app/shared/shared-video-miniature/video-download.component.ts240 + src/app/shared/shared-video-miniature/video-download.component.ts217 + src/app/shared/shared-video-miniature/video-download.component.ts240 + Codec コーデック - - src/app/shared/shared-video-miniature/video-download.component.ts237 + src/app/shared/shared-video-miniature/video-download.component.ts237 + Copied コピーしました - - - src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts197 + src/app/shared/shared-forms/input-toggle-hidden.component.ts47 + src/app/shared/shared-video-miniature/video-download.component.ts197 + Copy コピー @@ -10496,26 +10585,26 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to delete this video? 本当にこの動画を削除しますか? - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/shared/shared-abuse-list/abuse-list-table.component.ts387src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts387 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + Video deleted. 動画が削除されました。 - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts98src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts98 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + Actions for the reporter Actions for the reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + Mute reporter 通報者をミュートする - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + This video will be duplicated by your instance. この動画はインスタンス内で重複しています。 @@ -10529,9 +10618,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display live information ライブ配信の情報を表示 - - - src/app/+my-library/my-videos/my-videos.component.ts174src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + src/app/+my-library/my-videos/my-videos.component.ts174 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + Update 編集 @@ -10594,9 +10683,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mute account アカウントをミュートする - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts304src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts304 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + Open video actions Open video actions @@ -10612,8 +10701,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mute server account サーバーのアカウントをミュートする - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + Report 通報 @@ -10683,8 +10772,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular To import インポートする src/app/shared/shared-video-miniature/video-miniature.component.ts175 - - Subscribe to RSS feed ""Subscribe to RSS feed "" + + + Subscribe to RSS feed "" + Subscribe to RSS feed "" src/app/shared/shared-video-miniature/videos-list.component.html 8 @@ -10716,23 +10807,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Only I can see this video 自分だけがこの動画を視聴することができます - - src/app/shared/shared-main/video/video.service.ts325 + src/app/shared/shared-main/video/video.service.ts325 + Only shareable via a private link プライベートURLのみで共有できます - - src/app/shared/shared-main/video/video.service.ts326 + src/app/shared/shared-main/video/video.service.ts326 + Anyone can see this video 誰でもこの動画を視聴することができます - - src/app/shared/shared-main/video/video.service.ts327 + src/app/shared/shared-main/video/video.service.ts327 + Only users of this instance can see this video このインスタンスのユーザーのみが視聴することができる - - src/app/shared/shared-main/video/video.service.ts328 + src/app/shared/shared-main/video/video.service.ts328 + viewers 視聴者数 @@ -10746,209 +10837,209 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Close 閉じる - - node_modules/@ng-bootstrap/src/alert/alert.ts58 + node_modules/@ng-bootstrap/src/alert/alert.ts58 + Slide of Slide of Currently selected slide number read by screen reader - - node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + Previous 前 - - node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + Next 次 - - node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + Previous month 先月 - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + Next month 来月 - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + Select month 月を選択 - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + Select year 年を選択 - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + «« «« - - node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + « « - - node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + » » - - node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + »» »» - - node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + First First - - node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + Previous Previous - - node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + Next 次 - - node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + Last Last - - node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + - - node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + HH HH - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + Hours 時間 - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + MM MM - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + Minutes 分 - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + Increment hours 時間の値を増やす - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + Decrement hours 時間の値を減らす - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + Increment minutes 分の値を増やす - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + Decrement minutes 分の値を減らす - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + SS SS - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + Seconds 秒 - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + Increment seconds 秒の値を増やす - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + Decrement seconds 秒の値を減らす - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + Close 閉じる - - node_modules/@ng-bootstrap/src/toast/toast.ts78 + node_modules/@ng-bootstrap/src/toast/toast.ts78 + Video to import updated. 動画のインポートが完了しました。 - - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + Your video was uploaded to your account and is private. 動画はこのアカウントに非公開でアップロードされています。 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? 関連するデータ (タグ、説明など) は失われます。このページから移動してもよろしいですか? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? 動画はまだアップロードされていません。このページから移動してもよろしいですか? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload アップロード - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload アップロード - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. 動画が投稿されました。 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. 保存していない変更があります。 ページを移動すると、変更した内容は失われます。 - - src/app/+videos/+video-edit/video-update.component.ts94 + src/app/+videos/+video-edit/video-update.component.ts94 + Video updated. 動画が更新されました。 @@ -10972,33 +11063,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Delete and re-draft Delete and re-draft - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + Do you really want to delete and re-draft this comment? Do you really want to delete and re-draft this comment? - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + Stop autoplaying next video 次の動画への自動再生を止める - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + Autoplay next video 自動再生 - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + Stop looping playlist videos プレイリストのループを止める - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + Loop playlist videos プレイリストをループ再生する - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 + Placeholder image Placeholder image @@ -11010,28 +11101,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? - - src/app/+videos/+video-watch/video-watch.component.ts296 + src/app/+videos/+video-watch/video-watch.component.ts296 + Redirection リダイレクト - - src/app/+videos/+video-watch/video-watch.component.ts297 + src/app/+videos/+video-watch/video-watch.component.ts297 + This video contains mature or explicit content. Are you sure you want to watch it? この動画には成人向けまたは過激なコンテンツが含まれています。本当に再生しますか? - - src/app/+videos/+video-watch/video-watch.component.ts343 + src/app/+videos/+video-watch/video-watch.component.ts343 + Mature or explicit content 成人向けまたは過激なコンテンツ - - src/app/+videos/+video-watch/video-watch.component.ts344 + src/app/+videos/+video-watch/video-watch.component.ts344 + Up Next Up Next - - src/app/+videos/+video-watch/video-watch.component.ts415 + src/app/+videos/+video-watch/video-watch.component.ts415 + Cancel キャンセル @@ -11040,63 +11131,63 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Autoplay is suspended 自動再生は停止中です - - src/app/+videos/+video-watch/video-watch.component.ts417 + src/app/+videos/+video-watch/video-watch.component.ts417 + Enter/exit fullscreen (requires player focus) Enter/exit fullscreen (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts688 + src/app/+videos/+video-watch/video-watch.component.ts688 + Play/Pause the video (requires player focus) Play/Pause the video (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts689 + src/app/+videos/+video-watch/video-watch.component.ts689 + Mute/unmute the video (requires player focus) Mute/unmute the video (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts690 + src/app/+videos/+video-watch/video-watch.component.ts690 + Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts692 + src/app/+videos/+video-watch/video-watch.component.ts692 + Increase the volume (requires player focus) Increase the volume (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts694 + src/app/+videos/+video-watch/video-watch.component.ts694 + Decrease the volume (requires player focus) Decrease the volume (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts695 + src/app/+videos/+video-watch/video-watch.component.ts695 + Seek the video forward (requires player focus) Seek the video forward (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts697 + src/app/+videos/+video-watch/video-watch.component.ts697 + Seek the video backward (requires player focus) Seek the video backward (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts698 + src/app/+videos/+video-watch/video-watch.component.ts698 + Increase playback rate (requires player focus) 再生速度を早くする (アクティブのプレーヤーが必要) - - src/app/+videos/+video-watch/video-watch.component.ts700 + src/app/+videos/+video-watch/video-watch.component.ts700 + Decrease playback rate (requires player focus) 再生速度を遅くする (アクティブのプレーヤーが必要) - - src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+videos/+video-watch/video-watch.component.ts701 + Navigate in the video frame by frame (requires player focus) Navigate in the video frame by frame (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts703 + src/app/+videos/+video-watch/video-watch.component.ts703 + Like the video 高く評価 @@ -11115,16 +11206,14 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Recently added 最近投稿された動画 - - - src/app/+videos/video-list/videos-list-common-page.component.ts195src/app/core/menu/menu.service.ts137 + src/app/+videos/video-list/videos-list-common-page.component.ts195 + src/app/core/menu/menu.service.ts137 + Videos from your subscriptions 登録チャンネルからの動画 - - src/app/+videos/video-list/video-user-subscriptions.component.ts30 - - + src/app/+videos/video-list/video-user-subscriptions.component.ts30 + Subscriptions 登録チャンネル @@ -11148,12 +11237,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos ローカル動画 - - - - - src/app/+videos/video-list/videos-list-common-page.component.ts189src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 - Only videos uploaded on this instance are displayedOnly videos uploaded on this instance are displayed + src/app/+videos/video-list/videos-list-common-page.component.ts189 + src/app/core/menu/menu.service.ts142 + src/app/core/menu/menu.service.ts143 + + + Only videos uploaded on this instance are displayed + Only videos uploaded on this instance are displayed src/app/+videos/video-list/videos-list-common-page.component.ts 190 @@ -11162,21 +11252,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Discover videos ディスカバー - - - src/app/+videos/videos-routing.module.ts19src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts19 + src/app/core/menu/menu.service.ts124 + Trending videos トレンド - - - src/app/core/menu/menu.service.ts130 + src/app/core/menu/menu.service.ts130 + Recently added videos 最近投稿された動画 - - - src/app/core/menu/menu.service.ts136 + src/app/core/menu/menu.service.ts136 + Upload a video 動画をアップロード diff --git a/client/src/locale/angular.jbo.xlf b/client/src/locale/angular.jbo.xlf index 159f120e3..ce1e053f9 100644 --- a/client/src/locale/angular.jbo.xlf +++ b/client/src/locale/angular.jbo.xlf @@ -393,7 +393,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -455,10 +455,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitlessubtitles src/app/shared/shared-video-miniature/video-download.component.ts55 @@ -470,7 +470,7 @@ nu sisti - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download nu kibycpa @@ -2481,7 +2481,7 @@ galfi le mi japyvla src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10357,20 +10357,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 UploadUpload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload @@ -10379,13 +10379,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. .i lo se vidvi mo'u co'a gubni - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.kab.xlf b/client/src/locale/angular.kab.xlf index b879301df..6d0ac4283 100644 --- a/client/src/locale/angular.kab.xlf +++ b/client/src/locale/angular.kab.xlf @@ -269,7 +269,7 @@ tavidyut - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Aseɣwen-a deg-s ajuṭun sli, ur ilaq ara ad yettwabḍu ula d yiwen. @@ -337,12 +337,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles iduzwilen @@ -560,7 +560,7 @@ Sefsex - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 No results. Ulac agemmuḍ. @@ -2609,7 +2609,7 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Nesḥassef, tamahilt n usali tensa i umiḍan-ik·im. Ma yella tebɣiḍ ad ternuḍ tividyutin, anedbal yezmer ad yekkes asekker afmiḍi-inek·inem. @@ -10576,32 +10576,32 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Tavidyut-ik·im tettwasuli ɣer umiḍan-ik·im yerna d tusligt. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Maca ad tesruḥeḍ isefka yemcudden (tibzimin, aglam...), d tidet tebɣiḍ ad teffɣeḍ seg usebter-a? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Tavidyut-a mazal ur d-tettwasuli ara, d tidet tebɣiḍ ad teffɣeḍ seg usebter-a? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Sali - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Sali-d - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Tavidyut yettwasuffɣen. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. You have unsaved changes! If you leave, your changes will be lost. diff --git a/client/src/locale/angular.ko-KR.xlf b/client/src/locale/angular.ko-KR.xlf index 07295d0f0..18a1c1be1 100644 --- a/client/src/locale/angular.ko-KR.xlf +++ b/client/src/locale/angular.ko-KR.xlf @@ -343,7 +343,7 @@ video 동영상 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -407,10 +407,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles @@ -423,7 +423,7 @@ 취소 - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download 다운로드 @@ -2538,7 +2538,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10939,35 +10939,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video published. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.lt-LT.xlf b/client/src/locale/angular.lt-LT.xlf index fd9256d7a..90056bb81 100644 --- a/client/src/locale/angular.lt-LT.xlf +++ b/client/src/locale/angular.lt-LT.xlf @@ -379,7 +379,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -441,10 +441,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitlessubtitles src/app/shared/shared-video-miniature/video-download.component.ts55 @@ -454,7 +454,7 @@ Cancel - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Download @@ -2436,7 +2436,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10255,20 +10255,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 UploadUpload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload @@ -10277,13 +10277,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video published. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.ml.xlf b/client/src/locale/angular.ml.xlf index 91a3f5808..e4bec543c 100644 --- a/client/src/locale/angular.ml.xlf +++ b/client/src/locale/angular.ml.xlf @@ -437,7 +437,7 @@ MODERATION - + മോഡറേഷൻ src/app/+about/about-instance/about-instance.component.html 128,129 @@ -537,6 +537,7 @@ Contact administrator + അഡ്മിനുമായി ബന്ധപ്പെടുക src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -688,7 +689,7 @@ You already sent this form recently - + നിങ്ങൾ കുറച്ച് നേരം മുമ്പ് ഈ ഫോം അയയ്ച്ചായിരുന്നു src/app/+about/about-instance/contact-admin-modal.component.ts 83 @@ -976,7 +977,7 @@ About this instance's network - + ഈ ഇൻസ്റ്റൻസിന്റെ നെറ്റ്വർക്കിനെ കുറിച്ച് src/app/+about/about-routing.module.ts 45 diff --git a/client/src/locale/angular.nb-NO.xlf b/client/src/locale/angular.nb-NO.xlf index 8b89ef6be..4f82cfb5d 100644 --- a/client/src/locale/angular.nb-NO.xlf +++ b/client/src/locale/angular.nb-NO.xlf @@ -240,7 +240,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -301,10 +301,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles undertekster @@ -314,7 +314,7 @@ Cancel Avbryt - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Last ned @@ -2399,7 +2399,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10682,35 +10682,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video published. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.nl-NL.xlf b/client/src/locale/angular.nl-NL.xlf index abbd4df9c..877fa5823 100644 --- a/client/src/locale/angular.nl-NL.xlf +++ b/client/src/locale/angular.nl-NL.xlf @@ -1,16 +1,17 @@ - - + - Close the left menuClose the left menu - - src/app/app.component.ts133 - Open the left menuOpen the left menu - - src/app/app.component.ts135 - + Close the left menu + Sluit linkermenu + src/app/app.component.ts133 + + + Open the left menu + Open linkermenu + src/app/app.component.ts135 + You don't have notifications. Je hebt geen meldingen. @@ -74,13 +75,14 @@ commented your video heeft op je video gereageerd - - src/app/shared/shared-main/users/user-notifications.component.html99 + src/app/shared/shared-main/users/user-notifications.component.html99 + The notification concerns a comment now unavailable De melding betreft een niet (meer) beschikbare video - - src/app/shared/shared-main/users/user-notifications.component.html107src/app/shared/shared-main/users/user-notifications.component.html172 + src/app/shared/shared-main/users/user-notifications.component.html107 + src/app/shared/shared-main/users/user-notifications.component.html172 + Your video has been published Jouw video @@ -88,8 +90,8 @@ is gepubliceerd - - src/app/shared/shared-main/users/user-notifications.component.html116 + src/app/shared/shared-main/users/user-notifications.component.html116 + Your video import succeeded @@ -97,47 +99,52 @@ is voltooid - - src/app/shared/shared-main/users/user-notifications.component.html124 + src/app/shared/shared-main/users/user-notifications.component.html124 + Your video import failed Je video-import is mislukt - - src/app/shared/shared-main/users/user-notifications.component.html132 + src/app/shared/shared-main/users/user-notifications.component.html132 + User registered on your instance Gebruiker is geregistreerd op je exemplaar van PeerTube - - src/app/shared/shared-main/users/user-notifications.component.html140 + src/app/shared/shared-main/users/user-notifications.component.html140 + is following your channel your account volgt nu je kanaal je account - - src/app/shared/shared-main/users/user-notifications.component.html150 - mentioned you on video mentioned you on video + src/app/shared/shared-main/users/user-notifications.component.html150 + + + mentioned you on video + heeft je genoemd video src/app/shared/shared-main/users/user-notifications.component.html 164 - Your instance has a new follower () awaiting your approval Een nieuwe volger van je exemplaar van PeerTube ( ) wacht op je goedkeuring - - src/app/shared/shared-main/users/user-notifications.component.html181 + src/app/shared/shared-main/users/user-notifications.component.html181 + Your instance automatically followed Je exemplaar van PeerTube heeft automatisch gevolgd - - src/app/shared/shared-main/users/user-notifications.component.html190 - A new version of the plugin/theme is available: A new version of the plugin/theme is available: + src/app/shared/shared-main/users/user-notifications.component.html190 + + + A new version of the plugin/theme is available: + Een nieuwe versie van de plugin/thema is beschikbaar: src/app/shared/shared-main/users/user-notifications.component.html 198,199 - - A new version of PeerTube is available: A new version of PeerTube is available: + + + A new version of PeerTube is available: + Een nieuww versie van PeerTube is beschikbaar: src/app/shared/shared-main/users/user-notifications.component.html 206,207 @@ -146,24 +153,39 @@ The notification points to content now unavailable De melding verwijst naar niet beschikbare inhoud - - src/app/shared/shared-main/users/user-notifications.component.html214 + src/app/shared/shared-main/users/user-notifications.component.html214 + Change your avatar - Je avatar wijzigen - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html18 - Remove avatarRemove avatar - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html40 + Wijzig jouw avatar + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html18 + + + Remove avatar + Verwijder avatar + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html40 + - - src/app/+videos/+video-watch/video-watch.component.html77src/app/menu/menu.component.html105src/app/shared/shared-main/buttons/action-dropdown.component.html22src/app/shared/shared-main/misc/top-menu-dropdown.component.html14src/app/shared/shared-main/misc/top-menu-dropdown.component.html24src/app/shared/shared-video-miniature/video-download.component.html27src/app/shared/shared-video-miniature/video-download.component.html52src/app/shared/shared-video-miniature/video-download.component.html78src/app/shared/shared-video-miniature/video-download.component.html89src/app/shared/shared-video-miniature/video-download.component.html101src/app/shared/shared-video-miniature/videos-selection.component.html1 - My watch historyMy watch history - - src/app/+my-library/my-history/my-history.component.html3src/app/+my-library/my-history/my-history.component.ts68 + src/app/+videos/+video-watch/video-watch.component.html77 + src/app/menu/menu.component.html105 + src/app/shared/shared-main/buttons/action-dropdown.component.html22 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html14 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html24 + src/app/shared/shared-video-miniature/video-download.component.html27 + src/app/shared/shared-video-miniature/video-download.component.html52 + src/app/shared/shared-video-miniature/video-download.component.html78 + src/app/shared/shared-video-miniature/video-download.component.html89 + src/app/shared/shared-video-miniature/video-download.component.html101 + src/app/shared/shared-video-miniature/videos-selection.component.html1 + + + My watch history + My watch history + src/app/+my-library/my-history/my-history.component.html3 + src/app/+my-library/my-history/my-history.component.ts68 + Save to Opslaan in @@ -172,8 +194,8 @@ Options Opties - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + Start at Beginnen bij @@ -215,34 +237,41 @@ Display name Weergavenaam - - - - - - - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html60src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html60src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html33src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html33src/app/+signup/+register/register-step-user.component.html8src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html60 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html60 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html33 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html33 + src/app/+signup/+register/register-step-user.component.html8 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71 + Create Creeër - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html8src/app/+admin/users/user-edit/user-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts102 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts92 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 - The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. - src/app/shared/shared-video-miniature/video-download.component.html19 - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 + + The following link contains a private token and should not be shared with anyone. + De volgende link bevat een privé-token en mag met niemand worden gedeeld. + src/app/shared/shared-video-miniature/video-download.component.html19 + + + + src/app/shared/shared-video-miniature/video-download.component.html 39 @@ -251,75 +280,85 @@ subtitles ondertitels - - src/app/shared/shared-video-miniature/video-download.component.ts57 + src/app/shared/shared-video-miniature/video-download.component.ts57 + Format Formaat - - src/app/shared/shared-video-miniature/video-download.component.html74 + src/app/shared/shared-video-miniature/video-download.component.html74 + - - - - src/app/shared/shared-video-miniature/video-download.component.html65src/app/shared/shared-video-miniature/video-download.component.html76src/app/shared/shared-video-miniature/video-download.component.html88 + src/app/shared/shared-video-miniature/video-download.component.html65 + src/app/shared/shared-video-miniature/video-download.component.html76 + src/app/shared/shared-video-miniature/video-download.component.html88 + Video stream Video-stream - - src/app/shared/shared-video-miniature/video-download.component.html85 + src/app/shared/shared-video-miniature/video-download.component.html85 + Audio stream Audio-stream - - src/app/shared/shared-video-miniature/video-download.component.html97 + src/app/shared/shared-video-miniature/video-download.component.html97 + Direct download Directe download - - src/app/shared/shared-video-miniature/video-download.component.html116 + src/app/shared/shared-video-miniature/video-download.component.html116 + Torrent (.torrent file) Torrent (.torrent bestand) - - src/app/shared/shared-video-miniature/video-download.component.html121 - Advanced Advanced - - src/app/shared/shared-video-miniature/video-download.component.html135 - Simple Simple - - src/app/shared/shared-video-miniature/video-download.component.html143 + src/app/shared/shared-video-miniature/video-download.component.html121 + + + Advanced + Geavanceerd + src/app/shared/shared-video-miniature/video-download.component.html135 + + + Simple + Simpel + src/app/shared/shared-video-miniature/video-download.component.html143 + video video + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289 + src/app/shared/shared-video-miniature/video-download.component.ts54 + + + Your video quota is exceeded with this video (video size: , used: , quota: ) + Je video quota is overschreden met deze video (video grootte: , gebruikt: , quota: ) + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 + + Your daily video quota is exceeded with this video (video size: , used: , quota: ) + Je dagelijkse video quota is overschreden met deze video (video grootte: , gebruikt: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 - Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles ondertitels - - src/app/shared/shared-video-miniature/video-download.component.ts55 + src/app/shared/shared-video-miniature/video-download.component.ts55 + Cancel Annuleren - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Downloaden - - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272src/app/shared/shared-video-miniature/video-download.component.html4src/app/shared/shared-video-miniature/video-download.component.html156 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + src/app/shared/shared-video-miniature/video-download.component.html4 + src/app/shared/shared-video-miniature/video-download.component.html156 + Reason... Reden... @@ -330,22 +369,28 @@ Annuleren Annuleer - - src/app/shared/shared-video-miniature/videos-selection.component.html19 - No results.No results. - - src/app/+videos/video-list/overview/video-overview.component.html4src/app/shared/shared-video-miniature/videos-list.component.html41src/app/shared/shared-video-miniature/videos-selection.component.ts23 + src/app/shared/shared-video-miniature/videos-selection.component.html19 + + + No results. + No results. + src/app/+videos/video-list/overview/video-overview.component.html4 + src/app/shared/shared-video-miniature/videos-list.component.html41 + src/app/shared/shared-video-miniature/videos-selection.component.ts23 + Submit Verstuur - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html52src/app/+my-library/my-videos/modals/video-change-ownership.component.html27src/app/shared/shared-moderation/report-modals/report.component.html58src/app/shared/shared-moderation/report-modals/report.component.html58src/app/shared/shared-moderation/report-modals/video-report.component.html96src/app/shared/shared-moderation/video-block.component.html42 - The contact form is not enabled on this instance.The contact form is not enabled on this instance. + src/app/+about/about-instance/contact-admin-modal.component.html52 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html27 + src/app/shared/shared-moderation/report-modals/report.component.html58 + src/app/shared/shared-moderation/report-modals/report.component.html58 + src/app/shared/shared-moderation/report-modals/video-report.component.html96 + src/app/shared/shared-moderation/video-block.component.html42 + + + The contact form is not enabled on this instance. + Het contactformulier is niet ingeschakeld op deze instantie. src/app/+about/about-instance/contact-admin-modal.component.html 56 @@ -372,8 +417,10 @@ Annuleren Blocking this live will automatically terminate the live stream. Deze live-uitzending blokkeren beëindigt automatisch de live-uitzending. src/app/shared/shared-moderation/video-block.component.html33 - - Element not foundElement not found + + + Element not found + Element niet gevonden src/app/shared/shared-search/find-in-bulk.service.ts 80 @@ -387,26 +434,31 @@ Annuleren Unlisted Onvermeld - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html9src/app/shared/shared-video-miniature/video-miniature.component.html6 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html9 + src/app/shared/shared-video-miniature/video-miniature.component.html6 + Private Privé - - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10src/app/shared/shared-video-miniature/video-miniature.component.html7src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10 + src/app/shared/shared-video-miniature/video-miniature.component.html7 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + {VAR_PLURAL, plural, =1 {1 view} other { views}} {VAR_PLURAL, plural, =1 {1 keer bekeken} other { keer bekeken} } src/app/shared/shared-video/video-views-counter.component.html3 - + - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16src/app/shared/shared-video/video-views-counter.component.html3src/app/shared/shared-video/video-views-counter.component.html7 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/shared/shared-video/video-views-counter.component.html3 + src/app/shared/shared-video/video-views-counter.component.html7 + {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} {VAR_PLURAL, plural, =1 {1 kijker} other { kijkers}} @@ -416,45 +468,48 @@ Annuleren - + src/app/shared/shared-video/video-views-counter.component.html 7,8 - - Cannot fetch information of this remote accountCannot fetch information of this remote account - - src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + + + Cannot fetch information of this remote account + Kan geen informatie ophalen van dit externe account + src/app/shared/shared-user-subscription/remote-subscribe.component.ts64 + Blocked Geblokkeerd - - src/app/shared/shared-video-miniature/video-miniature.component.html57 + src/app/shared/shared-video-miniature/video-miniature.component.html57 + Sensitive Gevoelig - - src/app/shared/shared-video-miniature/video-miniature.component.html62 + src/app/shared/shared-video-miniature/video-miniature.component.html62 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { video\'s} } - - src/app/+my-library/+my-video-channels/my-video-channels.component.html32src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + src/app/+my-library/+my-video-channels/my-video-channels.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + Updated Bijgewerkt - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + Unavailable Niet beschikbaar @@ -463,10 +518,10 @@ Annuleren Deleted Verwijderd - - - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html47src/app/shared/shared-abuse-list/abuse-list-table.component.html91src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html47 + src/app/shared/shared-abuse-list/abuse-list-table.component.html91 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + Edit starts/stops at Bewerk beginnen/stoppen bij @@ -475,13 +530,11 @@ Annuleren Save Opslaan - - - - - - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38src/app/shared/shared-user-settings/user-interface-settings.component.html16src/app/shared/shared-user-settings/user-video-settings.component.html72src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38 + src/app/shared/shared-user-settings/user-interface-settings.component.html16 + src/app/shared/shared-user-settings/user-video-settings.component.html72 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + Delete from Verwijderen uit @@ -490,26 +543,51 @@ Annuleren No results. Geen resultaten. - - - - - - - - - - src/app/+videos/video-list/overview/video-overview.component.html4src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44 - Videos with the most interactions for recent videos, minus user historyVideos with the most interactions for recent videos, minus user history - - src/app/+videos/video-list/videos-list-common-page.component.ts203 + src/app/+videos/video-list/overview/video-overview.component.html4 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + + + Videos with the most interactions for recent videos, minus user history + Video's met de meeste interacties voor recente video's, minus gebruikersgeschiedenis + src/app/+videos/video-list/videos-list-common-page.component.ts203 + Delete Verwijderen - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts88src/app/+admin/moderation/video-block-list/video-block-list.component.ts92src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164src/app/+admin/users/user-list/user-list.component.ts81src/app/+admin/users/user-list/user-list.component.ts195src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.html50src/app/+my-library/my-videos/my-videos.component.ts117src/app/+my-library/my-videos/my-videos.component.ts144src/app/+my-library/my-videos/my-videos.component.ts185src/app/+videos/+video-edit/shared/video-edit.component.html178src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts145src/app/shared/shared-abuse-list/abuse-list-table.component.ts388src/app/shared/shared-abuse-list/abuse-list-table.component.ts423src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 - Only live videosOnly live videos + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts88 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts92 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts164 + src/app/+admin/users/user-list/user-list.component.ts81 + src/app/+admin/users/user-list/user-list.component.ts195 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.html50 + src/app/+my-library/my-videos/my-videos.component.ts117 + src/app/+my-library/my-videos/my-videos.component.ts144 + src/app/+my-library/my-videos/my-videos.component.ts185 + src/app/+videos/+video-edit/shared/video-edit.component.html178 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts388 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts423 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + + + Only live videos + Alleen live video's src/app/+my-library/my-videos/my-videos.component.ts 53 @@ -518,17 +596,17 @@ Annuleren Edit Bewerken - - - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html11src/app/+admin/users/user-edit/user-edit.component.html11src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85src/app/+videos/+video-edit/shared/video-edit.component.html270src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + src/app/+admin/users/user-edit/user-edit.component.html11 + src/app/+admin/users/user-edit/user-edit.component.html11 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85 + src/app/+videos/+video-edit/shared/video-edit.component.html270 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + Truncated preview Gedeeltelijke voorvertoning @@ -537,13 +615,18 @@ Annuleren Hide Verbergen - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-forms/input-toggle-hidden.component.ts38src/app/shared/shared-user-settings/user-video-settings.component.html16src/app/shared/shared-video-miniature/video-filters-header.component.html76 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-forms/input-toggle-hidden.component.ts38 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/shared/shared-video-miniature/video-filters-header.component.html76 + Show Weergeven - - src/app/+admin/users/user-edit/user-password.component.html10src/app/shared/shared-forms/input-toggle-hidden.component.ts39 + src/app/+admin/users/user-edit/user-password.component.html10 + src/app/shared/shared-forms/input-toggle-hidden.component.ts39 + Complete preview Volledige voorvertoning @@ -563,8 +646,10 @@ Annuleren Using an ActivityPub account Een ActivityPub-account gebruiken src/app/shared/shared-user-subscription/subscribe-button.component.html54 - - Subscribe with a remote account:Subscribe with a remote account: + + + Subscribe with a remote account: + Abonneer met een remote account: src/app/shared/shared-user-subscription/subscribe-button.component.html 62 @@ -585,17 +670,16 @@ Annuleren De live-uitzending zal automatisch afgesloten worden. src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205 - Using a syndication feed Abonneren zonder account - - src/app/shared/shared-user-subscription/subscribe-button.component.html68 + src/app/shared/shared-user-subscription/subscribe-button.component.html68 + Subscribe via RSS Abonneren met RSS - - src/app/shared/shared-user-subscription/subscribe-button.component.html69 + src/app/shared/shared-user-subscription/subscribe-button.component.html69 + PROFILE SETTINGS PROFIELINSTELLINGEN @@ -605,21 +689,23 @@ Annuleren Remote subscribeRemote interact Extern abonneren Externe interactie src/app/shared/shared-user-subscription/remote-subscribe.component.html11 - - You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + + + You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + U kunt zich op het kanaal abonneren via elke fediverse-instantie die geschikt is voor ActivityPub (bijvoorbeeld PeerTube, Mastodon of Pleroma). src/app/shared/shared-user-subscription/remote-subscribe.component.html 18,19 - - You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + + + You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + U kunt hiermee communiceren via elke voor ActivityPub geschikte fediverse-instantie (bijvoorbeeld PeerTube, Mastodon of Pleroma). src/app/shared/shared-user-subscription/remote-subscribe.component.html 26,27 - - PeerTube version PeerTube-versie @@ -679,10 +765,11 @@ Annuleren Video quota Videoquotum - - - - src/app/+admin/users/user-edit/user-edit.component.html151src/app/+admin/users/user-edit/user-edit.component.html151src/app/+admin/users/user-list/user-list.component.ts113src/app/shared/shared-instance/instance-features-table.component.html47 + src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/+admin/users/user-list/user-list.component.ts113 + src/app/shared/shared-instance/instance-features-table.component.html47 + Unlimited ( per day) Oneindig ( per dag) @@ -728,8 +815,9 @@ Annuleren Local Lokaal - - src/app/shared/shared-instance/instance-statistics.component.html4src/app/shared/shared-video-miniature/video-filters.model.ts125 + src/app/shared/shared-instance/instance-statistics.component.html4 + src/app/shared/shared-video-miniature/video-filters.model.ts125 + users gebruikers @@ -760,9 +848,12 @@ Annuleren Federation Federatie - - src/app/+admin/admin.component.ts26src/app/shared/shared-instance/instance-statistics.component.html58 - FollowingFollowing + src/app/+admin/admin.component.ts26 + src/app/shared/shared-instance/instance-statistics.component.html58 + + + Following + Volgend src/app/+admin/admin.component.ts 29 @@ -775,8 +866,10 @@ Annuleren src/app/+admin/follows/follows.routes.ts 28 - - FollowersFollowers + + + Followers + Volgers src/app/+admin/admin.component.ts 34 @@ -799,36 +892,42 @@ Annuleren The upload failed De upload is mislukt - - src/app/helpers/utils/upload.ts12 + src/app/helpers/utils/upload.ts12 + The connection was interrupted De verbinding was verbroken - - src/app/helpers/utils/upload.ts16 - The server encountered an errorThe server encountered an error - - src/app/helpers/utils/upload.ts19 + src/app/helpers/utils/upload.ts16 + + + The server encountered an error + Er is een fout opgetreden op de server + src/app/helpers/utils/upload.ts19 + Your file couldn't be transferred before the set timeout (usually 10min) Uw bestand kon niet worden verstuurd voor de ingestelde time-out (normaal 10 minuten) - - src/app/helpers/utils/upload.ts22 + src/app/helpers/utils/upload.ts22 + Your file was too large (max. size: ) Uw bestand was te groot (max. grootte: ) - - src/app/helpers/utils/upload.ts26 + src/app/helpers/utils/upload.ts26 + User Gebruiker - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Verbannen - - src/app/+admin/users/user-list/user-list.component.ts87src/app/shared/shared-moderation/user-ban-modal.component.html3src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + src/app/+admin/users/user-list/user-list.component.ts87 + src/app/shared/shared-moderation/user-ban-modal.component.html3 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts271 + A banned user will no longer be able to login. @@ -838,30 +937,31 @@ Een verbannen gebruiker kan niet langer inloggen. Cancel Annuleren - - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+admin/follows/following-list/follow-modal.component.html33src/app/+login/login.component.html121src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/video-add-components/video-upload.component.html81src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73src/app/+videos/+video-watch/video-watch.component.ts416src/app/modal/confirm.component.html20src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-video-miniature/video-download.component.html152 + src/app/+about/about-instance/contact-admin-modal.component.html48 + src/app/+admin/follows/following-list/follow-modal.component.html33 + src/app/+login/login.component.html121 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html22 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html69 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73 + src/app/+videos/+video-watch/video-watch.component.ts416 + src/app/modal/confirm.component.html20 + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26 + src/app/shared/shared-moderation/batch-domains-modal.component.html31 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/video-report.component.html92 + src/app/shared/shared-moderation/user-ban-modal.component.html26 + src/app/shared/shared-moderation/video-block.component.html38 + src/app/shared/shared-video-miniature/video-download.component.html152 + Ban this user Verban deze gebruiker - - src/app/shared/shared-moderation/user-ban-modal.component.html30 + src/app/shared/shared-moderation/user-ban-modal.component.html30 + Block video "" Video " " blokkeren @@ -920,14 +1020,14 @@ Aanmelden This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. - This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. - - src/app/+login/login.component.html64 + Deze instantie maakt registratie mogelijk. Zorg er echter voor dat u de VoorwaardenVoorwaarden controleert voordat u een account aanmaakt. U kunt ook zoeken naar een ander exemplaar dat precies aan uw behoeften voldoet op: https://joinpeertube.org/instances. + src/app/+login/login.component.html64 + Currently this instance doesn't allow for user registration, you may check the Terms for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: https://joinpeertube.org/instances. - Currently this instance doesn't allow for user registration, you may check the Terms for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: https://joinpeertube.org/instances. - - src/app/+login/login.component.html69 + Momenteel staat deze instantie geen gebruikersregistratie toe, u kunt de Voorwaarden controleren voor meer details of zoek een instantie die je de mogelijkheid geeft om je aan te melden voor een account en je video's daar te uploaden. Vind de jouwe tussen meerdere instanties op: https://joinpeertube.org/instances. + src/app/+login/login.component.html69 + User Gebruiker @@ -938,8 +1038,10 @@ Aanmelden Username or email address Gebruikersnaam of e-mailadres src/app/+login/login.component.html23 - - ⚠️ Most email addresses do not include capital letters. ⚠️ Most email addresses do not include capital letters. + + + ⚠️ Most email addresses do not include capital letters. + ⚠️ Most email addresses do not include capital letters. src/app/+login/login.component.html 33,34 @@ -948,84 +1050,87 @@ Aanmelden Password Wachtwoord - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html117src/app/+admin/users/user-edit/user-edit.component.html117src/app/+login/login.component.html38src/app/+login/login.component.html40src/app/+reset-password/reset-password.component.html8src/app/+reset-password/reset-password.component.html10src/app/+signup/+register/register-step-user.component.html56src/app/+signup/+register/register-step-user.component.html58 + src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+login/login.component.html38 + src/app/+login/login.component.html40 + src/app/+reset-password/reset-password.component.html8 + src/app/+reset-password/reset-password.component.html10 + src/app/+signup/+register/register-step-user.component.html56 + src/app/+signup/+register/register-step-user.component.html58 + Click here to reset your password Hier klikken om je wachtwoord opnieuw in te stellen - - src/app/+login/login.component.html51 - I forgot my passwordI forgot my password - - src/app/+login/login.component.html51 + src/app/+login/login.component.html51 + + + I forgot my password + I forgot my password + src/app/+login/login.component.html51 + Logging into an account lets you publish content Door in te loggen op een account, kunt u content publiceren - - src/app/+login/login.component.html60 + src/app/+login/login.component.html60 + Login Aanmelden - - - src/app/+login/login-routing.module.ts12src/app/+login/login.component.html48src/app/menu/menu.component.html99 + src/app/+login/login-routing.module.ts12 + src/app/+login/login.component.html48 + src/app/menu/menu.component.html99 + Or sign in with Of meld je aan met - - src/app/+login/login.component.html76 + src/app/+login/login.component.html76 + Forgot your password Jouw wachtwoord vergeten - - src/app/+login/login.component.html95 + src/app/+login/login.component.html95 + We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. Het spijt ons, maar we kunnen je wachtwoord niet herstellen. De beheerder van je exemplaar van PeerTube heeft het PeerTube-emailsysteem niet ingesteld. - - src/app/+login/login.component.html103 + src/app/+login/login.component.html103 + Enter your email address and we will send you a link to reset your password. Je email-adres invoeren en je krijgt van ons instructies om je wachtwoord opnieuw in te stellen. - - src/app/+login/login.component.html107 + src/app/+login/login.component.html107 + An email with the reset password instructions will be sent to . The link will expire within 1 hour. zal een email met wachtwoordherstelinstructies krijgen. De link vervalt na een uur. - - src/app/+login/login.component.ts121 + src/app/+login/login.component.ts121 + Email E-mail - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html105src/app/+admin/users/user-edit/user-edit.component.html105src/app/+admin/users/user-list/user-list.component.ts112src/app/+login/login.component.html111src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4src/app/+signup/+register/register-step-user.component.html45src/app/+signup/+register/register-step-user.component.html47src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+admin/users/user-list/user-list.component.ts112 + src/app/+login/login.component.html111 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4 + src/app/+signup/+register/register-step-user.component.html45 + src/app/+signup/+register/register-step-user.component.html47 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html8 + Email address E-mailadres - - - src/app/+login/login.component.html113src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + src/app/+login/login.component.html113 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + Reset Herinstellen Password reset button - - src/app/+login/login.component.html126 - + src/app/+login/login.component.html126 + on this instance op dit exemplaar van PeerTube @@ -1035,8 +1140,10 @@ The link will expire within 1 hour. on the vidiverse in het videoversum src/app/+search/search.component.html8 - - for for + + + for + for src/app/+search/search.component.html 10 @@ -1084,106 +1191,110 @@ Wachtwoord opnieuw instellen Signup Inschrijven - Button on the registration form to finalize the account and channel creation - src/app/+signup/+register/register.component.ts67 - + src/app/+signup/+register/register.component.ts67 + Filters Criteria - - src/app/+search/search.component.html19 + src/app/+search/search.component.html19 + No results found Geen resultaten gevonden - - src/app/+search/search.component.html33 + src/app/+search/search.component.html33 + subscribers abonnees - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html25src/app/+search/search.component.html55src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 + src/app/+search/search.component.html55 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + Welcome to PeerTube, dear administrator! Welkom bij PeerTube, beste beheerder! - - src/app/modal/admin-welcome-modal.component.html3 + src/app/modal/admin-welcome-modal.component.html3 + CLI documentation opdrachtregeldocumentatie - - src/app/modal/admin-welcome-modal.component.html12 + src/app/modal/admin-welcome-modal.component.html12 + Upload or import videos, parse logs, prune storage directories, reset user password... Video's uploaden of importeren, logs ontleden, snoeien in opslagmappen, gebruikerswachtwoord herinstellen... - - src/app/modal/admin-welcome-modal.component.html15 + src/app/modal/admin-welcome-modal.component.html15 + Administer documentation Documentatie beheren - - src/app/modal/admin-welcome-modal.component.html19 + src/app/modal/admin-welcome-modal.component.html19 + Managing users, following other instances, dealing with spammers... Gebruikers beheren, andere exemplaren van PeerTube volgen, afrekenen met spammers... - - src/app/modal/admin-welcome-modal.component.html22 + src/app/modal/admin-welcome-modal.component.html22 + Use documentation Documentatie gebruiken - - src/app/modal/admin-welcome-modal.component.html26 + src/app/modal/admin-welcome-modal.component.html26 + Setup your account, managing video playlists, discover third-party applications... Je account instellen, video-afspeellijsten beheren, toepassingen van derden ontdekken... - - src/app/modal/admin-welcome-modal.component.html29 + src/app/modal/admin-welcome-modal.component.html29 + Useful links Nuttige links - - src/app/modal/admin-welcome-modal.component.html39 + src/app/modal/admin-welcome-modal.component.html39 + Official PeerTube website (news, support, contribute...): https://joinpeertube.org Officiële PeerTube-website (nieuws, ondersteuning, bijdragen, ...): https://joinpeertube.org - - src/app/modal/admin-welcome-modal.component.html42 + src/app/modal/admin-welcome-modal.component.html42 + Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances Zet je exemplaar van PeerTube op de publieke PeerTube-index: https://instances.joinpeertube.org/instances - - src/app/modal/admin-welcome-modal.component.html45 + src/app/modal/admin-welcome-modal.component.html45 + It's time to configure your instance! Tijd om je exemplaar van PeerTube in te stellen! - - src/app/modal/admin-welcome-modal.component.html55 + src/app/modal/admin-welcome-modal.component.html55 + Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are. Het uitzoeken van een naam voor je exemplaar van PeerTube, het toevoegen van een beschrijving, uitleggen wie je bent, waarom je dit exemplaar van peertube hebt gemaakt en hoe lang je van plan bent deze te onderhouden is van groot belang voor bezoekers om te begrijpen op wat voor soort exemplaar van peertube ze zich bevinden. - - src/app/modal/admin-welcome-modal.component.html58 + src/app/modal/admin-welcome-modal.component.html58 + If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. Als je registratie wil inschakelen, dan graag je moderatieregels en de gebruiksvoorwaarden van je exemplaar van PeerTube instellen, en ook de categorieën en de talen die je moderatoren spreken. Zo help je gebruikers zich te registreren op het geschikte exemplaar van PeerTube. - - src/app/modal/admin-welcome-modal.component.html64 + src/app/modal/admin-welcome-modal.component.html64 + Remind me later Me later aan doen denken - - src/app/modal/account-setup-warning-modal.component.html28src/app/modal/admin-welcome-modal.component.html74 - Set up Set up - - src/app/modal/account-setup-warning-modal.component.html35 + src/app/modal/account-setup-warning-modal.component.html28 + src/app/modal/admin-welcome-modal.component.html74 + + + Set up + Set up + src/app/modal/account-setup-warning-modal.component.html35 + Configure my instance Mijn exemplaar van PeerTube instellen - - src/app/modal/admin-welcome-modal.component.html81 + src/app/modal/admin-welcome-modal.component.html81 + Configuration warning! Instellingswaarschuwing! @@ -1213,14 +1324,15 @@ Geen resultaten gevonden How long you plan to maintain your instance Hoe lang je jou exemplaar van PeerTube van plan bent te onderhouden src/app/modal/instance-config-warning-modal.component.html17 - - How you plan to pay for keeping your instance runningHow you plan to pay for keeping your instance running + + + How you plan to pay for keeping your instance running + How you plan to pay for keeping your instance running src/app/modal/instance-config-warning-modal.component.html 18 - How you will moderate your instance Hoe je jou exemplaar van PeerTube gaat modereren @@ -1234,10 +1346,12 @@ Geen resultaten gevonden My settings My settings - - - src/app/menu/menu.component.html119src/app/modal/quick-settings-modal.component.html3 - These settings apply only to your session on this instance.These settings apply only to your session on this instance. + src/app/menu/menu.component.html119 + src/app/modal/quick-settings-modal.component.html3 + + + These settings apply only to your session on this instance. + These settings apply only to your session on this instance. src/app/modal/quick-settings-modal.component.html 8 @@ -1256,19 +1370,19 @@ Geen resultaten gevonden Close Sluiten - - - src/app/modal/instance-config-warning-modal.component.html38src/app/shared/shared-video-live/live-stream-information.component.html33 + src/app/modal/instance-config-warning-modal.component.html38 + src/app/shared/shared-video-live/live-stream-information.component.html33 + Update live settings Live-instellingen bijwerken - - src/app/shared/shared-video-live/live-stream-information.component.html36 + src/app/shared/shared-video-live/live-stream-information.component.html36 + Configure Instellen - - src/app/modal/instance-config-warning-modal.component.html44 + src/app/modal/instance-config-warning-modal.component.html44 + Change the language Taal veranderen @@ -1284,171 +1398,190 @@ Geen resultaten gevonden Public profile Publiek profiel - - src/app/menu/menu.component.html28 + src/app/menu/menu.component.html28 + Interface: Interface: - - src/app/menu/menu.component.html35 + src/app/menu/menu.component.html35 + Videos: Video's: - - src/app/menu/menu.component.html42 + src/app/menu/menu.component.html42 + Sensitive: Gevoelig: - - src/app/menu/menu.component.html52 + src/app/menu/menu.component.html52 + Help share videos Video's helpen delen - - src/app/menu/menu.component.html58 + src/app/menu/menu.component.html58 + Keyboard shortcuts Sneltoetsen - - - src/app/menu/menu.component.html67src/app/menu/menu.component.html141 - powered by PeerTube - CopyLeft 2015-2021powered by PeerTube - CopyLeft 2015-2021 - - src/app/menu/menu.component.html146 + src/app/menu/menu.component.html67 + src/app/menu/menu.component.html141 + + + powered by PeerTube - CopyLeft 2015-2021 + powered by PeerTube - CopyLeft 2015-2021 + src/app/menu/menu.component.html146 + Help Hulp - - src/app/menu/menu.component.html137 + src/app/menu/menu.component.html137 + Get help using PeerTube Hulp bij het gebruik van PeerTube krijgen - - src/app/menu/menu.component.html137 + src/app/menu/menu.component.html137 + powered by PeerTube mogelijk gemaakt door PeerTube - - src/app/menu/menu.component.html147 - + src/app/menu/menu.component.html147 + Log out Afmelden - - src/app/menu/menu.component.html72 + src/app/menu/menu.component.html72 + My account Mijn account - - src/app/menu/menu.component.html83 + src/app/menu/menu.component.html83 + My library Mijn bibliotheek - - src/app/menu/menu.component.html88 + src/app/menu/menu.component.html88 + Create an account Account maken - - - src/app/+login/login.component.html54src/app/menu/menu.component.html100 - + src/app/+login/login.component.html54 + src/app/menu/menu.component.html100 + My videos Mijn video's - - - src/app/+my-library/my-library-routing.module.ts76src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts71src/app/core/menu/menu.service.ts77 + src/app/+my-library/my-library-routing.module.ts76 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts71 + src/app/core/menu/menu.service.ts77 + My video imports Mijn video-imports - - src/app/+my-library/my-library-routing.module.ts89 + src/app/+my-library/my-library-routing.module.ts89 + My playlists Mijn afspeellijsten - - src/app/+my-library/my-library-routing.module.ts39src/app/+my-library/my-video-playlists/my-video-playlists.component.html3src/app/core/menu/menu.service.ts86 + src/app/+my-library/my-library-routing.module.ts39 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 + src/app/core/menu/menu.service.ts86 + Create a new playlist Nieuwe afspeellijst aanmaken - - src/app/+my-library/my-library-routing.module.ts48 + src/app/+my-library/my-library-routing.module.ts48 + My subscriptions Mijn abonnementen - - src/app/+my-library/my-library-routing.module.ts98src/app/+my-library/my-subscriptions/my-subscriptions.component.html4src/app/core/menu/menu.service.ts92 + src/app/+my-library/my-library-routing.module.ts98 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html4 + src/app/core/menu/menu.service.ts92 + Videos Video's - - src/app/+accounts/account-videos/account-videos.component.ts17src/app/+my-library/my-library.component.ts52src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17src/app/core/menu/menu.service.ts76 + src/app/+accounts/account-videos/account-videos.component.ts17 + src/app/+my-library/my-library.component.ts52 + src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17 + src/app/core/menu/menu.service.ts76 + Interface: Interface: - - src/app/menu/menu.component.html132 + src/app/menu/menu.component.html132 + Playlists Afspeellijsten - - src/app/+my-library/my-library.component.ts59src/app/core/menu/menu.service.ts85 + src/app/+my-library/my-library.component.ts59 + src/app/core/menu/menu.service.ts85 + Subscriptions Abonnementen - - src/app/+my-library/my-library.component.ts64src/app/+videos/video-list/video-user-subscriptions.component.ts25src/app/+videos/videos-routing.module.ts58src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts64 + src/app/+videos/video-list/video-user-subscriptions.component.ts25 + src/app/+videos/videos-routing.module.ts58 + src/app/core/menu/menu.service.ts91 + History Geschiedenis - - src/app/+my-library/my-library.component.ts69src/app/core/menu/menu.service.ts97 + src/app/+my-library/my-library.component.ts69 + src/app/core/menu/menu.service.ts97 + VIDEOS VIDEO'S - - src/app/+accounts/accounts.component.ts82src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215src/app/+video-channels/video-channels.component.ts76 - Import jobs concurrencyImport jobs concurrency - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 - allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 - jobs in paralleljobs in parallel - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + src/app/+accounts/accounts.component.ts82 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215 + src/app/+video-channels/video-channels.component.ts76 + + + Import jobs concurrency + Import jobs concurrency + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 + + + allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. + allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + + + jobs in parallel + jobs in parallel + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + Allow import with HTTP URL (e.g. YouTube) Import met HTTP URL (bijv. YouTube) toestaan - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + Discover Ontdekken - - - src/app/+videos/video-list/overview/video-overview.component.html1src/app/core/menu/menu.service.ts125 - - - + src/app/+videos/video-list/overview/video-overview.component.html1 + src/app/core/menu/menu.service.ts125 + Administration Beheer - - src/app/menu/menu.component.html93 + src/app/menu/menu.component.html93 + About Over - - - src/app/menu/menu.component.html124 + src/app/menu/menu.component.html124 + Contact Contact - - src/app/+about/about-routing.module.ts36src/app/menu/menu.component.html136 + src/app/+about/about-routing.module.ts36 + src/app/menu/menu.component.html136 + View your notifications Je meldingen bekijken @@ -1459,9 +1592,11 @@ Geen resultaten gevonden Notifications Meldingen - - - src/app/+my-account/my-account-notifications/my-account-notifications.component.html1src/app/+my-account/my-account-routing.module.ts108src/app/+my-account/my-account.component.ts55src/app/menu/notification.component.html22 + src/app/+my-account/my-account-notifications/my-account-notifications.component.html1 + src/app/+my-account/my-account-routing.module.ts108 + src/app/+my-account/my-account.component.ts55 + src/app/menu/notification.component.html22 + Mark all as read Alle als gelezen markeren @@ -1478,23 +1613,35 @@ Geen resultaten gevonden See all your notifications Al je meldingen bekijken src/app/menu/notification.component.html49 - - Welcome to , dear user!Welcome to , dear user! - - src/app/modal/account-setup-warning-modal.component.html3 - It's time to set up your account profile!It's time to set up your account profile! - - src/app/modal/account-setup-warning-modal.component.html10 - Help moderators and other users to know who you are by:Help moderators and other users to know who you are by: - - src/app/modal/account-setup-warning-modal.component.html12 - Uploading an avatarUploading an avatar - - src/app/modal/account-setup-warning-modal.component.html15 - Writing a descriptionWriting a description - - src/app/modal/account-setup-warning-modal.component.html16 - Don't show me this anymoreDon't show me this anymore + + + Welcome to , dear user! + Welcome to , dear user! + src/app/modal/account-setup-warning-modal.component.html3 + + + It's time to set up your account profile! + It's time to set up your account profile! + src/app/modal/account-setup-warning-modal.component.html10 + + + Help moderators and other users to know who you are by: + Help moderators and other users to know who you are by: + src/app/modal/account-setup-warning-modal.component.html12 + + + Uploading an avatar + Uploading an avatar + src/app/modal/account-setup-warning-modal.component.html15 + + + Writing a description + Writing a description + src/app/modal/account-setup-warning-modal.component.html16 + + + Don't show me this anymore + Don't show me this anymore src/app/modal/account-setup-warning-modal.component.html 23 @@ -1503,8 +1650,8 @@ Geen resultaten gevonden I'm a teapot Ik ben een theepot - - src/app/+page-not-found/page-not-found.component.ts27 + src/app/+page-not-found/page-not-found.component.ts27 + That's an error. Dat is een fout. @@ -1512,39 +1659,45 @@ Geen resultaten gevonden src/app/+page-not-found/page-not-found.component.html 4 - - We couldn't find any video tied to the URL you were looking for.We couldn't find any video tied to the URL you were looking for. + + + We couldn't find any video tied to the URL you were looking for. + We couldn't find any video tied to the URL you were looking for. src/app/+page-not-found/page-not-found.component.html 7 - - We couldn't find any resource tied to the URL you were looking for.We couldn't find any resource tied to the URL you were looking for. + + + We couldn't find any resource tied to the URL you were looking for. + We couldn't find any resource tied to the URL you were looking for. src/app/+page-not-found/page-not-found.component.html 8 - Possible reasons: Mogelijke oorzaken: - Possible reasons preceding a list of reasons a `Not Found` error page may occur - src/app/+page-not-found/page-not-found.component.html12 - + src/app/+page-not-found/page-not-found.component.html12 + You may have used an outdated or broken link Mogelijk heeft u een ongeldige of verlopen link gebruikt - - src/app/+page-not-found/page-not-found.component.html15 - The video may have been moved or deletedThe video may have been moved or deleted + src/app/+page-not-found/page-not-found.component.html15 + + + The video may have been moved or deleted + The video may have been moved or deleted src/app/+page-not-found/page-not-found.component.html 17 - - The resource may have been moved or deletedThe resource may have been moved or deleted + + + The resource may have been moved or deleted + The resource may have been moved or deleted src/app/+page-not-found/page-not-found.component.html 18 @@ -1553,18 +1706,24 @@ Geen resultaten gevonden You may have typed the address or URL incorrectly Het kan zijn dat u het web adres of URL verkeerd hebt ingetypt - - src/app/+page-not-found/page-not-found.component.html20 - You are not authorized here.You are not authorized here. - - src/app/+page-not-found/page-not-found.component.html27 - You might need to check your account is allowed by the video or instance owner.You might need to check your account is allowed by the video or instance owner. + src/app/+page-not-found/page-not-found.component.html20 + + + You are not authorized here. + You are not authorized here. + src/app/+page-not-found/page-not-found.component.html27 + + + You might need to check your account is allowed by the video or instance owner. + You might need to check your account is allowed by the video or instance owner. src/app/+page-not-found/page-not-found.component.html 30 - - You might need to check your account is allowed by the resource or instance owner.You might need to check your account is allowed by the resource or instance owner. + + + You might need to check your account is allowed by the resource or instance owner. + You might need to check your account is allowed by the resource or instance owner. src/app/+page-not-found/page-not-found.component.html 31 @@ -1573,21 +1732,20 @@ Geen resultaten gevonden The requested entity body blends sweet bits with a mellow earthiness. The requested entity body blends sweet bits with a mellow earthiness. - Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request - src/app/+page-not-found/page-not-found.component.html40 + src/app/+page-not-found/page-not-found.component.html40 + Sepia seems to like it. Sepia schijnt het lekker te vinden. - This is about Sepia's tea - src/app/+page-not-found/page-not-found.component.html42 + src/app/+page-not-found/page-not-found.component.html42 + Media is too large for the server. Please contact you administrator if you want to increase the limit size. Media te groot voor de server. Gelieve je beheerder te contacteren als je de groottelimiet wil verhogen. - - src/app/core/rest/rest-extractor.service.ts65 - + src/app/core/rest/rest-extractor.service.ts65 + GLOBAL SEARCH GLOBAAL ZOEKEN @@ -1602,8 +1760,10 @@ Geen resultaten gevonden Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent. Resultaten worden aangevuld met die van elders. We versturen enkel wat nodig is voor het stellen van de vraag. src/app/header/search-typeahead.component.html32 - - Your query will be matched against video names or descriptions, channel names.Your query will be matched against video names or descriptions, channel names. + + + Your query will be matched against video names or descriptions, channel names. + Your query will be matched against video names or descriptions, channel names. src/app/header/search-typeahead.component.html 37 @@ -1612,35 +1772,34 @@ Geen resultaten gevonden ADVANCED SEARCH GEAVANCEERD ZOEKEN - - src/app/header/search-typeahead.component.html39 + src/app/header/search-typeahead.component.html39 + any instance gelijk welk exemplaar van PeerTube - - src/app/header/search-typeahead.component.html42 + src/app/header/search-typeahead.component.html42 + only followed instances enkel gevolgde exemplaren van PeerTube - - src/app/header/search-typeahead.component.html43 + src/app/header/search-typeahead.component.html43 + Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows. Bepaalt of je eender welke inhoud van elders kan vinden, of dat dit exemplaar van PeerTube dat enkel toelaat voor exemplaren die het volgt. - - src/app/header/search-typeahead.component.html41 + src/app/header/search-typeahead.component.html41 + will list the matching channel geeft het bijpassende kanaal weer - - - src/app/header/search-typeahead.component.html50src/app/header/search-typeahead.component.html53 + src/app/header/search-typeahead.component.html50 + src/app/header/search-typeahead.component.html53 + will list the matching video geeft de bijpassende video weer - - src/app/header/search-typeahead.component.html56 - + src/app/header/search-typeahead.component.html56 + Search... Zoeken … @@ -1664,122 +1823,143 @@ Geen resultaten gevonden Reset Reset - - - - - - src/app/+search/search-filters.component.html9src/app/+search/search-filters.component.html23src/app/+search/search-filters.component.html42src/app/+search/search-filters.component.html61src/app/+search/search-filters.component.html75src/app/+search/search-filters.component.html110src/app/+search/search-filters.component.html123src/app/+search/search-filters.component.html136src/app/+search/search-filters.component.html149src/app/+search/search-filters.component.html164src/app/+search/search-filters.component.html172src/app/+search/search-filters.component.html205 - Display onlyDisplay only + src/app/+search/search-filters.component.html9 + src/app/+search/search-filters.component.html23 + src/app/+search/search-filters.component.html42 + src/app/+search/search-filters.component.html61 + src/app/+search/search-filters.component.html75 + src/app/+search/search-filters.component.html110 + src/app/+search/search-filters.component.html123 + src/app/+search/search-filters.component.html136 + src/app/+search/search-filters.component.html149 + src/app/+search/search-filters.component.html164 + src/app/+search/search-filters.component.html172 + src/app/+search/search-filters.component.html205 + + + Display only + Display only src/app/+search/search-filters.component.html 21 - - Live videosLive videos - - src/app/+search/search-filters.component.html29src/app/+search/search-filters.component.ts64src/app/shared/shared-video-miniature/video-filters-header.component.html104src/app/shared/shared-video-miniature/video-filters.model.ts158 - VOD videosVOD videos - - src/app/+search/search-filters.component.html34src/app/+search/search-filters.component.ts60src/app/shared/shared-video-miniature/video-filters-header.component.html109src/app/shared/shared-video-miniature/video-filters.model.ts164 + + + Live videos + Live videos + src/app/+search/search-filters.component.html29 + src/app/+search/search-filters.component.ts64 + src/app/shared/shared-video-miniature/video-filters-header.component.html104 + src/app/shared/shared-video-miniature/video-filters.model.ts158 + + + VOD videos + VOD videos + src/app/+search/search-filters.component.html34 + src/app/+search/search-filters.component.ts60 + src/app/shared/shared-video-miniature/video-filters-header.component.html109 + src/app/shared/shared-video-miniature/video-filters.model.ts164 + Published date Datum van publicatie - - src/app/+search/search-filters.component.html59 + src/app/+search/search-filters.component.html59 + Original publication year Origineel publicatie jaar - - src/app/+search/search-filters.component.html73 + src/app/+search/search-filters.component.html73 + After... Na... - - src/app/+search/search-filters.component.html85 + src/app/+search/search-filters.component.html85 + Before... Voor... - - src/app/+search/search-filters.component.html95 + src/app/+search/search-filters.component.html95 + Duration Tijdsduur - - - src/app/+search/search-filters.component.html108src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html60 + src/app/+search/search-filters.component.html108 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html60 + Display sensitive content Laat gevoelige inhoud zien - - src/app/+search/search-filters.component.html40 + src/app/+search/search-filters.component.html40 + Yes Ja - - src/app/+search/search-filters.component.html48 + src/app/+search/search-filters.component.html48 + No Nee - - src/app/+search/search-filters.component.html53 + src/app/+search/search-filters.component.html53 + Category Categorie - - - - src/app/+search/search-filters.component.html121src/app/+videos/+video-edit/shared/video-edit.component.html63src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html25 + src/app/+search/search-filters.component.html121 + src/app/+videos/+video-edit/shared/video-edit.component.html63 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html25 + Reset Reset - - - - - - src/app/+search/search-filters.component.html123src/app/+search/search-filters.component.html136src/app/+search/search-filters.component.html149src/app/+search/search-filters.component.html164src/app/+search/search-filters.component.html172 + src/app/+search/search-filters.component.html123 + src/app/+search/search-filters.component.html136 + src/app/+search/search-filters.component.html149 + src/app/+search/search-filters.component.html164 + src/app/+search/search-filters.component.html172 + Display all categories Alle categorieën tonen - - src/app/+search/search-filters.component.html127 + src/app/+search/search-filters.component.html127 + Licence Licentie - - - - src/app/+search/search-filters.component.html134src/app/+videos/+video-edit/shared/video-edit.component.html74src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html34 + src/app/+search/search-filters.component.html134 + src/app/+videos/+video-edit/shared/video-edit.component.html74 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html34 + Display all licenses Alle licenties tonen - - src/app/+search/search-filters.component.html140 + src/app/+search/search-filters.component.html140 + Language Taal - - - - - src/app/+search/search-filters.component.html147src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10src/app/+videos/+video-edit/shared/video-edit.component.html94src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html43 + src/app/+search/search-filters.component.html147 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10 + src/app/+videos/+video-edit/shared/video-edit.component.html94 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html43 + Display all languages Alle talen tonen - - src/app/+search/search-filters.component.html153 + src/app/+search/search-filters.component.html153 + All of these tags Al deze tags - - src/app/+search/search-filters.component.html162 + src/app/+search/search-filters.component.html162 + One of these tags Een van deze tags - - src/app/+search/search-filters.component.html170 - PeerTube instance hostPeerTube instance host + src/app/+search/search-filters.component.html170 + + + PeerTube instance host + PeerTube instance host src/app/+search/search-filters.component.html 178 @@ -1788,23 +1968,23 @@ Geen resultaten gevonden Search target Doel doorzoeken - - src/app/+search/search-filters.component.html187 + src/app/+search/search-filters.component.html187 + Vidiverse Videoversum - - src/app/+search/search-filters.component.html197 + src/app/+search/search-filters.component.html197 + Reset Reset - - src/app/+search/search-filters.component.html197 + src/app/+search/search-filters.component.html197 + Filter Filter - - src/app/+search/search-filters.component.html208 + src/app/+search/search-filters.component.html208 + Video channels Video-kanalen @@ -1839,9 +2019,9 @@ Dit zal een bestaande ondertiteling vervangen! Tags Tags - - - src/app/+videos/+video-edit/shared/video-edit.component.html19src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + src/app/+videos/+video-edit/shared/video-edit.component.html19 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag. Tags zou je kunnen gebruiken om relevante aanbevelingen te suggereren. Er is een maximum van 5 tags. Druk op Enter om een nieuwe tag toe te voegen. @@ -1855,67 +2035,96 @@ Dit zal een bestaande ondertiteling vervangen! extensions uitbreidingen - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 - This image is too large.This image is too large. - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 - Upload a new bannerUpload a new banner - - - src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html9src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html26 - Change your bannerChange your banner - - src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html18 - Remove bannerRemove banner - - src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html32 - ratio 6/1, recommended size: 1920x317, max size: , extensions: ratio 6/1, recommended size: 1920x317, max size: , extensions: - - src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts44 - Account avatarAccount avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 - Channel avatarChannel avatar - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 - Markdown compatible that also supports custom PeerTube HTML tagsMarkdown compatible that also supports custom PeerTube HTML tags + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + + + This image is too large. + This image is too large. + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + + + Upload a new banner + Upload a new banner + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html9 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html26 + + + Change your banner + Change your banner + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html18 + + + Remove banner + Remove banner + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html32 + + + ratio 6/1, recommended size: 1920x317, max size: , extensions: + ratio 6/1, recommended size: 1920x317, max size: , extensions: + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts44 + + + Account avatar + Account avatar + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + + + Channel avatar + Channel avatar + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + + + Markdown compatible that also supports custom PeerTube HTML tags + Markdown compatible that also supports custom PeerTube HTML tags src/app/shared/shared-custom-markup/custom-markup-help.component.html 2 - - Latest published videoLatest published video + + + Latest published video + Latest published video src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html 24 - - Error in channel miniature component: Error in channel miniature component: + + + Error in channel miniature component: + Error in channel miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts 57 - - Error in playlist miniature component: Error in playlist miniature component: + + + Error in playlist miniature component: + Error in playlist miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts 47 - - Error in video miniature component: Error in video miniature component: + + + Error in video miniature component: + Error in video miniature component: src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts 59 - - Error in videos list component: Error in videos list component: + + + Error in videos list component: + Error in videos list component: src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts 77 - - Advanced filtersAdvanced filters + + + Advanced filters + Advanced filters src/app/shared/shared-forms/advanced-input-filter.component.html 8 @@ -1929,73 +2138,73 @@ Dit zal een bestaande ondertiteling vervangen! Description Beschrijving - - - - - - - - - src/app/+about/about-instance/about-instance.component.html113src/app/+admin/config/edit-custom-config/edit-instance-information.component.html35src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html28src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html71src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html71src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html44src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html44src/app/+videos/+video-edit/shared/video-edit.component.html38 + src/app/+about/about-instance/about-instance.component.html113 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html35 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html28 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html71 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html71 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html44 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html44 + src/app/+videos/+video-edit/shared/video-edit.component.html38 + Video descriptions are truncated by default and require manual action to expand them. Video-beschrijvingen worden standaard afgekapt en vereisen handmatig tussenkomen om ze uit te vouwen. src/app/+videos/+video-edit/shared/video-edit.component.html43 - - Choose the appropriate licence for your work. Choose the appropriate licence for your work. + + + Choose the appropriate licence for your work. + Choose the appropriate licence for your work. src/app/+videos/+video-edit/shared/video-edit.component.html 79,80 - Channel Kanaal - - - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70src/app/+signup/+register/register.component.html34src/app/+videos/+video-edit/shared/video-edit.component.html58src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+signup/+register/register.component.html34 + src/app/+videos/+video-edit/shared/video-edit.component.html58 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + Privacy Privacy - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+videos/+video-edit/shared/video-edit.component.html106src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29src/app/+videos/+video-edit/video-add-components/video-upload.component.html26src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2src/app/shared/shared-abuse-list/abuse-details.component.ts22 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+videos/+video-edit/shared/video-edit.component.html106 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html26 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2 + src/app/shared/shared-abuse-list/abuse-details.component.ts22 + FAQ Vaak gestelde vragen - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + Frequently asked questions about PeerTube Veelgestelde vragen over PeerTube - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + API API - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + API documentation API-documentatie - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + Schedule publication () Publicatie plannen op ( ) @@ -2005,14 +2214,15 @@ Dit zal een bestaande ondertiteling vervangen! Contains sensitive content Bevat gevoelige inhoud src/app/+videos/+video-edit/shared/video-edit.component.html131 - - Some instances hide videos containing mature or explicit content by default.Some instances hide videos containing mature or explicit content by default. + + + Some instances hide videos containing mature or explicit content by default. + Some instances hide videos containing mature or explicit content by default. src/app/+videos/+video-edit/shared/video-edit.component.html 135 - Publish after transcoding Publiceren na transcoderen @@ -2097,8 +2307,10 @@ Geen ondertiteling voor nu. Captions Ondertiteling - - src/app/+videos/+video-edit/shared/video-edit.component.html155src/app/shared/shared-abuse-list/abuse-details.component.ts26src/app/shared/shared-moderation/abuse.service.ts181 + src/app/+videos/+video-edit/shared/video-edit.component.html155 + src/app/shared/shared-abuse-list/abuse-details.component.ts26 + src/app/shared/shared-moderation/abuse.service.ts181 + Video preview Video voorvertoning @@ -2107,49 +2319,67 @@ Geen ondertiteling voor nu. Support Ondersteun - - src/app/+video-channels/video-channels.component.html17src/app/+videos/+video-edit/shared/video-edit.component.html276 - View accountView account - - - src/app/+video-channels/video-channels.component.html30 - View account View account + src/app/+video-channels/video-channels.component.html17 + src/app/+videos/+video-edit/shared/video-edit.component.html276 + + + View account + View account + src/app/+video-channels/video-channels.component.html30 + + + View account + View account src/app/+video-channels/video-channels.component.html 42,43 - - View owner account View owner account + + + View owner account + View owner account src/app/+video-channels/video-channels.component.html 46,47 - - VIDEO CHANNELVIDEO CHANNEL + + + VIDEO CHANNEL + VIDEO CHANNEL src/app/+video-channels/video-channels.component.html 55 - - Copy channel handleCopy channel handle + + + Copy channel handle + Copy channel handle src/app/+video-channels/video-channels.component.html 66 - - {VAR_PLURAL, plural, =1 {1 videos} other { videos}}{VAR_PLURAL, plural, =1 {1 videos} other { videos}} - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 - + + + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + + + + src/app/+video-channels/video-channels.component.html 76,77 - - OWNER ACCOUNTOWNER ACCOUNT - - - src/app/+video-channels/video-channels.component.html23 + + + OWNER ACCOUNT + OWNER ACCOUNT + src/app/+video-channels/video-channels.component.html23 + Short text to tell people how they can support you (membership platform...). Korte tekst om mensen uit te leggen hoe ze je kunnen ondersteunen (ledenplatform, ...). @@ -2200,11 +2430,11 @@ Geen ondertiteling voor nu. Sorry, but something went wrong Sorry, er is iets fout gegaan - - - - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.html26src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html51src/app/+videos/+video-edit/video-add-components/video-import-url.component.html44src/app/+videos/+video-edit/video-add-components/video-upload.component.html86 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html26 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html51 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html44 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html86 + Congratulations, the video behind will be imported! You can already add information about this video. @@ -2218,12 +2448,17 @@ Gefeliciteerd, de video achter Update Bijwerken - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts180 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61 + src/app/+videos/+video-edit/video-update.component.html3 + src/app/+videos/+video-edit/video-update.component.html18 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + Select the file to upload Selecteer het bestand om te uploaden @@ -2233,18 +2468,18 @@ Gefeliciteerd, de video achter Scheduled Ingeroosterd - - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 + Hide the video until a specific date De video verbergen tot een specifieke datum - - src/app/+videos/+video-edit/shared/video-edit.component.ts193 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 + Video background image Video achtergrondafbeelding - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html34 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html34 + Image that will be merged with your audio file. The chosen image will be definitive and cannot be modified. @@ -2254,69 +2489,77 @@ Gefeliciteerd, de video achter De gekozen afbeelding is definitief en kan niet worden gewijzigd. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html37 + Total video uploaded Totaal aantal geuploade videos - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html63 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html63 + Processing… Verwerken… - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html65 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html65 + Retry Opnieuw proberen Retry failed upload of a video - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html80 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html80 + Total video quota Totaal video-quotum - - - src/app/+admin/users/user-list/user-list.component.html119src/app/shared/shared-main/users/user-quota.component.html3 + src/app/+admin/users/user-list/user-list.component.html119 + src/app/shared/shared-main/users/user-quota.component.html3 + Congratulations! Your video is now available in your private library. Gefeliciteerd! Jouw video is nu beschikbaar in je privébibliotheek. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html91 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html91 + Publish will be available when upload is finished Publiceren is mogelijk wanneer de upload voltooid is - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html104 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html104 + Publish Publiceren + src/app/+videos/+video-edit/video-add-components/video-upload.component.html106 + src/app/header/header.component.html5 + + + Upload on hold + Upload on hold - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 - Upload on holdUpload on hold - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, uploaden is uitgeschakeld voor je account. Als je een video wil toevoegen, dan moet een beheerder je quotum ontgrendelen. - - src/app/+videos/+video-edit/video-add.component.ts102 - Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + src/app/+videos/+video-edit/video-add.component.ts102 + + + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. + Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block. src/app/+videos/+video-edit/video-add.component.ts 104 - - Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + + + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. src/app/+videos/+video-edit/video-add.component.ts 106 - - Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + + + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. src/app/+videos/+video-edit/video-add.component.ts 108 @@ -2325,8 +2568,8 @@ Gefeliciteerd, de video achter Read instance rules for help De regels van dit exemplaar van PeerTube lezen voor hulp - - src/app/+videos/+video-edit/video-add.component.html2 + src/app/+videos/+video-edit/video-add.component.html2 + Select the torrent to import Selecteer de torrent om te importeren @@ -2351,25 +2594,27 @@ Je kan nu al informatie toevoegen over deze video. src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html56 - - Torrents with only 1 file are supported.Torrents with only 1 file are supported. - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + + + Torrents with only 1 file are supported. + Torrents with only 1 file are supported. + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts120 + Cannot create live because this instance have too many created lives Live-uitzending aanmaken niet mogelijk door te veel live-uitzendingen op dit exemplaar van PeerTube - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts101 + Cannot create live because you created too many lives Live-uitzending niet mogelijk omdat je te veel live-uitzendingen aangemaakt hebt - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + Live published. Live-uitzending gepubliceerd. - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + Go Live Live gaan @@ -2383,53 +2628,53 @@ Je kan nu al informatie toevoegen over deze video. We recommend you to not use the root user to publish your videos, since it's the super-admin account of your instance. Instead, create a dedicated account to upload your videos. We raden je aan je video's niet als gebruiker root te publiceren. Dat is immers de superbeheerder van je exemplaar van PeerTube. Je kan beter een andere account aanmaken om je video's te uploaden. - - src/app/+videos/+video-edit/video-add.component.html34 + src/app/+videos/+video-edit/video-add.component.html34 + Import importeren - - src/app/+videos/+video-edit/video-add.component.html44 + src/app/+videos/+video-edit/video-add.component.html44 + Upload uploaden - - src/app/+videos/+video-edit/video-add.component.html45 + src/app/+videos/+video-edit/video-add.component.html45 + Upload a file Upload een bestand - - src/app/+videos/+video-edit/video-add.component.html53 + src/app/+videos/+video-edit/video-add.component.html53 + Import with URL Importeer met URL - - src/app/+videos/+video-edit/video-add.component.html63 + src/app/+videos/+video-edit/video-add.component.html63 + Import with torrent Importeer met torrent - - src/app/+videos/+video-edit/video-add.component.html73 + src/app/+videos/+video-edit/video-add.component.html73 + Go live Live gaan - - src/app/+videos/+video-edit/video-add.component.html83 + src/app/+videos/+video-edit/video-add.component.html83 + Other videos Andere video's - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + AUTOPLAY AUTOMATISCH AFSPELEN - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + Report this comment Deze reactie melden - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + Share Delen @@ -2483,8 +2728,10 @@ Je kan nu al informatie toevoegen over deze video. Less customization Minder aanpassingen src/app/shared/shared-share-modal/video-share.component.html231 - - Support Support + + + Support + Support src/app/shared/shared-support-modal/support-modal.component.html 3 @@ -2500,18 +2747,17 @@ Je kan nu al informatie toevoegen over deze video. Automatisch afspelen src/app/shared/shared-share-modal/video-share.component.html159 - Maybe later Misschien later - - src/app/shared/shared-support-modal/support-modal.component.html11 + src/app/shared/shared-support-modal/support-modal.component.html11 + Muted Gedempt - - - src/app/+accounts/accounts.component.html22src/app/shared/shared-share-modal/video-share.component.html166 + src/app/+accounts/accounts.component.html22 + src/app/shared/shared-share-modal/video-share.component.html166 + Loop Lus @@ -2545,64 +2791,58 @@ Je kan nu al informatie toevoegen over deze video. Public Openbaar - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 - - - - - + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 + This video is blocked. Deze video is geblokkeerd. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + src/app/+videos/+video-watch/shared/information/video-alert.component.html26 + Published Gepubliceerd op - - - src/app/+videos/+video-watch/video-watch.component.html31 + src/app/+videos/+video-watch/video-watch.component.html31 + SUPPORT ONDERSTEUNING - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + SHARE DELEN - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + SAVE OPSLAAN - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + DOWNLOAD DOWNLOADEN - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + Like this video Like deze video - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + Dislike this video Dislike deze video - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + Support options for this video Ondersteuningsopties voor deze video - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + By Door - - src/app/+videos/+video-watch/video-watch.component.html71 + src/app/+videos/+video-watch/video-watch.component.html71 + Subscribe Abonneren @@ -2626,280 +2866,293 @@ Je kan nu al informatie toevoegen over deze video. Show more Meer laten zien - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + Show less Laat minder zien - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 - OriginOrigin - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 - Open the video on the origin instanceOpen the video on the origin instance + src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + + + Origin + Origin + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 + + + Open the video on the origin instance + Open the video on the origin instance src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html 14 - Originally published Oorspronkelijk gepubliceerd - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html20 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html20 + Friendly Reminder: Vriendelijke Herinnering: - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. het deelsysteem voor deze video maakt dat technische gegevens over je systeem (onder meer je pubieke ip-adres) bij andere deelnemers kunnen terechtkomen. - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + More information Meer informatie - - - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html36src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56src/app/+admin/system/jobs/jobs.component.html56src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + src/app/+admin/moderation/video-block-list/video-block-list.component.html36 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56 + src/app/+admin/system/jobs/jobs.component.html56 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + The video was blocked due to automatic blocking of new videos De video is geblokkeerd door de automatische blokkering van nieuwe video's - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html57 + src/app/+admin/moderation/video-block-list/video-block-list.component.html57 + NSFW niet geschikt voor een werkomgeving - - src/app/+admin/moderation/video-block-list/video-block-list.component.html67 + src/app/+admin/moderation/video-block-list/video-block-list.component.html67 + Get more information Meer informatie krijgen - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + OK OK - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 - The video is being imported, it will be available when the import is finished. - The video is being imported, it will be available when the import is finished. + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 + + + The video is being imported, it will be available when the import is finished. + The video is being imported, it will be available when the import is finished. src/app/+videos/+video-watch/shared/information/video-alert.component.html 2,3 - - The video is being transcoded, it may not work properly. - The video is being transcoded, it may not work properly. + + + The video is being transcoded, it may not work properly. + The video is being transcoded, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 6,7 - - The video is being moved to an external server, it may not work properly. - The video is being moved to an external server, it may not work properly. + + + The video is being moved to an external server, it may not work properly. + The video is being moved to an external server, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 10,11 - - This video will be published on . - This video will be published on . + + + This video will be published on . + This video will be published on . - - src/app/+videos/+video-watch/shared/information/video-alert.component.html13 - This live has not started yet. - This live has not started yet. + src/app/+videos/+video-watch/shared/information/video-alert.component.html13 + + + This live has not started yet. + This live has not started yet. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html18 - This live has ended. - This live has ended. + src/app/+videos/+video-watch/shared/information/video-alert.component.html18 + + + This live has ended. + This live has ended. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html22 - - - + src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + SORT BY SORTEREN OP - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + Most recent first (default) Recentste eerst (standaard) - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + Most replies first Meeste antwoorden eerst - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + No comments. Geen commentaren. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 - View from and others View from and others - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 - {VAR_PLURAL, plural, =1 {1 reply} other { replies}}{VAR_PLURAL, plural, =1 {1 reply} other { replies}} - - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html74src/app/+videos/+video-watch/shared/comment/video-comments.component.html77src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 - View from View from - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 - View View - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 - - - + src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + + + View from and others + View from and others + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + + + {VAR_PLURAL, plural, =1 {1 reply} other { replies}} + {VAR_PLURAL, plural, =1 {1 reply} other { replies}} + src/app/+videos/+video-watch/shared/comment/video-comments.component.html74 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + + + View from + View from + src/app/+videos/+video-watch/shared/comment/video-comments.component.html77 + + + View + View + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + Comments are disabled. Reacties zijn uitgeschakeld. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html92 + The deletion will be sent to remote instances so they can reflect the change. De verwijdering wordt naar andere exemplaren van PeerTube gestuurd zodat zij er ook gevolg aan kunnen geven. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts175 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts175 + It is a remote comment, so the deletion will only be effective on your instance. Dit is een reactie van elders, dus de verwijdering zal enkel effect hebben op jouw exemplaar van PeerTube. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts177 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts177 + Delete and re-draft Verwijderen en opnieuw als klad - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts205 + Do you really want to delete and re-draft this comment? Wil je echt deze reactie verwijderen en opnieuw als klad instellen? - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts206 + Add comment... Voeg reactie toe... - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + Markdown compatible Markdown-compatibel - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + Markdown compatible that supports: Markdown-compatible met ondersteuning voor: - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + Auto generated links Automatisch gegenereerde verwijzingen - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + Break lines Breuklijnen - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + Lists Lijsten - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23src/app/shared/shared-main/misc/help.component.ts84 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23 + src/app/shared/shared-main/misc/help.component.ts84 + Emphasis Nadruk - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25src/app/shared/shared-main/misc/help.component.ts81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25 + src/app/shared/shared-main/misc/help.component.ts81 + bold vet - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + italic cursief - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + Emoji shortcuts Emoji-shortcuts - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + Emoji markup Emoji-opmaak - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + See complete list Volledige lijst bekijken - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + You are one step away from commenting Je bent een stap verwijderd van reageren - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 - You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 - - + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + + + You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). + You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + Login to comment Aanmelden om te reageren - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + Markdown Emoji List Markdown-Emoji-Lijst - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + Comment Reactie - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + Reply Antwoorden - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + Highlighted comment Belichte reactie - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + Reply Antwoord - - src/app/+videos/+video-watch/comment/video-comment.component.html36 + src/app/+videos/+video-watch/comment/video-comment.component.html36 + This comment has been deleted Deze reactie is verwijderd - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + Video redundancies Surpluskopieën video @@ -2919,13 +3172,14 @@ Je kan nu al informatie toevoegen over deze video. Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed? Het token vernieuwen heeft gevolgen. Al ingestelde gebruikers kunnen de stroom niet meer binnenhalen tot ze het nieuwe token instellen. Doorgaan? - - src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + src/app/+my-account/my-account-applications/my-account-applications.component.ts40 + Renew token Token vernieuwen - - src/app/+my-account/my-account-applications/my-account-applications.component.html35src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + src/app/+my-account/my-account-applications/my-account-applications.component.html35 + src/app/+my-account/my-account-applications/my-account-applications.component.ts41 + Token renewed. Update your client configuration accordingly. Token vernieuwd. Instellingen van je client bijwerken vereist. @@ -2937,8 +3191,10 @@ Je kan nu al informatie toevoegen over deze video. Applications Toepassingen - - src/app/+my-account/my-account-applications/my-account-applications.component.html3src/app/+my-account/my-account-routing.module.ts126src/app/+my-account/my-account.component.ts60 + src/app/+my-account/my-account-applications/my-account-applications.component.html3 + src/app/+my-account/my-account-routing.module.ts126 + src/app/+my-account/my-account.component.ts60 + SUBSCRIPTION FEED ABONNEMENTSFEED @@ -2984,155 +3240,134 @@ Je kan nu al informatie toevoegen over deze video. Renew token src/app/+my-account/my-account-applications/my-account-applications.component.html35 - Filter... Filtreren... - - - - - - - - - - - src/app/shared/shared-forms/advanced-input-filter.component.html17 + src/app/shared/shared-forms/advanced-input-filter.component.html17 + Clear filters Filters verwijderen - - - - - - - - - - - - - - - src/app/shared/shared-forms/advanced-input-filter.component.html23src/app/shared/shared-main/misc/simple-search-input.component.html14 + src/app/shared/shared-forms/advanced-input-filter.component.html23 + src/app/shared/shared-main/misc/simple-search-input.component.html14 + Video/Comment/Account Video/Reactie/Account - - src/app/shared/shared-abuse-list/abuse-list-table.component.html22 + src/app/shared/shared-abuse-list/abuse-list-table.component.html22 + ID ID - - src/app/+admin/system/jobs/jobs.component.html45 - + src/app/+admin/system/jobs/jobs.component.html45 + State Status - - - src/app/+my-library/my-video-imports/my-video-imports.component.html19src/app/+admin/system/jobs/jobs.component.html48 + src/app/+my-library/my-video-imports/my-video-imports.component.html19 + src/app/+admin/system/jobs/jobs.component.html48 + Created Gemaakt op - - - - - - src/app/+admin/follows/followers-list/followers-list.component.html27src/app/+admin/follows/following-list/following-list.component.html33src/app/+admin/system/jobs/jobs.component.html50src/app/+my-library/my-video-imports/my-video-imports.component.html20src/app/shared/shared-abuse-list/abuse-list-table.component.html23 + src/app/+admin/follows/followers-list/followers-list.component.html27 + src/app/+admin/follows/following-list/following-list.component.html33 + src/app/+admin/system/jobs/jobs.component.html50 + src/app/+my-library/my-video-imports/my-video-imports.component.html20 + src/app/shared/shared-abuse-list/abuse-list-table.component.html23 + Open actor page in a new tab Acteurpagina openen in nieuwe tab - - src/app/+admin/follows/followers-list/followers-list.component.html42 + src/app/+admin/follows/followers-list/followers-list.component.html42 + Accepted Geaccepteerd - - - src/app/+admin/follows/followers-list/followers-list.component.html49src/app/+admin/follows/following-list/following-list.component.html51 + src/app/+admin/follows/followers-list/followers-list.component.html49 + src/app/+admin/follows/following-list/following-list.component.html51 + Pending In behandeling - - - src/app/+admin/follows/followers-list/followers-list.component.html52src/app/+admin/follows/following-list/following-list.component.html54 + src/app/+admin/follows/followers-list/followers-list.component.html52 + src/app/+admin/follows/following-list/following-list.component.html54 + Accept Accepteren - - - - src/app/+admin/follows/followers-list/followers-list.component.html35src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25src/app/+my-library/my-ownership/my-ownership.component.html33 + src/app/+admin/follows/followers-list/followers-list.component.html35 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25 + src/app/+my-library/my-ownership/my-ownership.component.html33 + Refuse Weigeren - - - src/app/+admin/follows/followers-list/followers-list.component.html36src/app/+my-library/my-ownership/my-ownership.component.html34 + src/app/+admin/follows/followers-list/followers-list.component.html36 + src/app/+my-library/my-ownership/my-ownership.component.html34 + No follower found matching current filters. Geen volger gevonden in overeenstemming met huidige filters. - - src/app/+admin/follows/followers-list/followers-list.component.html64 + src/app/+admin/follows/followers-list/followers-list.component.html64 + Your instance doesn't have any follower. Je exemplaar van PeerTube heeft geen volgers. - - src/app/+admin/follows/followers-list/followers-list.component.html65 + src/app/+admin/follows/followers-list/followers-list.component.html65 + Showing to of followers Nu te zien: tot van volgers - - src/app/+admin/follows/followers-list/followers-list.component.html11 + src/app/+admin/follows/followers-list/followers-list.component.html11 + src/app/shared/shared-moderation/batch-domains-modal.component.html3 - Redundancy allowed Surpluskopie toegelaten - - src/app/+admin/follows/following-list/following-list.component.html34 - UnfollowUnfollow - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.html34 + + + Unfollow + Unfollow + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Exemplaar van PeerTube openen in nieuwe tab - - - - src/app/+admin/follows/following-list/following-list.component.html44src/app/shared/shared-moderation/server-blocklist.component.html42src/app/shared/shared-moderation/server-blocklist.component.html42 + src/app/+admin/follows/following-list/following-list.component.html44 + src/app/shared/shared-moderation/server-blocklist.component.html42 + src/app/shared/shared-moderation/server-blocklist.component.html42 + No host found matching current filters. Geen host gevonden op basis van huidige filters. - - src/app/+admin/follows/following-list/following-list.component.html71 + src/app/+admin/follows/following-list/following-list.component.html71 + Your instance is not following anyone. Je exemplaar van PeerTube volgt niemand. - - src/app/+admin/follows/following-list/following-list.component.html72 + src/app/+admin/follows/following-list/following-list.component.html72 + Showing to of hosts Nu te zien: tot van hosts - - src/app/+admin/follows/following-list/following-list.component.html11 + src/app/+admin/follows/following-list/following-list.component.html11 + - ActionAction - - - - - - - src/app/+admin/follows/following-list/following-list.component.html30src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html27src/app/shared/shared-moderation/account-blocklist.component.html22src/app/shared/shared-moderation/account-blocklist.component.html22src/app/shared/shared-moderation/server-blocklist.component.html30src/app/shared/shared-moderation/server-blocklist.component.html30 + Action + Action + src/app/+admin/follows/following-list/following-list.component.html30 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html27 + src/app/shared/shared-moderation/account-blocklist.component.html22 + src/app/shared/shared-moderation/account-blocklist.component.html22 + src/app/shared/shared-moderation/server-blocklist.component.html30 + src/app/shared/shared-moderation/server-blocklist.component.html30 + Videos redundancies Surpluskopieën video's @@ -3151,30 +3386,33 @@ Je kan nu al informatie toevoegen over deze video. Create user Gebruiker aanmaken - - src/app/+admin/users/user-edit/user-create.component.ts96src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts96 + src/app/+admin/users/user-list/user-list.component.html20 + Table parameters Tabelparameters - - src/app/+admin/users/user-list/user-list.component.html42 + src/app/+admin/users/user-list/user-list.component.html42 + Select columns Kolommen selecteren - - src/app/+admin/users/user-list/user-list.component.html48 + src/app/+admin/users/user-list/user-list.component.html48 + Highlight banned users Gebannen gebruikers markeren - - src/app/+admin/users/user-list/user-list.component.html54 + src/app/+admin/users/user-list/user-list.component.html54 + Username Gebruikersnaam - - - - src/app/+admin/users/user-edit/user-edit.component.html83src/app/+admin/users/user-edit/user-edit.component.html83src/app/+admin/users/user-list/user-list.component.ts111src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6src/app/+signup/+register/register-step-user.component.html23 + src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+admin/users/user-list/user-list.component.ts111 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6 + src/app/+signup/+register/register-step-user.component.html23 + e.g. jane_doe vb. piet_fluwijn @@ -3202,27 +3440,33 @@ Je kan nu al informatie toevoegen over deze video. Role Rol - - - src/app/+admin/users/user-edit/user-edit.component.html136src/app/+admin/users/user-edit/user-edit.component.html136src/app/+admin/users/user-list/user-list.component.ts114 + src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-list/user-list.component.ts114 + Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . Transcoding is ingeschakeld. De videoquota houden enkel rekening met de grootte van de originele video. Deze gebruiker kan maximaal ~ uploaden. - - - src/app/+admin/users/user-edit/user-edit.component.html162src/app/+admin/users/user-edit/user-edit.component.html162 + src/app/+admin/users/user-edit/user-edit.component.html162 + src/app/+admin/users/user-edit/user-edit.component.html162 + Daily video quota Dagelijks videoquotum - - - - src/app/+admin/users/user-edit/user-edit.component.html172src/app/+admin/users/user-edit/user-edit.component.html172src/app/shared/shared-main/users/user-quota.component.html13 - Auth pluginAuth plugin - - - src/app/+admin/users/user-edit/user-edit.component.html188src/app/+admin/users/user-edit/user-edit.component.html188src/app/+admin/users/user-list/user-list.component.ts121 - None (local authentication)None (local authentication) + src/app/+admin/users/user-edit/user-edit.component.html172 + src/app/+admin/users/user-edit/user-edit.component.html172 + src/app/shared/shared-main/users/user-quota.component.html13 + + + Auth plugin + Auth plugin + src/app/+admin/users/user-edit/user-edit.component.html188 + src/app/+admin/users/user-edit/user-edit.component.html188 + src/app/+admin/users/user-list/user-list.component.ts121 + + + None (local authentication) + None (local authentication) src/app/+admin/users/user-edit/user-edit.component.html 192 @@ -3235,27 +3479,27 @@ Je kan nu al informatie toevoegen over deze video. Doesn't need review before a video goes public Geen beoordeling nodig voor een video publiek beschikbaar wordt - - - src/app/+admin/users/user-edit/user-edit.component.html201src/app/+admin/users/user-edit/user-edit.component.html201 + src/app/+admin/users/user-edit/user-edit.component.html201 + src/app/+admin/users/user-edit/user-edit.component.html201 + Send a link to reset the password by email to the user Stuur een link per e-mail naar de gebruiker om het wachtwoord te resetten - - - src/app/+admin/users/user-edit/user-edit.component.html226src/app/+admin/users/user-edit/user-edit.component.html226 + src/app/+admin/users/user-edit/user-edit.component.html226 + src/app/+admin/users/user-edit/user-edit.component.html226 + Ask for new password Vraag om een nieuw wachtwoord - - - src/app/+admin/users/user-edit/user-edit.component.html227src/app/+admin/users/user-edit/user-edit.component.html227 + src/app/+admin/users/user-edit/user-edit.component.html227 + src/app/+admin/users/user-edit/user-edit.component.html227 + Manually set the user password Stel het gebruikerswachtwoord handmatig in - - - src/app/+admin/users/user-edit/user-edit.component.html231src/app/+admin/users/user-edit/user-edit.component.html231 + src/app/+admin/users/user-edit/user-edit.component.html231 + src/app/+admin/users/user-edit/user-edit.component.html231 + Show Tonen @@ -3264,62 +3508,59 @@ Je kan nu al informatie toevoegen over deze video. Hide Verbergen - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html115src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html115 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + Batch actions Batchacties - - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html23src/app/+admin/users/user-list/user-list.component.html13 - - + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html23 + src/app/+admin/users/user-list/user-list.component.html13 + The user was banned De gebruiker is verbannen - - - src/app/+admin/users/user-list/user-list.component.html139 + src/app/+admin/users/user-list/user-list.component.html139 + Open account in a new tab Account in nieuwe tab openen - - - - - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html70src/app/+admin/users/user-list/user-list.component.html90src/app/+my-library/my-ownership/my-ownership.component.html38src/app/shared/shared-abuse-list/abuse-list-table.component.html46src/app/shared/shared-moderation/account-blocklist.component.html34src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html70 + src/app/+admin/users/user-list/user-list.component.html90 + src/app/+my-library/my-ownership/my-ownership.component.html38 + src/app/shared/shared-abuse-list/abuse-list-table.component.html46 + src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/shared/shared-moderation/account-blocklist.component.html34 + Deleted account Verwijderde account - - src/app/shared/shared-abuse-list/abuse-list-table.component.html57 + src/app/shared/shared-abuse-list/abuse-list-table.component.html57 + User's email must be verified to login Gebruiker's e-mail moet geverifieerd zijn om in te loggen - - - src/app/+admin/users/user-list/user-list.component.html108 + src/app/+admin/users/user-list/user-list.component.html108 + User's email is verified / User can login without email verification Gebruiker's e-mail is geverifieerd / Gebruiker kan inloggen zonder e-mailverificatie - - src/app/+admin/users/user-list/user-list.component.html112 + src/app/+admin/users/user-list/user-list.component.html112 + Total daily video quota Totaal dagelijks videoquotum - - src/app/+admin/users/user-list/user-list.component.html129 + src/app/+admin/users/user-list/user-list.component.html129 + Ban reason: Reden van verbanning: - - src/app/+admin/users/user-list/user-list.component.html156 - Banned usersBanned users + src/app/+admin/users/user-list/user-list.component.html156 + + + Banned users + Banned users src/app/+admin/users/user-list/user-list.component.ts 40 @@ -3339,45 +3580,56 @@ Je kan nu al informatie toevoegen over deze video. Reports Aangiften - - - src/app/+admin/admin.component.ts53src/app/+admin/moderation/abuse-list/abuse-list.component.html3src/app/+admin/moderation/moderation.routes.ts37src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + src/app/+admin/admin.component.ts53 + src/app/+admin/moderation/abuse-list/abuse-list.component.html3 + src/app/+admin/moderation/moderation.routes.ts37 + src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + Video blocks Videoblokkeringen - - src/app/+admin/admin.component.ts60src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + src/app/+admin/admin.component.ts60 + src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + Video comments Reacties op video - - - src/app/+admin/admin.component.ts67src/app/+admin/moderation/moderation.routes.ts86src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 + src/app/+admin/admin.component.ts67 + src/app/+admin/moderation/moderation.routes.ts86 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 + Muted accounts Gedempte accounts - - - - - src/app/+admin/admin.component.ts74src/app/+admin/moderation/moderation.routes.ts98src/app/+my-account/my-account-routing.module.ts85src/app/+my-account/my-account.component.ts31src/app/shared/shared-moderation/account-blocklist.component.html3src/app/shared/shared-moderation/account-blocklist.component.html3 + src/app/+admin/admin.component.ts74 + src/app/+admin/moderation/moderation.routes.ts98 + src/app/+my-account/my-account-routing.module.ts85 + src/app/+my-account/my-account.component.ts31 + src/app/shared/shared-moderation/account-blocklist.component.html3 + src/app/shared/shared-moderation/account-blocklist.component.html3 + Muted servers Gedempte servers - - - - src/app/+admin/admin.component.ts81src/app/+my-account/my-account-routing.module.ts94src/app/+my-account/my-account.component.ts36src/app/shared/shared-moderation/server-blocklist.component.html3src/app/shared/shared-moderation/server-blocklist.component.html3 + src/app/+admin/admin.component.ts81 + src/app/+my-account/my-account-routing.module.ts94 + src/app/+my-account/my-account.component.ts36 + src/app/shared/shared-moderation/server-blocklist.component.html3 + src/app/shared/shared-moderation/server-blocklist.component.html3 + Users Gebruikers - - src/app/+admin/admin.component.ts88src/app/+admin/users/user-edit/user-edit.component.html4src/app/+admin/users/user-edit/user-edit.component.html4 + src/app/+admin/admin.component.ts88 + src/app/+admin/users/user-edit/user-edit.component.html4 + src/app/+admin/users/user-edit/user-edit.component.html4 + Configuration Configuratie - - src/app/+admin/admin.component.ts95src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 + src/app/+admin/admin.component.ts95 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 + Video blocks Videoblokkeringen @@ -3395,15 +3647,12 @@ Je kan nu al informatie toevoegen over deze video. src/app/shared/shared-moderation/server-blocklist.component.html3 src/app/shared/shared-moderation/server-blocklist.component.html3 - - - Video Video - - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html29src/app/+admin/moderation/video-block-list/video-block-list.component.html26 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html29 + src/app/+admin/moderation/video-block-list/video-block-list.component.html26 + Total size Totale grootte @@ -3437,35 +3686,38 @@ Je kan nu al informatie toevoegen over deze video. Sensitive Gevoelig - - src/app/+admin/moderation/video-block-list/video-block-list.component.html27 + src/app/+admin/moderation/video-block-list/video-block-list.component.html27 + Unfederated Niet gefedereerd - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html28src/app/+admin/moderation/video-block-list/video-block-list.component.html71 + src/app/+admin/moderation/video-block-list/video-block-list.component.html28 + src/app/+admin/moderation/video-block-list/video-block-list.component.html71 + Date Datum - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html29src/app/+admin/moderation/video-comment-list/video-comment-list.component.html45 + src/app/+admin/moderation/video-block-list/video-block-list.component.html29 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html45 + Select this row Select this row - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html53src/app/+admin/users/user-list/user-list.component.html74 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html53 + src/app/+admin/users/user-list/user-list.component.html74 + Actions Acties - - - - - src/app/+admin/follows/followers-list/followers-list.component.html23src/app/+admin/moderation/video-block-list/video-block-list.component.html45src/app/+admin/moderation/video-comment-list/video-comment-list.component.html65src/app/+my-library/my-ownership/my-ownership.component.html18src/app/shared/shared-abuse-list/abuse-list-table.component.html41 - FollowerFollower + src/app/+admin/follows/followers-list/followers-list.component.html23 + src/app/+admin/moderation/video-block-list/video-block-list.component.html45 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html65 + src/app/+my-library/my-ownership/my-ownership.component.html18 + src/app/shared/shared-abuse-list/abuse-list-table.component.html41 + + + Follower + Follower src/app/+admin/follows/followers-list/followers-list.component.html 24 @@ -3474,25 +3726,29 @@ Je kan nu al informatie toevoegen over deze video. Commented video Video met reacties - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html82 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html82 + No comments found matching current filters. Geen reacties gevonden op basis van huidige criteria. - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html107 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html107 + No comments found. Geen reacties gevonden. - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html108 - Local commentsLocal comments + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html108 + + + Local comments + Local comments src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts 48 - - Remote commentsRemote comments + + + Remote comments + Remote comments src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts 52 @@ -3501,54 +3757,68 @@ Je kan nu al informatie toevoegen over deze video. No abuses found matching current filters. Geen misbruiken gevonden op basis van huidige filters. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + No abuses found. Geen misbruiken gevonden. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html167 - Unsolved reportsUnsolved reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts43 - Accepted reportsAccepted reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts47 - Refused reportsRefused reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts51 - Reports with blocked videosReports with blocked videos - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts55 - Reports with deleted videosReports with deleted videos - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts59 + src/app/shared/shared-abuse-list/abuse-list-table.component.html167 + + + Unsolved reports + Unsolved reports + src/app/shared/shared-abuse-list/abuse-list-table.component.ts43 + + + Accepted reports + Accepted reports + src/app/shared/shared-abuse-list/abuse-list-table.component.ts47 + + + Refused reports + Refused reports + src/app/shared/shared-abuse-list/abuse-list-table.component.ts51 + + + Reports with blocked videos + Reports with blocked videos + src/app/shared/shared-abuse-list/abuse-list-table.component.ts55 + + + Reports with deleted videos + Reports with deleted videos + src/app/shared/shared-abuse-list/abuse-list-table.component.ts59 + Block reason: Reden blokkering: - - src/app/+admin/moderation/video-block-list/video-block-list.component.html87 + src/app/+admin/moderation/video-block-list/video-block-list.component.html87 + No blocked video found matching current filters. Geen geblokkeerde video gevonden die aan de huidige criteria voldoet. - - src/app/+admin/moderation/video-block-list/video-block-list.component.html107 + src/app/+admin/moderation/video-block-list/video-block-list.component.html107 + No blocked video found. Geen geblokkeerde video gevonden. - - src/app/+admin/moderation/video-block-list/video-block-list.component.html108 - Automatic blocksAutomatic blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts32 - Manual blocksManual blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts36 + src/app/+admin/moderation/video-block-list/video-block-list.component.html108 + + + Automatic blocks + Automatic blocks + src/app/+admin/moderation/video-block-list/video-block-list.component.ts32 + + + Manual blocks + Manual blocks + src/app/+admin/moderation/video-block-list/video-block-list.component.ts36 + Showing to of blocked videos Nu te zien: geblokkeerde video's tot van geblokkeerde video's - - src/app/+admin/moderation/video-block-list/video-block-list.component.html11 + src/app/+admin/moderation/video-block-list/video-block-list.component.html11 + Reports Aangiften @@ -3570,70 +3840,65 @@ Je kan nu al informatie toevoegen over deze video. Update this comment Werk deze comment bij - - src/app/shared/shared-abuse-list/moderation-comment-modal.component.html30 - - - - - - + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html30 + Reporter Melder - - - src/app/shared/shared-abuse-list/abuse-details.component.html7src/app/shared/shared-abuse-list/abuse-list-table.component.html21 + src/app/shared/shared-abuse-list/abuse-details.component.html7 + src/app/shared/shared-abuse-list/abuse-list-table.component.html21 + - - src/app/shared/shared-abuse-list/abuse-details.component.html22src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html22 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + {VAR_PLURAL, plural, =1 {1 report} other { reports}} {VAR_PLURAL, plural, =1 {1 report} other { reports} } - - src/app/shared/shared-abuse-list/abuse-details.component.html22src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html22 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + Video Video - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43src/app/+my-library/my-ownership/my-ownership.component.html20src/app/+my-library/my-video-imports/my-video-imports.component.html18src/app/shared/shared-video-miniature/video-download.component.html8 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43 + src/app/+my-library/my-ownership/my-ownership.component.html20 + src/app/+my-library/my-video-imports/my-video-imports.component.html18 + src/app/shared/shared-video-miniature/video-download.component.html8 + Comment Reageren - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + This video has been reported multiple times. Deze video is meerdere keren aangegeven. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.html70 + src/app/shared/shared-abuse-list/abuse-list-table.component.html70 + The video was blocked De video is geblokkeerd - - - src/app/shared/shared-abuse-list/abuse-list-table.component.html79 + src/app/shared/shared-abuse-list/abuse-list-table.component.html79 + by on door op - - - src/app/shared/shared-abuse-list/abuse-list-table.component.html82src/app/shared/shared-abuse-list/abuse-list-table.component.html99 + src/app/shared/shared-abuse-list/abuse-list-table.component.html82 + src/app/shared/shared-abuse-list/abuse-list-table.component.html99 + Video was deleted Video verwijderd - - src/app/shared/shared-abuse-list/abuse-list-table.component.html89 + src/app/shared/shared-abuse-list/abuse-list-table.component.html89 + Account deleted Account verwijderd - - src/app/shared/shared-abuse-list/abuse-list-table.component.html125 + src/app/shared/shared-abuse-list/abuse-list-table.component.html125 + Open video in a new tab Video in een nieuwe tab openen @@ -3642,128 +3907,128 @@ Je kan nu al informatie toevoegen over deze video. State Toestand - - - - src/app/+admin/follows/followers-list/followers-list.component.html25src/app/+admin/follows/following-list/following-list.component.html32src/app/shared/shared-abuse-list/abuse-list-table.component.html24 + src/app/+admin/follows/followers-list/followers-list.component.html25 + src/app/+admin/follows/following-list/following-list.component.html32 + src/app/shared/shared-abuse-list/abuse-list-table.component.html24 + Messages Berichten - - src/app/shared/shared-abuse-list/abuse-list-table.component.html25 + src/app/shared/shared-abuse-list/abuse-list-table.component.html25 + Internal note Interne nota - - src/app/shared/shared-abuse-list/abuse-list-table.component.html26 + src/app/shared/shared-abuse-list/abuse-list-table.component.html26 + Score Score - - src/app/+admin/follows/followers-list/followers-list.component.html26 + src/app/+admin/follows/followers-list/followers-list.component.html26 + Showing to of reports Nu te zien: tot van aangiften - - src/app/shared/shared-abuse-list/abuse-list-table.component.html6 + src/app/shared/shared-abuse-list/abuse-list-table.component.html6 + Reportee Aangegevene - - src/app/shared/shared-abuse-list/abuse-details.component.html28 + src/app/shared/shared-abuse-list/abuse-details.component.html28 + - - src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + {VAR_PLURAL, plural, =1 {1 report} other { reports}} {VAR_PLURAL, plural, =1 {1 report} other { reports} } - - src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + Updated Bijgewerkt - - src/app/shared/shared-abuse-list/abuse-details.component.html48 + src/app/shared/shared-abuse-list/abuse-details.component.html48 + Mute domain Domein dempen - - - src/app/shared/shared-moderation/server-blocklist.component.html18src/app/shared/shared-moderation/server-blocklist.component.html18 + src/app/shared/shared-moderation/server-blocklist.component.html18 + src/app/shared/shared-moderation/server-blocklist.component.html18 + Instance Exemplaar van PeerTube - - - - - src/app/+about/about.component.html5src/app/+search/search-filters.component.html192src/app/shared/shared-moderation/server-blocklist.component.html31src/app/shared/shared-moderation/server-blocklist.component.html31 + src/app/+about/about.component.html5 + src/app/+search/search-filters.component.html192 + src/app/shared/shared-moderation/server-blocklist.component.html31 + src/app/shared/shared-moderation/server-blocklist.component.html31 + Muted at Gedempt bij - - - - - src/app/shared/shared-moderation/account-blocklist.component.html24src/app/shared/shared-moderation/account-blocklist.component.html24src/app/shared/shared-moderation/server-blocklist.component.html32src/app/shared/shared-moderation/server-blocklist.component.html32 + src/app/shared/shared-moderation/account-blocklist.component.html24 + src/app/shared/shared-moderation/account-blocklist.component.html24 + src/app/shared/shared-moderation/server-blocklist.component.html32 + src/app/shared/shared-moderation/server-blocklist.component.html32 + Unmute Demping opheffen - - - - - src/app/shared/shared-moderation/account-blocklist.component.html31src/app/shared/shared-moderation/account-blocklist.component.html31src/app/shared/shared-moderation/server-blocklist.component.html39src/app/shared/shared-moderation/server-blocklist.component.html39 + src/app/shared/shared-moderation/account-blocklist.component.html31 + src/app/shared/shared-moderation/account-blocklist.component.html31 + src/app/shared/shared-moderation/server-blocklist.component.html39 + src/app/shared/shared-moderation/server-blocklist.component.html39 + No server found matching current filters. Geen server gevonden op basis van de huidige criteria. - - - src/app/shared/shared-moderation/server-blocklist.component.html55src/app/shared/shared-moderation/server-blocklist.component.html55 + src/app/shared/shared-moderation/server-blocklist.component.html55 + src/app/shared/shared-moderation/server-blocklist.component.html55 + No server found. Geen server gevonden. - - - src/app/shared/shared-moderation/server-blocklist.component.html56src/app/shared/shared-moderation/server-blocklist.component.html56 + src/app/shared/shared-moderation/server-blocklist.component.html56 + src/app/shared/shared-moderation/server-blocklist.component.html56 + Showing to of muted instances Nu te zien: tot van gedempte exemplaren van PeerTube - - - src/app/shared/shared-moderation/server-blocklist.component.html11src/app/shared/shared-moderation/server-blocklist.component.html11 + src/app/shared/shared-moderation/server-blocklist.component.html11 + src/app/shared/shared-moderation/server-blocklist.component.html11 + It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. Het lijkt dat je niet op een HTTPS-server zit. Om een andere server te volgen is TLS op jouw webserver vereist. - - src/app/+admin/follows/following-list/follow-modal.component.html28 + src/app/+admin/follows/following-list/follow-modal.component.html28 + Mute domains Domeinen dempen - - - src/app/shared/shared-moderation/server-blocklist.component.html63src/app/shared/shared-moderation/server-blocklist.component.html63 + src/app/shared/shared-moderation/server-blocklist.component.html63 + src/app/shared/shared-moderation/server-blocklist.component.html63 + Account Account - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html42src/app/shared/shared-moderation/account-blocklist.component.html23src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html42 + src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/shared/shared-moderation/account-blocklist.component.html23 + No account found matching current filters. Geen account gevonden op basis van huidige criteria. - - - src/app/shared/shared-moderation/account-blocklist.component.html53src/app/shared/shared-moderation/account-blocklist.component.html53 + src/app/shared/shared-moderation/account-blocklist.component.html53 + src/app/shared/shared-moderation/account-blocklist.component.html53 + No account found. Geen account gevonden. - - - src/app/shared/shared-moderation/account-blocklist.component.html54src/app/shared/shared-moderation/account-blocklist.component.html54 + src/app/shared/shared-moderation/account-blocklist.component.html54 + src/app/shared/shared-moderation/account-blocklist.component.html54 + List installed plugins Geïnstalleerde plugins oplijsten @@ -3805,10 +4070,14 @@ Je kan nu al informatie toevoegen over deze video. Search Zoeken - - - - src/app/+admin/plugins/plugins.component.html5src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts260src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/shared/shared-main/misc/simple-search-input.component.ts12src/app/shared/shared-main/misc/simple-search-input.component.ts13 + src/app/+admin/plugins/plugins.component.html5 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts260 + src/app/header/search-typeahead.component.html8 + src/app/shared/shared-instance/instance-features-table.component.html122 + src/app/shared/shared-main/misc/simple-search-input.component.ts12 + src/app/shared/shared-main/misc/simple-search-input.component.ts13 + Users can resolve distant content Gebruikers kunnen inhoud van elders opvragen @@ -3823,10 +4092,11 @@ Je kan nu al informatie toevoegen over deze video. Settings Instellingen - - - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html27src/app/+admin/plugins/plugin-search/plugin-search.component.html53src/app/+my-account/my-account-settings/my-account-settings.component.html1src/app/+my-account/my-account.component.ts50 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html27 + src/app/+admin/plugins/plugin-search/plugin-search.component.html53 + src/app/+my-account/my-account-settings/my-account-settings.component.html1 + src/app/+my-account/my-account.component.ts50 + Display settings Scherminstellingen @@ -3835,23 +4105,32 @@ Je kan nu al informatie toevoegen over deze video. Uninstall Verwijderen - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 - Videos with the most interactions for recent videosVideos with the most interactions for recent videos - - src/app/+videos/video-list/videos-list-common-page.component.ts204 - Videos with the most views during the last 24 hoursVideos with the most views during the last 24 hours - - src/app/+videos/video-list/videos-list-common-page.component.ts208 - Videos with the most views during the last daysVideos with the most views during the last days + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 + + + Videos with the most interactions for recent videos + Videos with the most interactions for recent videos + src/app/+videos/video-list/videos-list-common-page.component.ts204 + + + Videos with the most views during the last 24 hours + Videos with the most views during the last 24 hours + src/app/+videos/video-list/videos-list-common-page.component.ts208 + + + Videos with the most views during the last days + Videos with the most views during the last days src/app/+videos/video-list/videos-list-common-page.component.ts 209 - - Videos that have the most likesVideos that have the most likes - - src/app/+videos/video-list/videos-list-common-page.component.ts205 + + + Videos that have the most likes + Videos that have the most likes + src/app/+videos/video-list/videos-list-common-page.component.ts205 + To load your new installed plugins or themes, refresh the page. @@ -3863,14 +4142,15 @@ Je kan nu al informatie toevoegen over deze video. Popular Populair src/app/+admin/plugins/plugin-search/plugin-search.component.html16 - - for "" for "" + + + for "" + for "" src/app/+admin/plugins/plugin-search/plugin-search.component.html 22,24 - {VAR_PLURAL, plural, =1 {result} other {results} } {VAR_PLURAL, plural, =1 {result} other {results} } @@ -3906,54 +4186,59 @@ Je kan nu al informatie toevoegen over deze video. Jobs Taken - - src/app/+admin/system/system.component.html3src/app/+admin/system/system.routes.ts26 + src/app/+admin/system/system.component.html3 + src/app/+admin/system/system.routes.ts26 + Logs Logboeken - - src/app/+admin/system/system.component.html5src/app/+admin/system/system.routes.ts37 + src/app/+admin/system/system.component.html5 + src/app/+admin/system/system.routes.ts37 + Debug Debug - - src/app/+admin/system/system.component.html7src/app/+admin/system/system.routes.ts48 + src/app/+admin/system/system.component.html7 + src/app/+admin/system/system.routes.ts48 + Delete this comment Deze reactie verwijderen - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts75 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts75 + Delete all comments of this account Alle reacties van deze account verwijderen - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts81 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts81 + Comments are deleted after a few minutes Reacties worden na enkele minuten verwijderd - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts82 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts82 + comments deleted. reacties verwijderd. - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts143 + Do you really want to delete all comments of ? Wil je werkelijk alle reacties van verwijderen? - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + Comments of will be deleted in a few minutes Reacties van worden binnen enkele minuten verwijderd - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts175 + Video comments Reacties op video src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 - - This view also shows comments from muted accounts.This view also shows comments from muted accounts. + + + This view also shows comments from muted accounts. + This view also shows comments from muted accounts. src/app/+admin/moderation/video-comment-list/video-comment-list.component.html 8 @@ -3962,17 +4247,14 @@ Je kan nu al informatie toevoegen over deze video. Showing to of comments Nu te zien: reacties tot van - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html15 - - - + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html15 + Select all rows Select all rows - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html38src/app/+admin/users/user-list/user-list.component.html34 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html38 + src/app/+admin/users/user-list/user-list.component.html34 + Job type Type taak @@ -3995,20 +4277,24 @@ Je kan nu al informatie toevoegen over deze video. Showing to of jobs Nu te zien: tot van taken - - src/app/+admin/system/jobs/jobs.component.html39 + src/app/+admin/system/jobs/jobs.component.html39 + Type Type - - src/app/+admin/system/jobs/jobs.component.html46 - Priority (1 = highest priority)Priority (1 = highest priority) + src/app/+admin/system/jobs/jobs.component.html46 + + + Priority (1 = highest priority) + Priority (1 = highest priority) src/app/+admin/system/jobs/jobs.component.html 47 - - ProgressProgress + + + Progress + Progress src/app/+admin/system/jobs/jobs.component.html 49 @@ -4017,28 +4303,29 @@ Je kan nu al informatie toevoegen over deze video. No jobs found. Geen taken gevonden. - - src/app/+admin/system/jobs/jobs.component.html107 + src/app/+admin/system/jobs/jobs.component.html107 + No jobs found. Geen taken gevonden. - - src/app/+admin/system/jobs/jobs.component.html108 + src/app/+admin/system/jobs/jobs.component.html108 + No jobs found. Geen taken gevonden. - - src/app/+admin/system/jobs/jobs.component.html111 + src/app/+admin/system/jobs/jobs.component.html111 + No jobs found that are . Geen taken gevonden die zijn. - - src/app/+admin/system/jobs/jobs.component.html112 + src/app/+admin/system/jobs/jobs.component.html112 + Refresh Verversen - - src/app/+admin/system/jobs/jobs.component.html30src/app/+admin/system/logs/logs.component.html34 + src/app/+admin/system/jobs/jobs.component.html30 + src/app/+admin/system/logs/logs.component.html34 + now nu @@ -4057,110 +4344,110 @@ Je kan nu al informatie toevoegen over deze video. INSTANCE EXEMPLAAR VAN PEERTUBE - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html7 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html7 + Name Naam - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html13src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html44src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html44 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html13 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html44 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html44 + Short description Korte omschrijving - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html24 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html24 + Main instance categories Hoofdcategorieën exemplaar van PeerTube - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html50 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html50 + Add a new category Nieuwe categorie toevoegen - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57src/app/shared/shared-forms/select/select-categories.component.html5 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + src/app/shared/shared-forms/select/select-categories.component.html5 + The sharing system implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. Het deelsysteem impliceert dat enige technische informatie over je systeem (zoals een publiek IP-adres) naar andere peers kan worden verzonden, maar helpt de serverbelasting sterk te verminderen. - - src/app/shared/shared-user-settings/user-video-settings.component.html45 + src/app/shared/shared-user-settings/user-video-settings.component.html45 + Help share videos being played Video's die aan het afspelen zijn helpen delen - - src/app/shared/shared-user-settings/user-video-settings.component.html42 + src/app/shared/shared-user-settings/user-video-settings.component.html42 + When on a video page, directly start playing the video. Bij aankomst op een videopagina onmiddellijk starten met afspelen. - - src/app/shared/shared-user-settings/user-video-settings.component.html56 + src/app/shared/shared-user-settings/user-video-settings.component.html56 + Automatically play videos Video's automatisch afspelen - - src/app/shared/shared-user-settings/user-video-settings.component.html53 + src/app/shared/shared-user-settings/user-video-settings.component.html53 + When a video ends, follow up with the next suggested video. Na het einde van een video de volgende gesuggereerde video laten volgen. - - src/app/shared/shared-user-settings/user-video-settings.component.html67 + src/app/shared/shared-user-settings/user-video-settings.component.html67 + Automatically start playing the next video Automatisch de volgende video beginnen afspelen - - src/app/shared/shared-user-settings/user-video-settings.component.html64 + src/app/shared/shared-user-settings/user-video-settings.component.html64 + Main languages you/your moderators speak Belangrijkste talen die jij/je moderatoren spreken - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html64 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html64 + MODERATION & NSFW MODERATIE & NIET GESCHIKT VOOR WERKOMGEVING - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html82 - Manage users to build a moderation team. Manage users to build a moderation team. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html84 - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html82 + + + Manage users to build a moderation team. + Manage users to build a moderation team. + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html84 + This instance is dedicated to sensitive or NSFW content Dit exemplaar van PeerTube is gewijd aan gevoelige of niet voor een werkomgeving geschikte inhoud - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html93 - Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html98 - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html93 + + + Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. + Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html98 + Policy on videos containing sensitive content Beleid rond video's met gevoelige inhoud - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 - With Hide or Blur thumbnails, a confirmation will be requested to watch the video. With Hide or Blur thumbnails, a confirmation will be requested to watch the video. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111src/app/shared/shared-user-settings/user-video-settings.component.html8 - - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 + + + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111 + src/app/shared/shared-user-settings/user-video-settings.component.html8 + Blur thumbnails Thumbnails vervagen - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html120src/app/shared/shared-user-settings/user-video-settings.component.html17 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html120 + src/app/shared/shared-user-settings/user-video-settings.component.html17 + Display Tonen - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html121src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html8src/app/shared/shared-user-settings/user-video-settings.component.html18 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html121 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html8 + src/app/shared/shared-user-settings/user-video-settings.component.html18 + Strategy Strategie @@ -4169,204 +4456,209 @@ Je kan nu al informatie toevoegen over deze video. Terms Voorwaarden - - - - - - src/app/+about/about-instance/about-instance.component.html168src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129src/app/+signup/+register/register.component.html13src/app/shared/shared-instance/instance-about-accordion.component.html35 + src/app/+about/about-instance/about-instance.component.html168 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129 + src/app/+signup/+register/register.component.html13 + src/app/shared/shared-instance/instance-about-accordion.component.html35 + Code of conduct Gedragscode - - - - - src/app/+about/about-instance/about-instance.component.html154src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140src/app/shared/shared-instance/instance-about-accordion.component.html47 + src/app/+about/about-instance/about-instance.component.html154 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140 + src/app/shared/shared-instance/instance-about-accordion.component.html47 + Moderation information Moderatie-informatie - - - - - src/app/+about/about-instance/about-instance.component.html140src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151src/app/shared/shared-instance/instance-about-accordion.component.html41 + src/app/+about/about-instance/about-instance.component.html140 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151 + src/app/shared/shared-instance/instance-about-accordion.component.html41 + Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc Wie modereert het exemplaar van PeerTube? Wat is het beleid wat betreft niet voor de werkomgeving geschikte video's? politieke video's? Ectetera - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html152 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html152 + YOU AND YOUR INSTANCE JIJ EN JE EXEMPLAAR VAN PEERTUBE - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html167 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html167 + Who is behind the instance? Wie zit er achter het exemplaar van PeerTube? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html173 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html173 + A single person? A non-profit? A company? Een individu? Een non-profit? Een bedrijf? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html174 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html174 + Why did you create this instance? Waarom heb je dit exemplaar van PeerTube opgezet? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html185 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html185 + To share your personal videos? To open registrations and allow people to upload what they want? Om je persoonlijke video's te dleen? Om een open registratiebeleid te voeren en mensen toe te laten te uploaden wat ze willen? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html186 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html186 + How long do you plan to maintain this instance? Hoe lang plan je dit exemplaar van PeerTube te onderhouden? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html197 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html197 + It's important to know for users who want to register on your instance Het is belangrijk om weten voor gebruikers die willen registreren op je exemplaar van PeerTube - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html198 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html198 + How will you finance the PeerTube server? How ga je de PeerTube-server betalen? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html209 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html209 + With your own funds? With user donations? Advertising? Met je eigen geld? Met schenkingen van gebruikers? Advertenties? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html210 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html210 + OTHER INFORMATION ANDERE INFORMATIE - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html225 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html225 + What server/hardware does the instance run on? Op wat voor server/hardware draait het exemplaar van PeerTube? - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html231 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html231 + i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc. bijvoorbeeld. 2 virtuele kernen, 2GB RAM, een directe link naar de gehuurde server enzovoort. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html232 - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html232 + APPEARANCE UITERLIJK - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html4 - Use plugins & themes for more involved changes, or add slight customizations. Use plugins & themes for more involved changes, or add slight customizations. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html4 + + + Use plugins & themes for more involved changes, or add slight customizations. + Use plugins & themes for more involved changes, or add slight customizations. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 6,7 - default standaard - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html18 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html18 + Landing page Bestemmingspagina - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html27 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html27 + - Default trending pageDefault trending page - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html43 - Best videosBest videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html47 - Hot videosHot videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html48 - Most viewed videosMost viewed videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html49 - + Default trending page + Default trending page + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html43 + + + Best videos + Best videos + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html47 + + + Hot videos + Hot videos + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html48 + + + Most viewed videos + Most viewed videos + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html49 + Most liked videos Meest geliefde video's - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html50 - - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html50 + BROADCAST MESSAGE BERICHT NAAR IEDEREEN ZENDEN - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html64 - Display a message on your instance Display a message on your instance - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html66 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html64 + + + Display a message on your instance + Display a message on your instance + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html66 + Enable broadcast message Bericht naar iedereen inschakelen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html77 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html77 + Allow users to dismiss the broadcast message Gebruikers toelaten een bericht voor iedereen af te wijzen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html84 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html84 + Broadcast message level Niveau bericht naar iedereen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html89 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html89 + Message Bericht - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html103 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html103 + NEW USERS NIEUWE GEBRUIKERS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html120 - Manage users to set their quota individually. Manage users to set their quota individually. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html122 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html120 + + + Manage users to set their quota individually. + Manage users to set their quota individually. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html122 + Signup requires email verification E-mailverificatie nodig bij registratie - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html143 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html143 + Signup limit Registratielimiet - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html147 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html147 + {VAR_PLURAL, plural, =1 {user} other {users}} {VAR_PLURAL, plural, =1 {gebruiker} other {gebruikers}} - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html154 - Signup won't be limited to a fixed number of users.Signup won't be limited to a fixed number of users. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html159 - Minimum required age to create an accountMinimum required age to create an account + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html154 + + + Signup won't be limited to a fixed number of users. + Signup won't be limited to a fixed number of users. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html159 + + + Minimum required age to create an account + Minimum required age to create an account src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 163 - - {VAR_PLURAL, plural, =1 {year old} other {years old}}{VAR_PLURAL, plural, =1 {year old} other {years old}} + + + {VAR_PLURAL, plural, =1 {year old} other {years old}} + {VAR_PLURAL, plural, =1 {year old} other {years old}} src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 170 @@ -4375,8 +4667,8 @@ Je kan nu al informatie toevoegen over deze video. Enable Signup Inschrijven inschakelen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html132 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html132 + Users Gebruikers @@ -4433,305 +4725,322 @@ Je kan nu al informatie toevoegen over deze video. Default video quota per user Standaard videoquotum per gebruiker - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 - bytesbytes - - - - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html178src/app/+admin/users/user-edit/user-edit.component.html178 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 + + + bytes + bytes + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html178 + src/app/+admin/users/user-edit/user-edit.component.html178 + Default daily upload limit per user Standaard dagelijkse uploadlimiet per gebruiker - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 + Allow import with a torrent file or a magnet URI Importeren met torrent-bestand of magnet-URI toelaten - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + Unless a user is marked as trusted, their videos will stay private until a moderator reviews them. Tenzij een gebruiker als vertrouwd staat aangemerkt blijven zijn video's privé tot een moderator ze heeft beoordeeld. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html263 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html263 + Block new videos automatically Nieuwe video's automatisch blokkeren - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + SEARCH ZOEKEN - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + Allow users to do remote URI/handle search Gebruikers toelaten URI/handle van elders te (door)zoeken - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + Allow your users to look up remote videos/actors that may not be federated with your instance Je gebruikers toestaan om externe video's / gebruikers op te zoeken die mogelijk niet met je exemplaar van PeerTube zijn verbonden - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html291 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html291 + Allow anonymous to do remote URI/handle search Anonieme gebruikers toelaten URI/handle van elders te (door)zoeken - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html299 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html299 + Allow anonymous users to look up remote videos/actors that may not be federated with your instance Je gebruikers toestaan externe video's/gebruikers op te zoeken die mogelijk niet met je exemplaar van PeerTube zijn verbonden - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html302 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html302 + ⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select. ⚠️ Deze functionaliteit is sterk afhankelijk van de geselecteerde zoekindex en de moderatie op exemplaren van PeerTube die die volgt. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html316 - You should only use moderated search indexes in production, or host your own. You should only use moderated search indexes in production, or host your own. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html316 + + + You should only use moderated search indexes in production, or host your own. + You should only use moderated search indexes in production, or host your own. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 + Search index URL URL van zoekindex - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + Disable local search in search bar Lokaal zoeken in zoekbalk uitschakelen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + Otherwise the local search stays used by default Anders blijf je standaard lokaal zoeken gebruiken - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + Search bar uses the global search index by default Zoekbalk gebruikt standaard de globale zoekindex - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + Enable global search Globaal zoeken inschakelen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + FEDERATION FEDERATIE - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 - Manage relations with other instances. Manage relations with other instances. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 + + + Manage relations with other instances. + Manage relations with other instances. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 + Other instances can follow yours Andere exemplaren van PeerTube kunnen het jouwe volgen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + Manually approve new instance followers Manueel nieuwe volgers van je exemplaar van PeerTube goedkeuren - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + Automatically follow back instances Automatisch exemplaren van PeerTube die jou volgen terugvolgen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 + ⚠️ This functionality requires a lot of attention and extra moderation. ⚠️ Deze functionaliteit vereist veel aandacht en extra moderatie. - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + Index URL Index URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + Automatically follow instances of a public index Automatisch de exemplaren van PeerTube van een publieke index volgen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 - See the documentation for more information about the expected URL See the documentation for more information about the expected URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 + + + See the documentation for more information about the expected URL + See the documentation for more information about the expected URL + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + ADMINISTRATORS BEHEERDERS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + Administrator Administrator - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email E-mail van administrator - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + Enable contact form Schakel contactformulier in - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 + VOD Transcoding VOD Transcoding - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html33 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html33 + TWITTER TWITTER - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 - Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + + + Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. + Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 + Your Twitter username Je Twitter-gebruikersnaam - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + Instance allowed by Twitter Exemplaar van PeerTube toegelaten door Twitter - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 - If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 - - - - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 + + + If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. + If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 + LIVE LIVE - - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html5src/app/shared/shared-thumbnail/video-thumbnail.component.html31 - Enable users of your instance to stream live. Enable users of your instance to stream live. + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html5 + src/app/shared/shared-thumbnail/video-thumbnail.component.html31 + + + Enable users of your instance to stream live. + Enable users of your instance to stream live. src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 7,8 - ⚠️ Enabling live streaming requires trust in your users and extra moderation work⚠️ Enabling live streaming requires trust in your users and extra moderation work - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html22 - If enabled, your server needs to accept incoming TCP traffic on port If enabled, your server needs to accept incoming TCP traffic on port + ⚠️ Enabling live streaming requires trust in your users and extra moderation work + ⚠️ Enabling live streaming requires trust in your users and extra moderation work + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html22 + + + If enabled, your server needs to accept incoming TCP traffic on port + If enabled, your server needs to accept incoming TCP traffic on port src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 23 - Allow your users to automatically publish a replay of their live Je gebruikers in staat stellen automatisch een heruitzending van hun live-uitzending te publiceren - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html31 - If the user quota is reached, PeerTube will automatically terminate the live streaming If the user quota is reached, PeerTube will automatically terminate the live streaming + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html31 + + + If the user quota is reached, PeerTube will automatically terminate the live streaming + If the user quota is reached, PeerTube will automatically terminate the live streaming src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 34,35 - - Max simultaneous lives created on your instance (-1 for "unlimited") Max simultaneous lives created on your instance (-1 for "unlimited") + + + Max simultaneous lives created on your instance (-1 for "unlimited") + Max simultaneous lives created on your instance (-1 for "unlimited") src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 41 - - {VAR_PLURAL, plural, =1 {live} other {lives}} {VAR_PLURAL, plural, =1 {live-uitzending} other {live-uitzendingen}} - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html46src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 - Max simultaneous lives created per user (-1 for "unlimited") Max simultaneous lives created per user (-1 for "unlimited") + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html46 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 + + + Max simultaneous lives created per user (-1 for "unlimited") + Max simultaneous lives created per user (-1 for "unlimited") src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 54 - {VAR_PLURAL, plural, =1 {live} other {lives}} {VAR_PLURAL, plural, =1 {live-uitzending} other {live-uitzendingen}} - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 + Max live duration Maximale duur live-uitzending - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html66 - + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html66 + Live transcoding threads Threads voor live transcoderen - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html128 - will claim at most with VOD transcoding will claim at most with VOD transcoding + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html128 + + + will claim at most with VOD transcoding + will claim at most with VOD transcoding src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 131,133 - - will claim at least with VOD transcoding will claim at least with VOD transcoding + + + will claim at least with VOD transcoding + will claim at least with VOD transcoding src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 135,137 - - Live transcoding profileLive transcoding profile - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html150 - new live transcoding profiles can be added by PeerTube pluginsnew live transcoding profiles can be added by PeerTube plugins - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html151 + + + Live transcoding profile + Live transcoding profile + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html150 + + + new live transcoding profiles can be added by PeerTube plugins + new live transcoding profiles can be added by PeerTube plugins + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html151 + Live resolutions to generate Te genereren live-resoluties - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html107 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html107 + Allow live streaming Live uitzenden toelaten - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html18 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html18 + Transcoding enabled for live streams Transcoding enabled for live streams - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html101 - - - + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html101 + Live streaming Live uitzenden - - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html42src/app/shared/shared-instance/instance-features-table.component.html67 - AdvancedAdvanced + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html42 + src/app/shared/shared-instance/instance-features-table.component.html67 + + + Advanced + Advanced src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 51 @@ -4740,68 +5049,68 @@ Je kan nu al informatie toevoegen over deze video. TRANSCODING TRANSCODEREN - - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html85src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html26 - Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html85 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html26 + + + Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. + Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 87,88 - Input formats Input formats - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html46 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html46 + Transcoding enabled Transcoding ingeschakeld - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html40 - - - - + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html40 + Allow additional extensions Sta extra bestandsextensies toe - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html51 - Allows users to upload videos.Allows users to upload videos. + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html51 + + + Allows users to upload videos. + Allows users to upload videos. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 54 - Allow audio files upload Audiobestanden uploaden toestaan - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html62 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html62 + Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files. Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files. - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html65 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html65 + The file will be merged in a still image video with the preview file on upload. The file will be merged in a still image video with the preview file on upload. - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html66 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html66 + Output formats Output formats - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html73 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html73 + WebTorrent enabled WebTorrent enabled - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html79 - If you also enabled HLS support, it will multiply videos storage by 2If you also enabled HLS support, it will multiply videos storage by 2 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html79 + + + If you also enabled HLS support, it will multiply videos storage by 2 + If you also enabled HLS support, it will multiply videos storage by 2 src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 83 @@ -4810,11 +5119,11 @@ Je kan nu al informatie toevoegen over deze video. HLS with P2P support enabled HLS met P2P-ondersteuning ingeschakeld - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html94 - Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html94 + + + Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2 + Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2 src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 99,108 @@ -4823,9 +5132,11 @@ Je kan nu al informatie toevoegen over deze video. Resolutions to generate per enabled format Resolutions to generate per enabled format - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html116 - The original file resolution will be the default target if no option is selected. The original file resolution will be the default target if no option is selected. + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html116 + + + The original file resolution will be the default target if no option is selected. + The original file resolution will be the default target if no option is selected. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 132,133 @@ -4834,149 +5145,157 @@ Je kan nu al informatie toevoegen over deze video. Transcoding threads Threads gebruikt voor transcoding - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html144 - will claim at most with live transcoding will claim at most with live transcoding + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html144 + + + will claim at most with live transcoding + will claim at most with live transcoding src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 146,148 - - will claim at least with live transcoding will claim at least with live transcoding + + + will claim at least with live transcoding + will claim at least with live transcoding src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 150,152 - - Transcoding jobs concurrencyTranscoding jobs concurrency + + + Transcoding jobs concurrency + Transcoding jobs concurrency src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 166 - - allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restartallows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart + + + allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart + allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 167 - - Transcoding profileTranscoding profile - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html178 - new transcoding profiles can be added by PeerTube pluginsnew transcoding profiles can be added by PeerTube plugins - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html179 + + + Transcoding profile + Transcoding profile + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html178 + + + new transcoding profiles can be added by PeerTube plugins + new transcoding profiles can be added by PeerTube plugins + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html179 + CACHE CACHE - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html5 - Some files are not federated, and fetched when necessary. Define their caching policies. Some files are not federated, and fetched when necessary. Define their caching policies. + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html5 + + + Some files are not federated, and fetched when necessary. Define their caching policies. + Some files are not federated, and fetched when necessary. Define their caching policies. src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 7,8 - Number of previews to keep in cache Aantal in cache te houden voorvertoningen - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html15 - {VAR_PLURAL, plural, =1 {cached image} other {cached images}}{VAR_PLURAL, plural, =1 {cached image} other {cached images}} + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html15 + + + {VAR_PLURAL, plural, =1 {cached image} other {cached images}} + {VAR_PLURAL, plural, =1 {cached image} other {cached images}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 22 - Number of video captions to keep in cache Aantal in cache te houden video-onderschriften - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html29 - {VAR_PLURAL, plural, =1 {cached caption} other {cached captions}}{VAR_PLURAL, plural, =1 {cached caption} other {cached captions}} + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html29 + + + {VAR_PLURAL, plural, =1 {cached caption} other {cached captions}} + {VAR_PLURAL, plural, =1 {cached caption} other {cached captions}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 36 - - Number of video torrents to keep in cacheNumber of video torrents to keep in cache + + + Number of video torrents to keep in cache + Number of video torrents to keep in cache src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 43 - - {VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}}{VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}} + + + {VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}} + {VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 50 - CUSTOMIZATIONS AANPASSINGEN - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html63 - Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html65 - + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html63 + + + Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. + Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html65 + JavaScript JavaScript - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html74 - Write JavaScript code directly.Example: console.log('my instance is amazing'); Write JavaScript code directly.Example: console.log('my instance is amazing'); - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html78 - Write CSS code directly. Example:#custom-css + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html74 + + + Write JavaScript code directly.Example: console.log('my instance is amazing'); + Write JavaScript code directly.Example: console.log('my instance is amazing'); + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html78 + + + Write CSS code directly. Example:#custom-css color: red; - - Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email + + Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email color: red; - - Write CSS code directly. Example:#custom-css + + + Write CSS code directly. Example:#custom-css color: red; - - Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email + + Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email color: red; - + - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html97 - - - + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html97 + You cannot allow live replay if you don't enable transcoding. Je kan geen heruitzendingen van live-uitzendingen toelaten zonder transcoderen in te schakelen. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html77 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html77 + - There are errors in the form: There are errors in the form: - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html67 + There are errors in the form: + There are errors in the form: + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html67 + Update configuration Bijwerkingsconfiguratie - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80 + VIDEO SETTINGS VIDEO-INSTELLINGEN @@ -5005,144 +5324,176 @@ color: red; DANGER ZONE GEVARENZONE - - - - src/app/+admin/users/user-edit/user-edit.component.html219src/app/+admin/users/user-edit/user-edit.component.html219src/app/+my-account/my-account-settings/my-account-settings.component.html77 + src/app/+admin/users/user-edit/user-edit.component.html219 + src/app/+admin/users/user-edit/user-edit.component.html219 + src/app/+my-account/my-account-settings/my-account-settings.component.html77 + Profile Profiel - - src/app/shared/shared-video-miniature/video-download.component.ts238 + src/app/shared/shared-video-miniature/video-download.component.ts238 + Resolution Resolutie - - src/app/shared/shared-video-miniature/video-download.component.ts247 + src/app/shared/shared-video-miniature/video-download.component.ts247 + Aspect ratio Beeldverhouding - - src/app/shared/shared-video-miniature/video-download.component.ts248 + src/app/shared/shared-video-miniature/video-download.component.ts248 + Average frame rate Gemiddelde frame rate - - src/app/shared/shared-video-miniature/video-download.component.ts249 + src/app/shared/shared-video-miniature/video-download.component.ts249 + Pixel format Pixelformaat - - src/app/shared/shared-video-miniature/video-download.component.ts250 + src/app/shared/shared-video-miniature/video-download.component.ts250 + Sample rate Sample rate - - src/app/shared/shared-video-miniature/video-download.component.ts254 + src/app/shared/shared-video-miniature/video-download.component.ts254 + Channel Layout Kanaalopmaak - - src/app/shared/shared-video-miniature/video-download.component.ts255 - Update your settings Update your settings + src/app/shared/shared-video-miniature/video-download.component.ts255 + + + Update your settings + Update your settings src/app/shared/shared-video-miniature/video-filters-header.component.html 3,7 - - More filtersMore filters + + + More filters + More filters src/app/shared/shared-video-miniature/video-filters-header.component.html 20 - - Less filtersLess filters + + + Less filters + Less filters src/app/shared/shared-video-miniature/video-filters-header.component.html 21 - - Sort by "Recently Added"Sort by "Recently Added" + + + Sort by "Recently Added" + Sort by "Recently Added" src/app/shared/shared-video-miniature/video-filters-header.component.html 46 - - Sort by "Views"Sort by "Views" + + + Sort by "Views" + Sort by "Views" src/app/shared/shared-video-miniature/video-filters-header.component.html 48 - - Sort by "Hot"Sort by "Hot" + + + Sort by "Hot" + Sort by "Hot" src/app/shared/shared-video-miniature/video-filters-header.component.html 49 - - Sort by "Best"Sort by "Best" + + + Sort by "Best" + Sort by "Best" src/app/shared/shared-video-miniature/video-filters-header.component.html 50 - - Sort by "Likes"Sort by "Likes" + + + Sort by "Likes" + Sort by "Likes" src/app/shared/shared-video-miniature/video-filters-header.component.html 51 - - Languages:Languages: + + + Languages: + Languages: src/app/shared/shared-video-miniature/video-filters-header.component.html 59 - - Sensitive content:Sensitive content: + + + Sensitive content: + Sensitive content: src/app/shared/shared-video-miniature/video-filters-header.component.html 66 - - Scope:Scope: + + + Scope: + Scope: src/app/shared/shared-video-miniature/video-filters-header.component.html 81 - - Local videos (this instance)Local videos (this instance) + + + Local videos (this instance) + Local videos (this instance) src/app/shared/shared-video-miniature/video-filters-header.component.html 85 - - Federated videos (this instance + followed instances)Federated videos (this instance + followed instances) + + + Federated videos (this instance + followed instances) + Federated videos (this instance + followed instances) src/app/shared/shared-video-miniature/video-filters-header.component.html 90 - - Type:Type: + + + Type: + Type: src/app/shared/shared-video-miniature/video-filters-header.component.html 95 - - VOD & Live videosVOD & Live videos + + + VOD & Live videos + VOD & Live videos src/app/shared/shared-video-miniature/video-filters-header.component.html 99 - - Categories:Categories: + + + Categories: + Categories: src/app/shared/shared-video-miniature/video-filters-header.component.html 114 - - Moderation:Moderation: + + + Moderation: + Moderation: src/app/shared/shared-video-miniature/video-filters-header.component.html 120 @@ -5167,9 +5518,9 @@ color: red; Current password Huidige wachtwoord - - - src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html8src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html28 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html8 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html28 + New password Nieuw wachtwoord @@ -5184,20 +5535,21 @@ color: red; Default policy on videos containing sensitive content Standaardbeleid voor video's met gevoelige inhoud src/app/shared/shared-user-settings/user-video-settings.component.html4 - - With Hide or Blur thumbnails, a confirmation will be requested to watch the video. With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + + + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. src/app/shared/shared-user-settings/user-video-settings.component.html 8,9 - Policy for sensitive videos Beleid rond gevoelige video's - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html118src/app/shared/shared-user-settings/user-video-settings.component.html15 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html118 + src/app/shared/shared-user-settings/user-video-settings.component.html15 + Only display videos in the following languages/subtitles Enkel video's weergeven in de volgende talen/ondertitels @@ -5211,10 +5563,9 @@ color: red; Add a new language Een nieuwe taal toevoegen - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71src/app/shared/shared-forms/select/select-languages.component.html6 - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71 + src/app/shared/shared-forms/select/select-languages.component.html6 + is awaiting email verification @@ -5223,24 +5574,24 @@ color: red; wacht op e-mailverificatie - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html10 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html10 + New email Nieuwe e-mail - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html17 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html17 + Change email Verander e-mail - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html36 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html36 + Theme Thema - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html14src/app/shared/shared-user-settings/user-interface-settings.component.html4 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html14 + src/app/shared/shared-user-settings/user-interface-settings.component.html4 + instance default standaard voor exemplaar van PeerTube @@ -5254,29 +5605,39 @@ color: red; Change ownership Verander eigenaar - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts180 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts180 + Select the next owner Selecteer de volgende eigenaar src/app/+my-library/my-videos/modals/video-change-ownership.component.html10 - Last published firstLast published first - - src/app/+my-library/my-videos/my-videos.component.html27 - Last created firstLast created first - - src/app/+my-library/my-videos/my-videos.component.html28 - Most viewed firstMost viewed first - - src/app/+my-library/my-videos/my-videos.component.html29 - Most liked firstMost liked first - - src/app/+my-library/my-videos/my-videos.component.html30 - Longest firstLongest first - - src/app/+my-library/my-videos/my-videos.component.html31 + Last published first + Last published first + src/app/+my-library/my-videos/my-videos.component.html27 + + + Last created first + Last created first + src/app/+my-library/my-videos/my-videos.component.html28 + + + Most viewed first + Most viewed first + src/app/+my-library/my-videos/my-videos.component.html29 + + + Most liked first + Most liked first + src/app/+my-library/my-videos/my-videos.component.html30 + + + Longest first + Longest first + src/app/+my-library/my-videos/my-videos.component.html31 + Accept ownership Accepteer eigenaar @@ -5287,7 +5648,6 @@ color: red; Een kanaal selecteren om de video te ontvangen src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html10 - My ownership changes Mijn wijzigingen van eigenaar @@ -5311,29 +5671,29 @@ color: red; Account page Accountpagina - - - src/app/+videos/+video-watch/video-watch.component.html70src/app/+videos/+video-watch/video-watch.component.html76 + src/app/+videos/+video-watch/video-watch.component.html70 + src/app/+videos/+video-watch/video-watch.component.html76 + - - src/app/+videos/+video-watch/video-watch.component.html196 + src/app/+videos/+video-watch/video-watch.component.html196 + No ownership change request found. Geen verzoek tot wijziging van eigenaar gevonden. - - src/app/+my-library/my-ownership/my-ownership.component.html78 + src/app/+my-library/my-ownership/my-ownership.component.html78 + Account settings Account-instellingen - - src/app/+my-account/my-account-routing.module.ts28 + src/app/+my-account/my-account-routing.module.ts28 + Playlist elements Elementen afspeellijst - - src/app/+my-library/my-library-routing.module.ts57 + src/app/+my-library/my-library-routing.module.ts57 + My imports Mijn imports @@ -5343,31 +5703,35 @@ color: red; Create video channel Videokanaal aanmaken - - src/app/+my-library/+my-video-channels/my-video-channels.component.html14 - No channel found.No channel found. - - src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + src/app/+my-library/+my-video-channels/my-video-channels.component.html14 + + + No channel found. + No channel found. + src/app/+my-library/+my-video-channels/my-video-channels.component.html18 + subscribers abonnees - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 + Example: my_channel Voorbeeld: mijn_kanaal - - - src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html47src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html47 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html47 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html47 + CHANNEL KANAAL src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26 src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26 - - Banner image of your channelBanner image of your channel + + + Banner image of your channel + Banner image of your channel src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html 30 @@ -5381,26 +5745,28 @@ color: red; Short text to tell people how they can support your channel (membership platform...).<br /><br /> When you will upload a video in this channel, the video support field will be automatically filled by this text. Korte tekst om mensen te vertellen hoe ze je kanaal kunnen ondersteunen (ledenplatform...).<br /><br /> Wanneer je een video uploadt in dit kanaal komt deze tekst automatisch in het video-ondersteuningsveld terecht. - - - src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html84src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html84 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html84 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html84 + Overwrite support field of all videos of this channel Overschrijf support invoerveld van alle video's van dit kanaal - - - src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html99src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html99 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html99 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html99 + subscribers abonnees - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 - Upload a new avatarUpload a new avatar - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html9src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html34 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + + + Upload a new avatar + Upload a new avatar + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html9 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html34 + Target Doelwit @@ -5409,9 +5775,8 @@ color: red; See the error De fout bekijken - - - src/app/+my-library/my-video-imports/my-video-imports.component.html26 + src/app/+my-library/my-video-imports/my-video-imports.component.html26 + This video was deleted Deze video is verwijderd @@ -5430,37 +5795,36 @@ color: red; Delete your account Je account verwijderen - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 - + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26 + Channel page Kanaalpagina - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html25src/app/+my-library/my-subscriptions/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+my-library/+my-video-channels/my-video-channels.component.html25 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html67 + Created by Aangemaakt door - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html28 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html28 + Owner account page Accountpagina eigenaar - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html27 - - + src/app/+my-library/my-subscriptions/my-subscriptions.component.html27 + Delete history Geschiedenis verwijderen - - src/app/+my-library/my-history/my-history.component.html17 - You don't have any video in your watch history yet.You don't have any video in your watch history yet. - - src/app/+my-library/my-history/my-history.component.html29 - + src/app/+my-library/my-history/my-history.component.html17 + + + You don't have any video in your watch history yet. + You don't have any video in your watch history yet. + src/app/+my-library/my-history/my-history.component.html29 + Open syndication dropdown Open syndication dropdown @@ -5472,14 +5836,18 @@ color: red; src/app/shared/shared-main/feeds/feed.component.html 3 - - Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description.Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + + + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. src/app/shared/shared-main/misc/channels-setup-message.component.html 5 - - Set up my channelsSet up my channels + + + Set up my channels + Set up my channels src/app/shared/shared-main/misc/channels-setup-message.component.html 6 @@ -5541,8 +5909,8 @@ color: red; Create playlist Afspeellijst maken - - src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html13 + My video channels Mijn videokanalen @@ -5556,15 +5924,14 @@ color: red; Playlist } deleted. Afspeellijst } verwijderd. - - src/app/+my-library/my-video-playlists/my-video-playlists.component.ts45 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts45 + Playlist thumbnail Afspeellijst thumbnail src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html82 src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html82 - No videos in this playlist. Geen video's in deze afspeellijst. @@ -5589,20 +5956,26 @@ color: red; If you need help to use PeerTube, you can have a look at the documentation. Als je help nodig hebt bij het gebruik van PeerTube, dan kan je de documentatie bekijken. src/app/+signup/shared/signup-success.component.html14 - - To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + + + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. src/app/+signup/shared/signup-success.component.html 18,19 - - Created Created + + + Created + Created src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html 3,4 - - {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}}{VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} + + + {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} + {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html 3 @@ -5629,20 +6002,21 @@ Verifieer e-mailbevestiging van account Video channel videos Video's in dit videokanaal - - src/app/+video-channels/video-channels-routing.module.ts22 + src/app/+video-channels/video-channels-routing.module.ts22 + Video channel playlists Afspeellijsten in dit videokanaal - - src/app/+video-channels/video-channels-routing.module.ts35 - Manage channel Manage channel + src/app/+video-channels/video-channels-routing.module.ts35 + + + Manage channel + Manage channel src/app/+video-channels/video-channels.component.html 10,11 - Request email for account verification @@ -5662,106 +6036,135 @@ Vraag e-mail voor accountverificatie aan Verify account via email Verifieer account via e-mail - - src/app/+signup/+verify-account/verify-account-routing.module.ts15 + src/app/+signup/+verify-account/verify-account-routing.module.ts15 + Ask to send an email to verify you account Vraag om een e-mail te sturen om uw account te verifiëren - - src/app/+signup/+verify-account/verify-account-routing.module.ts24 + src/app/+signup/+verify-account/verify-account-routing.module.ts24 + Banned Verbannen - - src/app/+accounts/accounts.component.html21 + src/app/+accounts/accounts.component.html21 + Instance muted Exemplaar van PeerTube gedempt - - src/app/+accounts/accounts.component.html23 + src/app/+accounts/accounts.component.html23 + Muted by your instance Gedempt door jouw exemplaar van PeerTube - - src/app/+accounts/accounts.component.html24 + src/app/+accounts/accounts.component.html24 + Instance muted by your instance Exemplaar gedempt door jouw exemplaar van PeerTube - - src/app/+accounts/accounts.component.html25 - Copy account handleCopy account handle + src/app/+accounts/accounts.component.html25 + + + Copy account handle + Copy account handle src/app/+accounts/accounts.component.html 31 - - {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}}{VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html30src/app/+video-channels/video-channels.component.html73src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 - {VAR_PLURAL, plural, =1 {1 videos} other { videos}}{VAR_PLURAL, plural, =1 {1 videos} other { videos}} + + + {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} + {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + src/app/+video-channels/video-channels.component.html73 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + + + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} src/app/+accounts/accounts.component.html 41 - - + + + + src/app/+accounts/accounts.component.html 41,42 - - Show the complete descriptionShow the complete description - - - src/app/+accounts/accounts.component.html55src/app/+video-channels/video-channels.component.html94 - Show more... Show more... - - - src/app/+accounts/accounts.component.html57src/app/+video-channels/video-channels.component.html96 - Manage account Manage account - - src/app/+accounts/accounts.component.html62 - Search account videosSearch account videos - - src/app/+accounts/accounts.component.html80 - CHANNELSCHANNELS - - src/app/+accounts/accounts.component.ts81 - + + + Show the complete description + Show the complete description + src/app/+accounts/accounts.component.html55 + src/app/+video-channels/video-channels.component.html94 + + + Show more... + Show more... + src/app/+accounts/accounts.component.html57 + src/app/+video-channels/video-channels.component.html96 + + + Manage account + Manage account + src/app/+accounts/accounts.component.html62 + + + Search account videos + Search account videos + src/app/+accounts/accounts.component.html80 + + + CHANNELS + CHANNELS + src/app/+accounts/accounts.component.ts81 + This account does not have channels. Dit account heeft geen kanalen. - - src/app/+accounts/account-video-channels/account-video-channels.component.html5 + src/app/+accounts/account-video-channels/account-video-channels.component.html5 + {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} {VAR_PLURAL, plural, =1 {1 abonnee} other { abonnees} } - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+my-library/+my-video-channels/my-video-channels.component.html28src/app/+video-channels/video-channels.component.html73 - {VAR_PLURAL, plural, =1 {1 videos} other { videos}}{VAR_PLURAL, plural, =1 {1 videos} other { videos}} - - src/app/+accounts/account-video-channels/account-video-channels.component.html26 - - - src/app/+accounts/account-video-channels/account-video-channels.component.html26 - Show this channelShow this channel - - src/app/+accounts/account-video-channels/account-video-channels.component.html35 + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+my-library/+my-video-channels/my-video-channels.component.html28 + src/app/+video-channels/video-channels.component.html73 + + + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + + + + + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + + + Show this channel + Show this channel + src/app/+accounts/account-video-channels/account-video-channels.component.html35 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { video\'s} } - - src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + Do you really want to delete ? It will delete videos uploaded in this channel, and you will not be able to create another channel with the same name ()! Wil je echt verwijderen? Dat verwijdert video's die in dit kanaal geüpload zijn. Je kan ook geen nieuw kanaal meer maken met dezelfde naam. ()! - - src/app/+my-library/+my-video-channels/my-video-channels.component.ts44 - Please type the name of the video channel () to confirmPlease type the name of the video channel () to confirm + src/app/+my-library/+my-video-channels/my-video-channels.component.ts44 + + + Please type the name of the video channel () to confirm + Please type the name of the video channel () to confirm src/app/+my-library/+my-video-channels/my-video-channels.component.ts 48 @@ -5782,32 +6185,26 @@ channel with the same name ()! See this video channel Dit videokanaal bekijken - - src/app/+accounts/account-video-channels/account-video-channels.component.html13src/app/+accounts/account-video-channels/account-video-channels.component.html17src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + src/app/+accounts/account-video-channels/account-video-channels.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html17 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + This channel doesn't have any videos. - Er zijn geen video's in dit kanaal. - - src/app/+accounts/account-video-channels/account-video-channels.component.html38 - SHOW THIS CHANNEL >SHOW THIS CHANNEL > - - src/app/+accounts/account-video-channels/account-video-channels.component.html46 - - - + Er zijn geen video's in dit kanaal. + src/app/+accounts/account-video-channels/account-video-channels.component.html38 + + + SHOW THIS CHANNEL > + SHOW THIS CHANNEL > + src/app/+accounts/account-video-channels/account-video-channels.component.html46 + Stats Statistieken - - src/app/menu/menu.component.html139 - - - - - - - - + src/app/menu/menu.component.html139 + This channel does not have playlists. Dit kanaal heeft geen afspeellijsten. @@ -5827,22 +6224,23 @@ channel with the same name ()!Follows Volgers src/app/+about/about-follows/about-follows.component.html2 - - Follower instances ()Follower instances () + + + Follower instances () + Follower instances () src/app/+about/about-follows/about-follows.component.html 4 - Following instances ()Following instances () + Following instances () + Following instances () src/app/+about/about-follows/about-follows.component.html 16 - - Your name Jouw naam @@ -5867,8 +6265,10 @@ channel with the same name ()!About Over src/app/+about/about-instance/about-instance.component.html5 - - Contact usContact us + + + Contact us + Contact us src/app/+about/about-instance/about-instance.component.html 7 @@ -5878,7 +6278,6 @@ channel with the same name ()!3 - This instance is dedicated to sensitive/NSFW content. Dit exemplaar van PeerTube is gewijd aan gevoelige/niet voor een werkomgeving geschikte inhoud. @@ -5903,14 +6302,15 @@ channel with the same name ()!How long we plan to maintain this instance Hoe lang we dit exemplaar van PeerTube plannen te onderhouden src/app/+about/about-instance/about-instance.component.html72 - - How we will pay for keeping our instance runningHow we will pay for keeping our instance running + + + How we will pay for keeping our instance running + How we will pay for keeping our instance running src/app/+about/about-instance/about-instance.component.html 86 - INFORMATION INFORMATIE @@ -6007,8 +6407,10 @@ channel with the same name ()!PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube. PeerTube gebruikt standaard het BitTorrent-protocol om bandbreedte te delen tussen gebruikers. Zo vermindert de druk op de server. Je hebt wel de keuze om but terug te schakelen naar normaal video aanbieden enkel vanaf de server. Het volgende is enkel van toepasinng als je de P2P-modus van PeerTube wil blijven gebruiken. src/app/+about/about-peertube/about-peertube.component.html75 - - The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. + + + The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. + The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. src/app/+about/about-peertube/about-peertube.component.html 81,83 @@ -6048,69 +6450,70 @@ channel with the same name ()!The IP address is a vague information: usually, it regularly changes and can represent many persons or entities Het ip-adres is vage informatie: gewoonlijk verandert het regelmatig en kan het meerdere mensen of entiteiten vertegenwoordigen src/app/+about/about-peertube/about-peertube.component.html114 - - Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See this document for more information Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See this document for more information + + + Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See this document for more information + Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See this document for more information src/app/+about/about-peertube/about-peertube.component.html 118,122 - The worst-case scenario of an average person spying on their friends is quite unlikely. There are much more effective ways to get that kind of information. Het nachtmerriescenario van iemand die zijn vrienden bespioneert is eerder onwaarschijnlijk. Er zijn veel efficiëntere manieren om dat soort informatie te verkrijgen. - - src/app/+about/about-peertube/about-peertube.component.html126 + src/app/+about/about-peertube/about-peertube.component.html126 + How does PeerTube compare with YouTube? Hoe is PeerTube vergeleken met YouTube? - - src/app/+about/about-peertube/about-peertube.component.html130 + src/app/+about/about-peertube/about-peertube.component.html130 + The threats to privacy with YouTube are different from PeerTube's. In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). De gevaren voor je privacy liggen anders bij YouTube dan bij PeerTube. YouTube verzamelt een grote hoeveelheid persoonlijke informatie over jou - niet enkel je ip-adres- , analyseert deze en volgt je. Daarenboven is YouTube eigendom van Google/Alphabet, een bedrijf dat je op vele websites volgt via AdSense of Google Analytics. - - src/app/+about/about-peertube/about-peertube.component.html133 + src/app/+about/about-peertube/about-peertube.component.html133 + What can I do to limit the exposure of my IP address? Wat kan ik doen om de blootstelling van mijn IP adress te verminderen? - - src/app/+about/about-peertube/about-peertube.component.html138 + src/app/+about/about-peertube/about-peertube.component.html138 + Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. Je ip-adres is publiek, dus telkens je een website bezoekt zien een aantal actoren (naast de bezochte website) je ip-adres in hun verbindingslogboeken: internetproviders/routers/trackers/CDN's enzovoort. PeerTube is er open in: we waarschuwen je dat je een VPN of de Tor-browser moet gebruiken als je je ip-adres wil afschermen. Het is zinloos te denken dat p2p uit PeerTube verwijderen je anonimiteit zal teruggeven. - - src/app/+about/about-peertube/about-peertube.component.html141 + src/app/+about/about-peertube/about-peertube.component.html141 + What will be done to mitigate this problem? Wat zal worden gedaan om dit probleem te verminderen? - - src/app/+about/about-peertube/about-peertube.component.html147 + src/app/+about/about-peertube/about-peertube.component.html147 + PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far: PeerTube wil de best mogelijke tegenmaatregelen nemen. Dat geeft je meer keuze en maakt aanvallen minder waarschijnlijk. Dit hebben we tot nu toe gebouwd: - - src/app/+about/about-peertube/about-peertube.component.html150 + src/app/+about/about-peertube/about-peertube.component.html150 + We set a limit to the number of peers sent by the tracker We stellen een limiet in op het aantal peers, veerstuurd door de tracker - - src/app/+about/about-peertube/about-peertube.component.html155 + src/app/+about/about-peertube/about-peertube.component.html155 + We set a limit on the request frequency received by the tracker We stellen een limiet in op de aanvraagfrequentie zoals ontvangen door de tracker - - src/app/+about/about-peertube/about-peertube.component.html156 + src/app/+about/about-peertube/about-peertube.component.html156 + Allow instance admins to disable P2P from the administration interface Beheerders van exemplaren van PeerTube toelaten P2P uit te schakelen uit de beheersinterface - - src/app/+about/about-peertube/about-peertube.component.html157 + src/app/+about/about-peertube/about-peertube.component.html157 + Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser. Wees je ervan bewust dat je uiteindelijk steeds P2P kan uitschakelen in de videospeler of door WebRTC uit te schakelen in je browser. - - src/app/+about/about-peertube/about-peertube.component.html161 + src/app/+about/about-peertube/about-peertube.component.html161 + This instance does not have instances followers. Geen enkel exemplaar van PeerTube volgt dit exemplaar. @@ -6136,24 +6539,26 @@ channel with the same name ()! About this instance Over dit exemplaar van PeerTube - - src/app/+about/about-routing.module.ts24 + src/app/+about/about-routing.module.ts24 + About PeerTube Over PeerTube - - src/app/+about/about-routing.module.ts49 + src/app/+about/about-routing.module.ts49 + About this instance's network Over het netwerk van dit exemplaar van PeerTube - - src/app/+about/about-routing.module.ts58 + src/app/+about/about-routing.module.ts58 + Link copied Verwijzing gekopieerd - - src/app/+about/about-instance/about-instance.component.ts98 - Contact the administrator(s)Contact the administrator(s) + src/app/+about/about-instance/about-instance.component.ts98 + + + Contact the administrator(s) + Contact the administrator(s) src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -6180,18 +6585,18 @@ Account aanmaken Maak mijn account - - src/app/+signup/+register/register.component.html39 + src/app/+signup/+register/register.component.html39 + PeerTube is creating your account... PeerTube maakt uw account aan ... - - src/app/+signup/+register/register.component.html47 + src/app/+signup/+register/register.component.html47 + Done Klaar - - src/app/+signup/+register/register.component.html43 + src/app/+signup/+register/register.component.html43 + Who are we? Wie zijn wij? @@ -6260,8 +6665,10 @@ Account aanmaken Channel name cannot be the same as your account name. You can click on the first step to update your account name. De kanaalnaam mag niet hetzelfde zijn als uw accountnaam. U kunt op de eerste stap klikken om uw accountnaam bij te werken. src/app/+signup/+register/register-step-channel.component.html51 - - I am at least years old and agree to the Terms and to the Code of Conduct of this instance I am at least years old and agree to the Terms and to the Code of Conduct of this instance + + + I am at least years old and agree to the Terms and to the Code of Conduct of this instance + I am at least years old and agree to the Terms and to the Code of Conduct of this instance src/app/+signup/+register/register-step-terms.component.html 5,10 @@ -6280,29 +6687,29 @@ Account aanmaken 4,5 - Register Registreren - - src/app/+signup/+register/register-routing.module.ts13 + src/app/+signup/+register/register-routing.module.ts13 + Your message has been sent. Jouw bericht is verstuurd. - - src/app/+about/about-instance/contact-admin-modal.component.ts88 + src/app/+about/about-instance/contact-admin-modal.component.ts88 + You already sent this form recently U hebt dit formulier onlangs al verzonden - - src/app/+about/about-instance/contact-admin-modal.component.ts94 - + src/app/+about/about-instance/contact-admin-modal.component.ts94 + Account videos Video's account - - src/app/+accounts/accounts-routing.module.ts35 - ACCOUNTACCOUNT + src/app/+accounts/accounts-routing.module.ts35 + + + ACCOUNT + ACCOUNT src/app/+accounts/accounts.component.html 8 @@ -6311,139 +6718,153 @@ Account aanmaken Account video channels Videokanalen account - - src/app/+accounts/accounts-routing.module.ts26 - - + src/app/+accounts/accounts-routing.module.ts26 + Display all videos (private, unlisted or not yet published) Alle video's weergeven (privé, onvermeld of nog niet gepublicerd) - - - - - - - - src/app/shared/shared-video-miniature/video-filters-header.component.html125 - Remove this filterRemove this filter - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 - Sensitive contentSensitive content - - src/app/shared/shared-video-miniature/video-filters.model.ts115 - ScopeScope - - src/app/shared/shared-video-miniature/video-filters.model.ts122 - FederatedFederated - - src/app/shared/shared-video-miniature/video-filters.model.ts124 - LanguagesLanguages - - src/app/shared/shared-video-miniature/video-filters.model.ts132 - CategoriesCategories - - src/app/shared/shared-video-miniature/video-filters.model.ts141 - All videosAll videos - - src/app/shared/shared-video-miniature/video-filters.model.ts150 - BlurredBlurred - - src/app/shared/shared-video-miniature/video-filters.model.ts225 - hiddenhidden - - src/app/shared/shared-video-miniature/video-filters.model.ts231 - blurredblurred - - src/app/shared/shared-video-miniature/video-filters.model.ts232 - displayeddisplayed - - src/app/shared/shared-video-miniature/video-filters.model.ts234 + src/app/shared/shared-video-miniature/video-filters-header.component.html125 + + + Remove this filter + Remove this filter + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + + + Sensitive content + Sensitive content + src/app/shared/shared-video-miniature/video-filters.model.ts115 + + + Scope + Scope + src/app/shared/shared-video-miniature/video-filters.model.ts122 + + + Federated + Federated + src/app/shared/shared-video-miniature/video-filters.model.ts124 + + + Languages + Languages + src/app/shared/shared-video-miniature/video-filters.model.ts132 + + + Categories + Categories + src/app/shared/shared-video-miniature/video-filters.model.ts141 + + + All videos + All videos + src/app/shared/shared-video-miniature/video-filters.model.ts150 + + + Blurred + Blurred + src/app/shared/shared-video-miniature/video-filters.model.ts225 + + + hidden + hidden + src/app/shared/shared-video-miniature/video-filters.model.ts231 + + + blurred + blurred + src/app/shared/shared-video-miniature/video-filters.model.ts232 + + + displayed + displayed + src/app/shared/shared-video-miniature/video-filters.model.ts234 + direct account followers directe accountvolgers - - src/app/+accounts/accounts.component.ts152 + src/app/+accounts/accounts.component.ts152 + Report this account Deze account melden - - src/app/+accounts/accounts.component.ts196 - + src/app/+accounts/accounts.component.ts196 + VIDEOS VIDEO'S - - - src/app/+accounts/accounts.component.ts83src/app/+video-channels/video-channels.component.ts76 - + src/app/+accounts/accounts.component.ts83 + src/app/+video-channels/video-channels.component.ts76 + Username copied Gebruikersnaam gekopieerd - - - src/app/+accounts/accounts.component.ts120src/app/+video-channels/video-channels.component.ts103 + src/app/+accounts/accounts.component.ts120 + src/app/+video-channels/video-channels.component.ts103 + 1 subscriber 1 abonnee - - src/app/+accounts/accounts.component.ts124 + src/app/+accounts/accounts.component.ts124 + subscribers abonnees - - src/app/+accounts/accounts.component.ts126 - - + src/app/+accounts/accounts.component.ts126 + Audio-only Enkel audio - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts17 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts17 + A <code>.mp4</code> that keeps the original audio track, with no video Een <code>.mp4</code> die de originele audiotrack behoudt, zonder video - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts18 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts18 + 240p 240p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts22 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts22 + 360p 360p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts26 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts26 + 480p 480p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts30 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts30 + 720p 720p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts34 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts34 + 1080p 1080p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts38 - 1440p1440p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts42 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts38 + + + 1440p + 1440p + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts42 + 2160p 2160p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts46 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts46 + Auto (via ffmpeg) Automatisch (via ffmpeg) - - src/app/+admin/config/shared/config.service.ts50 - Followers of your instanceFollowers of your instance + src/app/+admin/config/shared/config.service.ts50 + + + Followers of your instance + Followers of your instance src/app/+admin/follows/followers-list/followers-list.component.html 3 @@ -6452,51 +6873,61 @@ Account aanmaken No limit Onbeperkt - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts34 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts34 + 1 hour 1 uur - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts35 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts35 + 3 hours 3 uur - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts36 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts36 + 5 hours 5 uur - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts37 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts37 + 10 hours 10 uur - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts38 - x264, targeting maximum device compatibilityx264, targeting maximum device compatibility - - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts55src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.ts50 - Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts38 + + + x264, targeting maximum device compatibility + x264, targeting maximum device compatibility + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts55 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.ts50 + + + Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. + Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 9,10 - - However, you may want to read our guidelines before tweaking the following values. However, you may want to read our guidelines before tweaking the following values. + + + However, you may want to read our guidelines before tweaking the following values. + However, you may want to read our guidelines before tweaking the following values. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 12,13 - - Read guidelines Read guidelines + + + Read guidelines + Read guidelines src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 17,18 - - Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. + + + Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. + Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 28,30 @@ -6505,14 +6936,16 @@ Account aanmaken threads threads - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts86 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts86 + thread thread - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts87 - HomepageHomepage + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts87 + + + Homepage + Homepage src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 7 @@ -6521,14 +6954,18 @@ Account aanmaken src/app/+admin/config/edit-custom-config/edit-homepage.component.html 13 - - InformationInformation + + + Information + Information src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 15 - - BasicBasic + + + Basic + Basic src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 24 @@ -6537,9 +6974,11 @@ Account aanmaken Configuration updated. Configuratie bijgewerkt. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 - INSTANCE HOMEPAGEINSTANCE HOMEPAGE + src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 + + + INSTANCE HOMEPAGE + INSTANCE HOMEPAGE src/app/+admin/config/edit-custom-config/edit-homepage.component.html 7 @@ -6548,8 +6987,8 @@ Account aanmaken You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below. Inschrijven ingeschakeld: we hebben in het onderdeel "Video's" hieronder automatisch het selectievakje "Nieuwe video's automatisch blokkeren" aangevinkt. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts101 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts101 + Edit custom configuration Aangepaste configuratie bewerken @@ -6578,62 +7017,69 @@ Account aanmaken Domain is required. Domein is vereist. - - src/app/shared/form-validators/host-validators.ts92src/app/shared/form-validators/host-validators.ts101 - Hosts entered are invalid.Hosts entered are invalid. + src/app/shared/form-validators/host-validators.ts92 + src/app/shared/form-validators/host-validators.ts101 + + + Hosts entered are invalid. + Hosts entered are invalid. src/app/shared/form-validators/host-validators.ts 93 - - Hosts entered contain duplicates.Hosts entered contain duplicates. + + + Hosts entered contain duplicates. + Hosts entered contain duplicates. src/app/shared/form-validators/host-validators.ts 94 - - Hosts or handles are invalid.Hosts or handles are invalid. + + + Hosts or handles are invalid. + Hosts or handles are invalid. src/app/shared/form-validators/host-validators.ts 102 - - Hosts or handles contain duplicates.Hosts or handles contain duplicates. + + + Hosts or handles contain duplicates. + Hosts or handles contain duplicates. src/app/shared/form-validators/host-validators.ts 103 - - Unlimited Oneindig - - - - - - - src/app/+admin/config/shared/config.service.ts22src/app/+admin/config/shared/config.service.ts36src/app/shared/shared-instance/instance-features-table.component.ts30src/app/shared/shared-instance/instance-features-table.component.ts37src/app/shared/shared-main/users/user-quota.component.ts32src/app/shared/shared-main/users/user-quota.component.ts38 + src/app/+admin/config/shared/config.service.ts22 + src/app/+admin/config/shared/config.service.ts36 + src/app/shared/shared-instance/instance-features-table.component.ts30 + src/app/shared/shared-instance/instance-features-table.component.ts37 + src/app/shared/shared-main/users/user-quota.component.ts32 + src/app/shared/shared-main/users/user-quota.component.ts38 + None - no upload possible Geen -geen upload mogelijk - - - src/app/+admin/config/shared/config.service.ts23src/app/+admin/config/shared/config.service.ts37 + src/app/+admin/config/shared/config.service.ts23 + src/app/+admin/config/shared/config.service.ts37 + 100MB 100MB - - - src/app/+admin/config/shared/config.service.ts24src/app/+admin/config/shared/config.service.ts40 + src/app/+admin/config/shared/config.service.ts24 + src/app/+admin/config/shared/config.service.ts40 + 500MB 500MB - - - src/app/+admin/config/shared/config.service.ts25src/app/+admin/config/shared/config.service.ts41 + src/app/+admin/config/shared/config.service.ts25 + src/app/+admin/config/shared/config.service.ts41 + 1GB 1GB @@ -6642,32 +7088,40 @@ Account aanmaken 5GB 5GB - - - src/app/+admin/config/shared/config.service.ts27src/app/+admin/config/shared/config.service.ts43 + src/app/+admin/config/shared/config.service.ts27 + src/app/+admin/config/shared/config.service.ts43 + 20GB 20GB - - src/app/+admin/config/shared/config.service.ts28src/app/+admin/config/shared/config.service.ts45 + src/app/+admin/config/shared/config.service.ts28 + src/app/+admin/config/shared/config.service.ts45 + 50GB 50GB - - src/app/+admin/config/shared/config.service.ts29src/app/+admin/config/shared/config.service.ts46 - 100GB100GB + src/app/+admin/config/shared/config.service.ts29 + src/app/+admin/config/shared/config.service.ts46 + + + 100GB + 100GB src/app/+admin/config/shared/config.service.ts 30 - - 200GB200GB + + + 200GB + 200GB src/app/+admin/config/shared/config.service.ts 31 - - 500GB500GB + + + 500GB + 500GB src/app/+admin/config/shared/config.service.ts 32 @@ -6676,19 +7130,21 @@ Account aanmaken 10MB 10MB - - src/app/+admin/config/shared/config.service.ts38 + src/app/+admin/config/shared/config.service.ts38 + 50MB 50MB - - src/app/+admin/config/shared/config.service.ts39 + src/app/+admin/config/shared/config.service.ts39 + 2GB 2GB - - src/app/+admin/config/shared/config.service.ts42 - 10GB10GB + src/app/+admin/config/shared/config.service.ts42 + + + 10GB + 10GB src/app/+admin/config/shared/config.service.ts 44 @@ -6722,45 +7178,47 @@ Account aanmaken Delete Verwijderen - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts87src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163src/app/+admin/users/user-list/user-list.component.ts85src/app/+admin/users/user-list/user-list.component.ts199src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.ts115src/app/+my-library/my-videos/my-videos.component.ts142src/app/+my-library/my-videos/my-videos.component.ts183src/app/+videos/+video-watch/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts144src/app/shared/shared-abuse-list/abuse-list-table.component.ts386src/app/shared/shared-abuse-list/abuse-list-table.component.ts421src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts87 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + src/app/+admin/users/user-list/user-list.component.ts85 + src/app/+admin/users/user-list/user-list.component.ts199 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.ts115 + src/app/+my-library/my-videos/my-videos.component.ts142 + src/app/+my-library/my-videos/my-videos.component.ts183 + src/app/+videos/+video-watch/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts144 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts386 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts421 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + viewers kijkers - - src/app/shared/shared-main/video/video.model.ts216 + src/app/shared/shared-main/video/video.model.ts216 + views keer bekeken - - src/app/shared/shared-main/video/video.model.ts219 + src/app/shared/shared-main/video/video.model.ts219 + removed from instance followers verwijderd uit volgers van dit exemplaar van PeerTube src/app/+admin/follows/followers-list/followers-list.component.ts81 - - FollowFollow + + + Follow + Follow src/app/+admin/follows/following-list/follow-modal.component.html 3 @@ -6773,8 +7231,10 @@ Account aanmaken src/app/+admin/follows/following-list/following-list.component.html 18 - - 1 host (without "http://"), account handle or channel handle per line1 host (without "http://"), account handle or channel handle per line + + + 1 host (without "http://"), account handle or channel handle per line + 1 host (without "http://"), account handle or channel handle per line src/app/+admin/follows/following-list/follow-modal.component.html 11 @@ -6785,14 +7245,17 @@ Account aanmaken is niet valide - - src/app/shared/form-validators/host-validators.ts27src/app/shared/form-validators/host-validators.ts50 + src/app/shared/form-validators/host-validators.ts27 + src/app/shared/form-validators/host-validators.ts50 + Follow request(s) sent! Volgverzoek(en) verstuurd! - - src/app/+admin/follows/following-list/follow-modal.component.ts63 - Your instance subscriptionsYour instance subscriptions + src/app/+admin/follows/following-list/follow-modal.component.ts63 + + + Your instance subscriptions + Your instance subscriptions src/app/+admin/follows/following-list/following-list.component.html 3 @@ -6801,8 +7264,8 @@ Account aanmaken Do you really want to unfollow ? Wil je echt niet meer volgen? - - src/app/+admin/follows/following-list/following-list.component.ts46 + src/app/+admin/follows/following-list/following-list.component.ts46 + Unfollow Onvolgen @@ -6811,8 +7274,8 @@ Account aanmaken You are not following anymore. Je volgt niet meer. - - src/app/+admin/follows/following-list/following-list.component.ts54 + src/app/+admin/follows/following-list/following-list.component.ts54 + enabled ingeschakeld @@ -6831,33 +7294,33 @@ Account aanmaken Used Gebruikt - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Available Beschikbaar - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 + Do you really want to remove this video redundancy? Wil je echt de superpluskopie van deze video verwijderen? - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts142 + Remove redundancy Surpluskopie verwijderen - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts143 + Video redundancies removed! Surpluskopies van video verwijderd! - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + Account unmuted by your instance. Account niet meer gedempt door je exemplaar van PeerTube. - - src/app/shared/shared-moderation/account-blocklist.component.ts43 + src/app/shared/shared-moderation/account-blocklist.component.ts43 + Instance unmuted by your instance. Exemplaar niet meer gedempt door jouw exemplaar van PeerTube. @@ -6866,9 +7329,9 @@ Account aanmaken Instance muted. Exemplaar van PeerTube gedempt. - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts145 + Instance muted by your instance. Exemplaar gedempt door jouw exemplaar van PeerTube. @@ -6882,158 +7345,158 @@ Account aanmaken Violent or Repulsive Gewelddadig of Weerzinwekkend - - src/app/shared/shared-abuse-list/abuse-details.component.ts19 + src/app/shared/shared-abuse-list/abuse-details.component.ts19 + Hateful or Abusive Haatdragend of Krenkend - - src/app/shared/shared-abuse-list/abuse-details.component.ts20 + src/app/shared/shared-abuse-list/abuse-details.component.ts20 + Spam or Misleading Spam of Misleidend - - src/app/shared/shared-abuse-list/abuse-details.component.ts21 + src/app/shared/shared-abuse-list/abuse-details.component.ts21 + Privacy Privacy - - src/app/shared/shared-abuse-list/abuse-details.component.ts22 + src/app/shared/shared-abuse-list/abuse-details.component.ts22 + Copyright Copyright - - - src/app/shared/shared-abuse-list/abuse-details.component.ts23src/app/shared/shared-moderation/abuse.service.ts161 + src/app/shared/shared-abuse-list/abuse-details.component.ts23 + src/app/shared/shared-moderation/abuse.service.ts161 + Server rules Serverregels - - src/app/shared/shared-abuse-list/abuse-details.component.ts24 + src/app/shared/shared-abuse-list/abuse-details.component.ts24 + Thumbnails Miniaturen - - - src/app/shared/shared-abuse-list/abuse-details.component.ts25src/app/shared/shared-moderation/abuse.service.ts176 + src/app/shared/shared-abuse-list/abuse-details.component.ts25 + src/app/shared/shared-moderation/abuse.service.ts176 + Internal actions Interne acties - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts56src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts56 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 + Delete report Rapport verwijderen - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 + Actions for the flagged account Acties op de gemarkeerde account - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + Mark as accepted Markeer als geaccepteerd - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts272 + Mark as rejected Markeer als afgewezen - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts277 + Add internal note Interne nota toevoegen - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts282 + Actions for the video Acties voor de video - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts79src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts79 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts346 + Block video Video blokkeren - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 + Video blocked. Video geblokkeerd. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts357src/app/shared/shared-moderation/video-block.component.ts60 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts357 + src/app/shared/shared-moderation/video-block.component.ts60 + Unblock video Video deblokkeren - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 + Video unblocked. Video gedeblokkeerd. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 + Do you really want to delete this abuse report? Wil je echt deze misbruikmelding verwijderen? - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts145 + Abuse deleted. Misbruik verwijderdt. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts151 + Deleted comment Reactie verwijderd - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts227 + Messages with reporter Conversaties met aangever - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts261 + Messages with moderators Conversaties met moderatoren - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts262 + Update internal note Interne nota bijwerken - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts267 + Switch video block to manual Videoblokkering naar manueel schakelen - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts61 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts61 + Video switched to manual block. Video gewijzigd naar blokkering. - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts67 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts67 + Do you really want to unblock this video? It will be available again in the videos list. Wil je echt deze video deblokkeren? Hij wordt dan opnieuw beschikbaar in de lijst van video's. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts132src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts132 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + Unblock Deblokkeren - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts83src/app/+admin/moderation/video-block-list/video-block-list.component.ts134src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts83 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts134 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + Video unblocked. Video gedeblokkeerd. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts140src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts140 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + yes ja @@ -7049,53 +7512,59 @@ Account aanmaken You don't have plugins installed yet. Je hebt nog geen plugins geïnstalleerd. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts86 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts86 + You don't have themes installed yet. Je hebt nog geen themas geïnstalleerd. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts89 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts89 + Update to Bijwerken naar - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts97 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts97 + Do you really want to uninstall ? Wil je echt verwijderen? - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110 + Uninstall Installatie verwijderen - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts112 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts112 + uninstalled. verwijderd. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts118 - This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts134 - UpgradeUpgrade - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts135 - Proceed upgradeProceed upgrade - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts136 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts118 + + + This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes. + This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes. + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts134 + + + Upgrade + Upgrade + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts135 + + + Proceed upgrade + Proceed upgrade + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts136 + updated. bijgewerkt. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts150 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts150 + Jobs Taken @@ -7109,99 +7578,117 @@ Account aanmaken The plugin index is not available. Please retry later. De plugin index is niet beschikbaar. Probeer later alstublieft weer. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts100 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts100 + Please only install plugins or themes you trust, since they can execute any code on your instance. Installeer alleen plugins of thema's die u vertrouwt, aangezien deze hun code op jouw exemplaar van PeerTube kunnen uitvoeren. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts134 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts134 + Install ? installeren? - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts135 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts135 + installed. geïnstalleerd. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts147 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts147 + Settings updated. Instellingen bijgewerkt. - - src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts55 + src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts55 + Plugins Plugins - - src/app/+admin/plugins/shared/plugin-api.service.ts31 + src/app/+admin/plugins/shared/plugin-api.service.ts31 + Themes Themas - - src/app/+admin/plugins/shared/plugin-api.service.ts35 + src/app/+admin/plugins/shared/plugin-api.service.ts35 + plugin plugin - - src/app/+admin/plugins/shared/plugin-api.service.ts43 + src/app/+admin/plugins/shared/plugin-api.service.ts43 + theme thema - - src/app/+admin/plugins/shared/plugin-api.service.ts46 - IP addressIP address + src/app/+admin/plugins/shared/plugin-api.service.ts46 + + + IP address + IP address src/app/+admin/system/debug/debug.component.html 2 - - PeerTube thinks your web browser public IP is .PeerTube thinks your web browser public IP is . + + + PeerTube thinks your web browser public IP is . + PeerTube thinks your web browser public IP is . src/app/+admin/system/debug/debug.component.html 4 - - If this is not your correct public IP, please consider fixing it because:If this is not your correct public IP, please consider fixing it because: + + + If this is not your correct public IP, please consider fixing it because: + If this is not your correct public IP, please consider fixing it because: src/app/+admin/system/debug/debug.component.html 6 - - Views may not be counted correctly (reduced compared to what they should be)Views may not be counted correctly (reduced compared to what they should be) + + + Views may not be counted correctly (reduced compared to what they should be) + Views may not be counted correctly (reduced compared to what they should be) src/app/+admin/system/debug/debug.component.html 8 - - Anti brute force system could be overzealousAnti brute force system could be overzealous + + + Anti brute force system could be overzealous + Anti brute force system could be overzealous src/app/+admin/system/debug/debug.component.html 9 - - P2P system could not work correctlyP2P system could not work correctly + + + P2P system could not work correctly + P2P system could not work correctly src/app/+admin/system/debug/debug.component.html 10 - - To fix it:To fix it: + + + To fix it: + To fix it: src/app/+admin/system/debug/debug.component.html 13 - - Check the trust_proxy configuration keyCheck the trust_proxy configuration key + + + Check the trust_proxy configuration key + Check the trust_proxy configuration key src/app/+admin/system/debug/debug.component.html 15 - - If you run PeerTube using Docker, check you run the reverse-proxy with network_mode: "host" (see issue 1643)If you run PeerTube using Docker, check you run the reverse-proxy with network_mode: "host" (see issue 1643) + + + If you run PeerTube using Docker, check you run the reverse-proxy with network_mode: "host" (see issue 1643) + If you run PeerTube using Docker, check you run the reverse-proxy with network_mode: "host" (see issue 1643) src/app/+admin/system/debug/debug.component.html 16,17 @@ -7210,38 +7697,38 @@ Account aanmaken Last week Laatste week - - src/app/+admin/system/logs/logs.component.ts87 + src/app/+admin/system/logs/logs.component.ts87 + Last day Laatste dag - - src/app/+admin/system/logs/logs.component.ts92 + src/app/+admin/system/logs/logs.component.ts92 + Last hour Laatste uur - - src/app/+admin/system/logs/logs.component.ts97 + src/app/+admin/system/logs/logs.component.ts97 + debug debuggen - - src/app/+admin/system/logs/logs.component.ts109 + src/app/+admin/system/logs/logs.component.ts109 + info info - - src/app/+admin/system/logs/logs.component.ts113 + src/app/+admin/system/logs/logs.component.ts113 + warning waarschuwing - - src/app/+admin/system/logs/logs.component.ts117 + src/app/+admin/system/logs/logs.component.ts117 + error fout - - src/app/+admin/system/logs/logs.component.ts121 + src/app/+admin/system/logs/logs.component.ts121 + Debug Debuggen @@ -7260,24 +7747,24 @@ Account aanmaken Error Fout - - - src/app/core/auth/auth.service.ts103src/app/core/notification/notifier.service.ts18 + src/app/core/auth/auth.service.ts103 + src/app/core/notification/notifier.service.ts18 + Standard logs Standaardlogboeken - - src/app/+admin/system/logs/logs.component.ts132 + src/app/+admin/system/logs/logs.component.ts132 + Audit logs Nazichtlogboeken - - src/app/+admin/system/logs/logs.component.ts136 + src/app/+admin/system/logs/logs.component.ts136 + User created. Gebruiker verwijderd. - - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts77 + Create user Gebruiker aanmaken @@ -7301,25 +7788,23 @@ Account aanmaken Update user password Update gebruikerswachtwoord - - src/app/+admin/users/user-edit/user-password.component.ts53 - - + src/app/+admin/users/user-edit/user-password.component.ts53 + User updated. Gebruiker bijgewerkt. - - src/app/+admin/users/user-edit/user-update.component.ts92 + src/app/+admin/users/user-edit/user-update.component.ts92 + Update user Werk gebruiker bij - - src/app/+admin/users/user-edit/user-update.component.ts111 + src/app/+admin/users/user-edit/user-update.component.ts111 + An email asking for password reset has been sent to . Een e-mail met het verzoek om opnieuw instellen van het wachtwoord is verzonden naar . - - src/app/+admin/users/user-edit/user-update.component.ts118 + src/app/+admin/users/user-edit/user-update.component.ts118 + Users list Lijst van gebruikers @@ -7333,59 +7818,63 @@ Account aanmaken Update a user Gebruiker bijwerken - - src/app/+admin/users/users.routes.ts45 + src/app/+admin/users/users.routes.ts45 + Federation Federatie src/app/+admin/admin.component.ts26 - - Videos will be deleted, comments will be tombstoned. Videos zullen worden verwijderd, reacties als verwijderd gemarkeerd. - - - src/app/+admin/users/user-list/user-list.component.ts82src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + src/app/+admin/users/user-list/user-list.component.ts82 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts267 + Ban Verbannen - - - src/app/+admin/users/user-list/user-list.component.ts91src/app/shared/shared-moderation/user-moderation-dropdown.component.ts274 + src/app/+admin/users/user-list/user-list.component.ts91 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts274 + User won't be able to login anymore, but videos and comments will be kept as is. De gebruiker zal zich niet meer kunnen aanmelden, maar zijn video's en commentaren blijven. - - - src/app/+admin/users/user-list/user-list.component.ts88src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + src/app/+admin/users/user-list/user-list.component.ts88 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts272 + Unban Onverban - - - - src/app/+admin/users/user-list/user-list.component.ts93src/app/+admin/users/user-list/user-list.component.ts172src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + src/app/+admin/users/user-list/user-list.component.ts93 + src/app/+admin/users/user-list/user-list.component.ts172 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + Set Email as Verified Zet E-mail als Geverifieerd - - - src/app/+admin/users/user-list/user-list.component.ts100src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 - CreatedCreated + src/app/+admin/users/user-list/user-list.component.ts100 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts283 + + + Created + Created src/app/+admin/users/user-list/user-list.component.ts 115 - - Daily quotaDaily quota + + + Daily quota + Daily quota src/app/+admin/users/user-list/user-list.component.ts 120 - - Last loginLast login + + + Last login + Last login src/app/+admin/users/user-list/user-list.component.ts 122 @@ -7394,96 +7883,99 @@ Account aanmaken You cannot ban root. Je kan root niet verbannen. - - - src/app/+admin/users/user-list/user-list.component.ts159src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + src/app/+admin/users/user-list/user-list.component.ts159 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + Do you really want to unban users? Wil je echt gebruikers opnieuw toelaten? - - src/app/+admin/users/user-list/user-list.component.ts172 + src/app/+admin/users/user-list/user-list.component.ts172 + users unbanned. gebruikers onverbannen. - - src/app/+admin/users/user-list/user-list.component.ts178 + src/app/+admin/users/user-list/user-list.component.ts178 + You cannot delete root. Root kan je niet verwijderen. - - - src/app/+admin/users/user-list/user-list.component.ts189src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + src/app/+admin/users/user-list/user-list.component.ts189 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + If you remove these users, you will not be able to create others with the same username! Als jij deze gebruikers verwijdert, kan je niet meer anderen maken met dezelfde gebruikersnaam! - - src/app/+admin/users/user-list/user-list.component.ts194 + src/app/+admin/users/user-list/user-list.component.ts194 + users deleted. gebruikers verwijderd. - - src/app/+admin/users/user-list/user-list.component.ts201 + src/app/+admin/users/user-list/user-list.component.ts201 + users email set as verified. gebruikers'' gezet als geverifieerd. - - src/app/+admin/users/user-list/user-list.component.ts213 + src/app/+admin/users/user-list/user-list.component.ts213 + Account unmuted. Account niet meer gedempt. - - - src/app/shared/shared-moderation/account-blocklist.component.ts42src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + src/app/shared/shared-moderation/account-blocklist.component.ts42 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts131 + Instance unmuted. Exemplaar van PeerTube niet meer gedempt. - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 - + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts159 + Videos history is enabled Video's geschiedenis is ingeschakeld - - src/app/+my-library/my-history/my-history.component.ts114 + src/app/+my-library/my-history/my-history.component.ts114 + Videos history is disabled Video's geschiedenis is uitgeschakeld - - src/app/+my-library/my-history/my-history.component.ts115 + src/app/+my-library/my-history/my-history.component.ts115 + Delete videos history Videogeschiedenis verwijderen - - src/app/+my-library/my-history/my-history.component.ts127 + src/app/+my-library/my-history/my-history.component.ts127 + Are you sure you want to delete all your videos history? Weet je zeker dat je al je videogeschiedenis wil verwijderen? - - src/app/+my-library/my-history/my-history.component.ts128 + src/app/+my-library/my-history/my-history.component.ts128 + Videos history deleted Videogeschiedenis verwijderd - - src/app/+my-library/my-history/my-history.component.ts136 - My watch historyMy watch history + src/app/+my-library/my-history/my-history.component.ts136 + + + My watch history + Mijn kijkgeschiedenis src/app/+my-library/my-history/my-history.component.html 3 - - Track watch historyTrack watch history - - src/app/+my-library/my-history/my-history.component.html13 + + + Track watch history + Track watch history + src/app/+my-library/my-history/my-history.component.html13 + Ownership accepted Eigendom geaccepteerd - - src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts69 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts69 + Please check your emails to verify your new email. Check alstublieft je e-mails om je nieuwe e-mailadres te verifiëren. @@ -7493,9 +7985,10 @@ Account aanmaken Email updated. E-mail bijgewerkt. src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts55 - - Your current email is . It is never shown to the public. - Your current email is . It is never shown to the public. + + + Your current email is . It is never shown to the public. + Your current email is . It is never shown to the public. src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html @@ -7505,24 +7998,24 @@ Account aanmaken You current password is invalid. Jouw huide wachtwoord is invalide. - - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts61 + Password updated. Wachtwoord bijgewerkt. - - src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 + Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted. Weet je zeker dat je je account wil verwijderen? Dat verwijdert al je gegevens, kanalen, video's en commentaren inbegrepen. Op andere exemplaren van PeerTube en bij andere derden opgeslagen inhoud verwijderen duurt mogelijk langer. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23 + Type your username to confirm Typ je gebruikersnaam in om te bevestigen - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 + Delete your account Je account verwijderen @@ -7531,19 +8024,19 @@ Account aanmaken Delete my account Mijn account verwijderen - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 + Your account is deleted. Jouw account is verwijderd. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 + Interface settings updated. Interface instellingen bijgewerkt. - - - src/app/shared/shared-user-settings/user-interface-settings.component.ts73src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + src/app/shared/shared-user-settings/user-interface-settings.component.ts73 + src/app/shared/shared-user-settings/user-interface-settings.component.ts83 + New video from your subscriptions Nieuwe video van je abonnementen @@ -7613,14 +8106,18 @@ Account aanmaken One of your abuse reports has been accepted or rejected by moderators Een van je misbruikaangiften is geaccepteerd of verworpen door een moderator src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts45 - - A new PeerTube version is availableA new PeerTube version is available + + + A new PeerTube version is available + A new PeerTube version is available src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts 46 - - One of your plugin/theme has a new available versionOne of your plugin/theme has a new available version + + + One of your plugin/theme has a new available version + One of your plugin/theme has a new available version src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts 47 @@ -7629,14 +8126,16 @@ Account aanmaken Preferences saved Voorkeuren opgeslagen - - src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + Profile updated. Profiel bijgewerkt. - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 - People can find you using @@ People can find you using @@ + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 + + + People can find you using @@ + People can find you using @@ src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html 11,13 @@ -7645,74 +8144,81 @@ Account aanmaken Avatar changed. Avatar verandert. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts44src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 + avatar avatar - - src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 - Avatar deleted.Avatar deleted. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts61src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 + src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 + + + Avatar deleted. + Avatar deleted. + src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 + Unknown language Onbekende taal - - src/app/shared/shared-forms/select/select-languages.component.ts41 + src/app/shared/shared-forms/select/select-languages.component.ts41 + Too many languages are enabled. Please enable them all or stay below 20 enabled languages. Te veel talen ingesteld. Schakel ze alsjeblieft allemaal in of blijf onder de 20 ingeschakelde talen. - - src/app/shared/shared-user-settings/user-video-settings.component.ts76 - + src/app/shared/shared-user-settings/user-video-settings.component.ts76 + Video settings updated. Video instellingen bijgewerkt. - - src/app/shared/shared-user-settings/user-video-settings.component.ts121 + src/app/shared/shared-user-settings/user-video-settings.component.ts121 + Display/Video settings updated. Scherm/Video-instellingen bijgewerkt. - - src/app/shared/shared-user-settings/user-video-settings.component.ts130 + src/app/shared/shared-user-settings/user-video-settings.component.ts130 + Video channel created. Videokanaal gemaakt. - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts66 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts66 + This name already exists on this instance. Deze naam bestaat al op dit exemplaar van PeerTube. - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts72 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts72 + Video channel updated. Videokanaal bijgewerkt. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 - Banner changed.Banner changed. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 - bannerbanner - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 - Banner deleted.Banner deleted. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 - + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts96 + + + Banner changed. + Banner changed. + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 + + + banner + banner + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 + + + Banner deleted. + Banner deleted. + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 + Video channel deleted. Videokanaal verwijderd. - - src/app/+my-library/+my-video-channels/my-video-channels.component.ts60 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts60 + Views for the day Aantal keer bekeken op dag - - src/app/+my-library/+my-video-channels/my-video-channels.component.ts88 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts88 + Update video channel Videokanaal bijwerken @@ -7722,26 +8228,34 @@ Account aanmaken Not found Niet gevonden src/app/+page-not-found/page-not-found-routing.module.ts14 - - URL parameter is missing in URL parametersURL parameter is missing in URL parameters + + + URL parameter is missing in URL parameters + URL parameter is missing in URL parameters src/app/+remote-interaction/remote-interaction.component.ts 25 - - Cannot access to the remote resourceCannot access to the remote resource + + + Cannot access to the remote resource + Cannot access to the remote resource src/app/+remote-interaction/remote-interaction.component.ts 48 - - Reset passwordReset password + + + Reset password + Reset password src/app/+reset-password/reset-password-routing.module.ts 11 - - Remote interactionRemote interaction + + + Remote interaction + Remote interaction src/app/+remote-interaction/remote-interaction-routing.module.ts 13 @@ -7750,20 +8264,20 @@ Account aanmaken Playlist created. Afspeellijst gemaakt. - - src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 + Create Aanmaken - - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts103src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts103 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89 + Update playlist Afspeellijst bijwerken - - - src/app/+my-library/my-library-routing.module.ts66src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47 + src/app/+my-library/my-library-routing.module.ts66 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47 + Notifications Meldingen @@ -7784,20 +8298,20 @@ Account aanmaken Playlist updated. Afspeellijst bijgewerkt. - - src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 + Do you really want to delete ? Wil je echt verwijderen? - - - - src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34src/app/+my-library/my-videos/my-videos.component.ts143 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts34 + src/app/+my-library/my-videos/my-videos.component.ts143 + Change ownership Eigenaarschap wijzigen - - src/app/+my-library/my-videos/my-videos.component.ts178 + src/app/+my-library/my-videos/my-videos.component.ts178 + Playlist deleted. Afspeellijst verwijderd. @@ -7811,18 +8325,19 @@ Account aanmaken Ownership changes Eigendomswijzigingen - - src/app/+my-library/my-library-routing.module.ts107src/app/+my-library/my-videos/my-videos.component.html16 + src/app/+my-library/my-library-routing.module.ts107 + src/app/+my-library/my-videos/my-videos.component.html16 + Do you really want to delete videos? Wil je echt video's verwijderen? - - src/app/+my-library/my-videos/my-videos.component.ts116 + src/app/+my-library/my-videos/my-videos.component.ts116 + videos deleted. video's verwijderd. - - src/app/+my-library/my-videos/my-videos.component.ts133 + src/app/+my-library/my-videos/my-videos.component.ts133 + Do you really want to delete ? Weet je zeker dat je wil verwijderen? @@ -7834,15 +8349,17 @@ Account aanmaken Video deleted. Video verwijderd. - - - src/app/+my-library/my-videos/my-videos.component.ts151src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + src/app/+my-library/my-videos/my-videos.component.ts151 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + Ownership change request sent. Eigenaarsveranderingsaanvrag gestuurd. - - src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 - Sort bySort by + src/app/+my-library/my-videos/modals/video-change-ownership.component.ts66 + + + Sort by + Sort by src/app/+my-library/my-videos/my-videos.component.html 26 @@ -7851,29 +8368,28 @@ Account aanmaken My channels Mijn kanalen - - src/app/+my-library/+my-video-channels/my-video-channels.component.html3 - + src/app/+my-library/+my-video-channels/my-video-channels.component.html3 + My playlists Mijn afspeellijsten - - src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 + My subscriptions Mijn abonnementen src/app/+my-library/my-subscriptions/my-subscriptions.component.html4 - You don't have any subscription yet.You don't have any subscription yet. - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html13 - + You don't have any subscription yet. + You don't have any subscription yet. + src/app/+my-library/my-subscriptions/my-subscriptions.component.html13 + My abuse reports Mijn misbruikaangiften - - src/app/+my-account/my-account-routing.module.ts117 + src/app/+my-account/my-account-routing.module.ts117 + Ownership changes Veranderingen van eigenaar @@ -7882,13 +8398,13 @@ Account aanmaken My video history Mijn videogeschiedenis - - src/app/+my-library/my-library-routing.module.ts117 + src/app/+my-library/my-library-routing.module.ts117 + Channels Kanalen - - src/app/+my-library/my-library.component.ts45 + src/app/+my-library/my-library.component.ts45 + Videos Video's @@ -7902,151 +8418,161 @@ Account aanmaken max size maximale grootte - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Bewerker maximaliseren - - src/app/shared/shared-forms/markdown-textarea.component.ts49 + src/app/shared/shared-forms/markdown-textarea.component.ts49 + Exit maximized editor Gemaximaliseerde bewerker verlaten - - src/app/shared/shared-forms/markdown-textarea.component.ts50 + src/app/shared/shared-forms/markdown-textarea.component.ts50 + Now please check your emails to verify your account and complete signup. Check alstublieft nu jouw e-mails om jouw account te verifiëren en de inschrijving te voltooien. - - src/app/+signup/+register/register.component.ts129 + src/app/+signup/+register/register.component.ts129 + You are now logged in as ! Je bent nu ingelogd als ! - - src/app/+signup/+register/register.component.ts137 + src/app/+signup/+register/register.component.ts137 + An email with verification link will be sent to . Een e-mail met verificatielink wordt verstuurd naar . - - src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 + Unable to find user id or verification string. Niet in staat om gebruikersid of verificatiestring te vinden. src/app/+reset-password/reset-password.component.ts38 src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts33 - - Subscribe to the account Abonneren op account - - - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts713 - PLAYLISTSPLAYLISTS + src/app/+video-channels/video-channels.component.ts71 + src/app/+videos/+video-watch/video-watch.component.ts713 + + + PLAYLISTS + PLAYLISTS src/app/+video-channels/video-channels.component.ts 77 - Focus the search bar Focus de zoekbalk - - src/app/app.component.ts270 + src/app/app.component.ts270 + Toggle the left menu Schakel het linker menu aan of uit - - src/app/app.component.ts275 + src/app/app.component.ts275 + Go to the discover videos page Ga naar de ontdek videos pagina - - src/app/app.component.ts280 + src/app/app.component.ts280 + Go to the trending videos page Naar de pagina met populaire video's - - src/app/app.component.ts285 + src/app/app.component.ts285 + Go to the recently added videos page Ga naar recent toegevoegde videos pagina - - src/app/app.component.ts290 + src/app/app.component.ts290 + Go to the local videos page Ga naar de locale videos pagina - - src/app/app.component.ts295 + src/app/app.component.ts295 + Go to the videos upload page Ga naar de videos uploadpagina - - src/app/app.component.ts300 + src/app/app.component.ts300 + Go to my subscriptions Naar mijn abonnementen gaan - - src/app/core/auth/auth.service.ts63 + src/app/core/auth/auth.service.ts63 + Go to my videos Ga naar mijn videos - - src/app/core/auth/auth.service.ts67 + src/app/core/auth/auth.service.ts67 + Go to my imports Ga naar mijn imports - - src/app/core/auth/auth.service.ts71 + src/app/core/auth/auth.service.ts71 + Go to my channels Ga naar mijn kanalen - - src/app/core/auth/auth.service.ts75 + src/app/core/auth/auth.service.ts75 + - Cannot retrieve OAuth Client credentials: . + Cannot retrieve OAuth Client credentials: . Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section. Kan OAuth Client-aanmeldinformatie niet ophalen: . Vergewis je ervan dat je PeerTube (config/ map) juist hebt geconfigureerd, in het bijzonder het onderdeel "webserver". - - src/app/core/auth/auth.service.ts98 + src/app/core/auth/auth.service.ts98 + You need to reconnect. Je moet opnieuw verbinden. - - src/app/core/auth/auth.service.ts221 + src/app/core/auth/auth.service.ts221 + Keyboard Shortcuts: Sneltoetsen: src/app/core/hotkeys/hotkeys.component.ts11 - - My historyMy history + + + My history + My history src/app/core/menu/menu.service.ts 98 - - In my libraryIn my library + + + In my library + In my library src/app/core/menu/menu.service.ts 104 - - TrendingTrending - - src/app/+videos/video-list/videos-list-common-page.component.ts201src/app/core/menu/menu.service.ts131 - ON ON + + + Trending + Trending + src/app/+videos/video-list/videos-list-common-page.component.ts201 + src/app/core/menu/menu.service.ts131 + + + ON + ON src/app/core/menu/menu.service.ts 150 - - HomeHome - - - src/app/core/menu/menu.service.ts115src/app/core/menu/menu.service.ts116 + + + Home + Home + src/app/core/menu/menu.service.ts115 + src/app/core/menu/menu.service.ts116 + Success Succes @@ -8055,104 +8581,107 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Incorrect username or password. Incorrecte gebruikersnaam of wachtwoord. - - src/app/+login/login.component.ts163 + src/app/+login/login.component.ts163 + Your account is blocked. Je account is geblokkeerd. - - src/app/+login/login.component.ts164 + src/app/+login/login.component.ts164 + any language gelijk welke taal - - src/app/menu/menu.component.ts266 - + src/app/menu/menu.component.ts266 + hide verbergen - - src/app/menu/menu.component.ts301 + src/app/menu/menu.component.ts301 + blur vervagen - - src/app/menu/menu.component.ts305 + src/app/menu/menu.component.ts305 + display weergeven - - src/app/menu/menu.component.ts309 + src/app/menu/menu.component.ts309 + Unknown Niet gekend - - src/app/menu/menu.component.ts196 + src/app/menu/menu.component.ts196 + Your password has been successfully reset! Jouw wachtwoord is succesvol gereset! src/app/+reset-password/reset-password.component.ts47 - Today Vandaag - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts123 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts123 + Yesterday Gisteren - - src/app/shared/shared-video-miniature/videos-list.component.ts124 + src/app/shared/shared-video-miniature/videos-list.component.ts124 + This week Deze week - - src/app/shared/shared-video-miniature/videos-list.component.ts125 + src/app/shared/shared-video-miniature/videos-list.component.ts125 + This month Deze maand - - src/app/shared/shared-video-miniature/videos-list.component.ts126 + src/app/shared/shared-video-miniature/videos-list.component.ts126 + Last month Vorige maand - - src/app/shared/shared-video-miniature/videos-list.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts127 + Older Ouder - - src/app/shared/shared-video-miniature/videos-list.component.ts128 + src/app/shared/shared-video-miniature/videos-list.component.ts128 + Cannot load more videos. Try again later. Meer video's laden niet mogelijk. Probeer het later opnieuw. - - src/app/shared/shared-video-miniature/videos-list.component.ts225src/app/shared/shared-video-miniature/videos-selection.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts225 + src/app/shared/shared-video-miniature/videos-selection.component.ts127 + Last 7 days Laatste 7 dagen - - src/app/+search/search-filters.component.ts45 + src/app/+search/search-filters.component.ts45 + Last 30 days Laatste 30 dagen - - src/app/+search/search-filters.component.ts49 + src/app/+search/search-filters.component.ts49 + Last 365 days Laatste 365 dagen - - src/app/+search/search-filters.component.ts53 - VOD videosVOD videos + src/app/+search/search-filters.component.ts53 + + + VOD videos + VOD videos src/app/+search/search-filters.component.ts 60 - - Live videosLive videos + + + Live videos + Live videos src/app/+search/search-filters.component.ts 64 @@ -8161,53 +8690,59 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Short (< 4 min) Kort (< 4 min) - - src/app/+search/search-filters.component.ts71 + src/app/+search/search-filters.component.ts71 + Medium (4-10 min) Middelmatig (4-10 min) - - src/app/+search/search-filters.component.ts75 + src/app/+search/search-filters.component.ts75 + Long (> 10 min) Lang (> 10 min) - - src/app/+search/search-filters.component.ts79 + src/app/+search/search-filters.component.ts79 + Relevance Relevantie - - src/app/+search/search-filters.component.ts86 + src/app/+search/search-filters.component.ts86 + Publish date Publicatiedatum - - src/app/+search/search-filters.component.ts90 + src/app/+search/search-filters.component.ts90 + Views Weergaven - - src/app/+search/search-filters.component.ts94 + src/app/+search/search-filters.component.ts94 + Search index is unavailable. Retrying with instance results instead. Zoekindex is niet beschikbaar. Nieuwe poging met enkel resultaten uit dit exemplaar van PeerTube. - - src/app/+search/search.component.ts163 + src/app/+search/search.component.ts163 + Search error Zoekfout - - src/app/+search/search.component.ts164 - PeerTube instance host filter is invalidPeerTube instance host filter is invalid - - src/app/+search/search.component.ts332 + src/app/+search/search.component.ts164 + + + PeerTube instance host filter is invalid + PeerTube instance host filter is invalid + src/app/+search/search.component.ts332 + Search Zoeken - - - src/app/+search/search-routing.module.ts15src/app/+search/search.component.ts242src/app/shared/shared-main/misc/simple-search-input.component.ts15src/app/shared/shared-main/misc/simple-search-input.component.ts16 - + src/app/+search/search-routing.module.ts15 + src/app/+search/search.component.ts242 + src/app/shared/shared-main/misc/simple-search-input.component.ts15 + src/app/shared/shared-main/misc/simple-search-input.component.ts16 + + + + src/app/+search/search.component.html 5 @@ -8218,9 +8753,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular jaar geleden - - src/app/shared/shared-main/angular/from-now.pipe.ts11 - 1 year ago1 year ago + src/app/shared/shared-main/angular/from-now.pipe.ts11 + + + 1 year ago + 1 year ago src/app/shared/shared-main/angular/from-now.pipe.ts 12 @@ -8230,15 +8767,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 17 - months ago maanden geleden - - src/app/shared/shared-main/angular/from-now.pipe.ts18 - 1 month ago1 month ago + src/app/shared/shared-main/angular/from-now.pipe.ts18 + + + 1 month ago + 1 month ago src/app/shared/shared-main/angular/from-now.pipe.ts 19 @@ -8248,61 +8786,63 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 24 - weeks ago weken geleden - - src/app/shared/shared-main/angular/from-now.pipe.ts25 - 1 week ago1 week ago + src/app/shared/shared-main/angular/from-now.pipe.ts25 + + + 1 week ago + 1 week ago src/app/shared/shared-main/angular/from-now.pipe.ts 26 - days ago dagen geleden - - src/app/shared/shared-main/angular/from-now.pipe.ts29 - 1 day ago1 day ago + src/app/shared/shared-main/angular/from-now.pipe.ts29 + + + 1 day ago + 1 day ago src/app/shared/shared-main/angular/from-now.pipe.ts 30 - hours ago uur geleden - - src/app/shared/shared-main/angular/from-now.pipe.ts33 - 1 hour ago1 hour ago + src/app/shared/shared-main/angular/from-now.pipe.ts33 + + + 1 hour ago + 1 hour ago src/app/shared/shared-main/angular/from-now.pipe.ts 34 - min ago min geleden - - src/app/shared/shared-main/angular/from-now.pipe.ts37 + src/app/shared/shared-main/angular/from-now.pipe.ts37 + just now zonet - - src/app/shared/shared-main/angular/from-now.pipe.ts39 + src/app/shared/shared-main/angular/from-now.pipe.ts39 + sec sec @@ -8372,32 +8912,39 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Signup limit is required. Inschrijflimiet is vereist. src/app/shared/form-validators/custom-config-validators.ts46 - - Signup limit must be greater than 1. Use -1 to disable it.Signup limit must be greater than 1. Use -1 to disable it. + + + Signup limit must be greater than 1. Use -1 to disable it. + Signup limit must be greater than 1. Use -1 to disable it. src/app/shared/form-validators/custom-config-validators.ts 47 - Signup limit must be a number. Inschrijflimiet moet een nummer zijn. src/app/shared/form-validators/custom-config-validators.ts48 - - Signup minimum age is required.Signup minimum age is required. + + + Signup minimum age is required. + Signup minimum age is required. src/app/shared/form-validators/custom-config-validators.ts 55 - - Signup minimum age must be greater than 1.Signup minimum age must be greater than 1. + + + Signup minimum age must be greater than 1. + Signup minimum age must be greater than 1. src/app/shared/form-validators/custom-config-validators.ts 56 - - Signup minimum age must be a number.Signup minimum age must be a number. + + + Signup minimum age must be a number. + Signup minimum age must be a number. src/app/shared/form-validators/custom-config-validators.ts 57 @@ -8406,75 +8953,95 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Admin email is required. Administrator e-mail is vereist. - - src/app/shared/form-validators/custom-config-validators.ts64 + src/app/shared/form-validators/custom-config-validators.ts64 + Admin email must be valid. Administrator e-mail moet valide zijn. - - src/app/shared/form-validators/custom-config-validators.ts65 + src/app/shared/form-validators/custom-config-validators.ts65 + Transcoding threads is required. Transcoding threads zijn vereist. - - src/app/shared/form-validators/custom-config-validators.ts72 + src/app/shared/form-validators/custom-config-validators.ts72 + Transcoding threads must be greater or equal to 0. Transcoding threads moeten groter of gelijk zijn aan 0. - - src/app/shared/form-validators/custom-config-validators.ts73 - Max live duration is required.Max live duration is required. - - src/app/shared/form-validators/custom-config-validators.ts80 - Max live duration should be greater or equal to -1.Max live duration should be greater or equal to -1. - - src/app/shared/form-validators/custom-config-validators.ts81 - Max instance lives is required.Max instance lives is required. - - src/app/shared/form-validators/custom-config-validators.ts88 - Max instance lives should be greater or equal to -1.Max instance lives should be greater or equal to -1. - - src/app/shared/form-validators/custom-config-validators.ts89 - Max user lives is required.Max user lives is required. - - src/app/shared/form-validators/custom-config-validators.ts96 - Max user lives should be greater or equal to -1.Max user lives should be greater or equal to -1. - - src/app/shared/form-validators/custom-config-validators.ts97 - Concurrency is required.Concurrency is required. - - src/app/shared/form-validators/custom-config-validators.ts104 - Concurrency should be greater or equal to 1.Concurrency should be greater or equal to 1. - - src/app/shared/form-validators/custom-config-validators.ts105 + src/app/shared/form-validators/custom-config-validators.ts73 + + + Max live duration is required. + Max live duration is required. + src/app/shared/form-validators/custom-config-validators.ts80 + + + Max live duration should be greater or equal to -1. + Max live duration should be greater or equal to -1. + src/app/shared/form-validators/custom-config-validators.ts81 + + + Max instance lives is required. + Max instance lives is required. + src/app/shared/form-validators/custom-config-validators.ts88 + + + Max instance lives should be greater or equal to -1. + Max instance lives should be greater or equal to -1. + src/app/shared/form-validators/custom-config-validators.ts89 + + + Max user lives is required. + Max user lives is required. + src/app/shared/form-validators/custom-config-validators.ts96 + + + Max user lives should be greater or equal to -1. + Max user lives should be greater or equal to -1. + src/app/shared/form-validators/custom-config-validators.ts97 + + + Concurrency is required. + Concurrency is required. + src/app/shared/form-validators/custom-config-validators.ts104 + + + Concurrency should be greater or equal to 1. + Concurrency should be greater or equal to 1. + src/app/shared/form-validators/custom-config-validators.ts105 + Index URL should be a URL Index-URL moet een URL zijn - - src/app/shared/form-validators/custom-config-validators.ts112 + src/app/shared/form-validators/custom-config-validators.ts112 + Search index URL should be a URL Zoekindex-URL moet een URL zijn - - src/app/shared/form-validators/custom-config-validators.ts119 + src/app/shared/form-validators/custom-config-validators.ts119 + Email is required. E-mail is vereist. - - - src/app/shared/form-validators/instance-validators.ts7src/app/shared/form-validators/user-validators.ts39 + src/app/shared/form-validators/instance-validators.ts7 + src/app/shared/form-validators/user-validators.ts39 + Email must be valid. E-mail moet valide zijn. - - - src/app/shared/form-validators/instance-validators.ts8src/app/shared/form-validators/user-validators.ts40 - Handle is required.Handle is required. - - src/app/shared/form-validators/user-validators.ts50 - Handle must be valid (eg. chocobozzz@example.com).Handle must be valid (eg. chocobozzz@example.com). - - src/app/shared/form-validators/user-validators.ts51 + src/app/shared/form-validators/instance-validators.ts8 + src/app/shared/form-validators/user-validators.ts40 + + + Handle is required. + Handle is required. + src/app/shared/form-validators/user-validators.ts50 + + + Handle must be valid (eg. chocobozzz@example.com). + Handle must be valid (eg. chocobozzz@example.com). + src/app/shared/form-validators/user-validators.ts51 + Your name is required. Je naam is verplicht. @@ -8523,16 +9090,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Username is required. Gebruikersnaam is vereist. - - - src/app/shared/form-validators/login-validators.ts9src/app/shared/form-validators/user-validators.ts14 + src/app/shared/form-validators/login-validators.ts9 + src/app/shared/form-validators/user-validators.ts14 + Password is required. Wachtwoord is vereist. - - - - src/app/shared/form-validators/login-validators.ts18src/app/shared/form-validators/user-validators.ts60src/app/shared/form-validators/user-validators.ts71 + src/app/shared/form-validators/login-validators.ts18 + src/app/shared/form-validators/user-validators.ts60 + src/app/shared/form-validators/user-validators.ts71 + Confirmation of the password is required. Bevestiging van het wachtwoord is vereist. @@ -8541,129 +9108,129 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Username must be at least 1 character long. Gebruikersnaam moet minimaal 1 teken lang zijn. - - src/app/shared/form-validators/user-validators.ts15 + src/app/shared/form-validators/user-validators.ts15 + Username cannot be more than 50 characters long. Gebruikersnaam mag niet langer dan 50 tekens zijn. - - src/app/shared/form-validators/user-validators.ts16 + src/app/shared/form-validators/user-validators.ts16 + Username should be lowercase alphanumeric; dots and underscores are allowed. Gebruikersnaam moet alfanumeriek zijn in kleine letters; stippen en underscores zijn toegestaan. - - src/app/shared/form-validators/user-validators.ts17 + src/app/shared/form-validators/user-validators.ts17 + Channel name is required. Kanaalnaam is vereist. - - src/app/shared/form-validators/user-validators.ts29 + src/app/shared/form-validators/user-validators.ts29 + Channel name must be at least 1 character long. Kanaalnaam moet minstens 1 teken lang zijn. - - src/app/shared/form-validators/user-validators.ts30 + src/app/shared/form-validators/user-validators.ts30 + Channel name cannot be more than 50 characters long. Kanaalnaam mag niet langer dan 50 tekens zijn. - - src/app/shared/form-validators/user-validators.ts31 + src/app/shared/form-validators/user-validators.ts31 + Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores. De kanaalnaam moet kleine letters zijn en mag alleen alfanumerieke tekens, punten en onderstrepingstekens bevatten. - - src/app/shared/form-validators/user-validators.ts32 + src/app/shared/form-validators/user-validators.ts32 + Password must be at least 6 characters long. Wachtwoord moet minstens 6 karakters lang zijn. - - - src/app/shared/form-validators/user-validators.ts72src/app/shared/form-validators/user-validators.ts83 + src/app/shared/form-validators/user-validators.ts72 + src/app/shared/form-validators/user-validators.ts83 + Password cannot be more than 255 characters long. Wachtwoord mag niet langer dan 255 tekens zijn. - - - src/app/shared/form-validators/user-validators.ts73src/app/shared/form-validators/user-validators.ts84 + src/app/shared/form-validators/user-validators.ts73 + src/app/shared/form-validators/user-validators.ts84 + The new password and the confirmed password do not correspond. Het nieuwe wachtwoord en het bevestigde wachtwoord zijn niet hetzelfde. - - src/app/shared/form-validators/user-validators.ts91 + src/app/shared/form-validators/user-validators.ts91 + Video quota is required. Videoquotum is vereist. - - src/app/shared/form-validators/user-validators.ts98 + src/app/shared/form-validators/user-validators.ts98 + Quota must be greater than -1. Quotum moet groter zijn dan -1. - - src/app/shared/form-validators/user-validators.ts99 + src/app/shared/form-validators/user-validators.ts99 + Daily upload limit is required. Dagelijks uploadlimiet is vereist. - - src/app/shared/form-validators/user-validators.ts105 + src/app/shared/form-validators/user-validators.ts105 + Daily upload limit must be greater than -1. Dagelijks uploadlimiet moet groter zijn dan -1. - - src/app/shared/form-validators/user-validators.ts106 + src/app/shared/form-validators/user-validators.ts106 + User role is required. Gebruikersrol is vereist. - - src/app/shared/form-validators/user-validators.ts113 + src/app/shared/form-validators/user-validators.ts113 + Description must be at least 3 characters long. Beschrijvingen moeten minstens 3 karakters lang zijn. - - - - src/app/shared/form-validators/user-validators.ts125src/app/shared/form-validators/video-channel-validators.ts36src/app/shared/form-validators/video-playlist-validators.ts33 + src/app/shared/form-validators/user-validators.ts125 + src/app/shared/form-validators/video-channel-validators.ts36 + src/app/shared/form-validators/video-playlist-validators.ts33 + Description cannot be more than 1000 characters long. Beschrijving mag niet langer dan 1000 tekens zijn. - - - - src/app/shared/form-validators/user-validators.ts126src/app/shared/form-validators/video-channel-validators.ts37src/app/shared/form-validators/video-playlist-validators.ts34 + src/app/shared/form-validators/user-validators.ts126 + src/app/shared/form-validators/video-channel-validators.ts37 + src/app/shared/form-validators/video-playlist-validators.ts34 + You must agree with the instance terms in order to register on it. Je moet akkoord gaan met de voorwaarden van het exemplaar van PeerTube om erop te registreren. - - src/app/shared/form-validators/user-validators.ts133 + src/app/shared/form-validators/user-validators.ts133 + Ban reason must be at least 3 characters long. Verbanningsreden moet minstens 3 karakters zijn. - - src/app/shared/form-validators/user-validators.ts143 + src/app/shared/form-validators/user-validators.ts143 + Ban reason cannot be more than 250 characters long. Verbanningsreden mag niet langer dan 250 tekens zijn. - - src/app/shared/form-validators/user-validators.ts144 + src/app/shared/form-validators/user-validators.ts144 + Display name is required. Een weergavenaam is verplicht. - - - - src/app/shared/form-validators/user-validators.ts155src/app/shared/form-validators/video-channel-validators.ts24src/app/shared/form-validators/video-playlist-validators.ts12 + src/app/shared/form-validators/user-validators.ts155 + src/app/shared/form-validators/video-channel-validators.ts24 + src/app/shared/form-validators/video-playlist-validators.ts12 + Display name must be at least 1 character long. De weergavenaam moet minimaal 1 teken lang zijn. - - - - src/app/shared/form-validators/user-validators.ts156src/app/shared/form-validators/video-channel-validators.ts25src/app/shared/form-validators/video-playlist-validators.ts13 + src/app/shared/form-validators/user-validators.ts156 + src/app/shared/form-validators/video-channel-validators.ts25 + src/app/shared/form-validators/video-playlist-validators.ts13 + Display name cannot be more than 50 characters long. Weergavenaam mag niet langer dan 50 tekens zijn. - - - src/app/shared/form-validators/user-validators.ts157src/app/shared/form-validators/video-channel-validators.ts26 + src/app/shared/form-validators/user-validators.ts157 + src/app/shared/form-validators/video-channel-validators.ts26 + Report reason is required. Rapportagereden is vereist. @@ -8747,33 +9314,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Name is required. Naam is vereist. - - src/app/shared/form-validators/video-channel-validators.ts10 + src/app/shared/form-validators/video-channel-validators.ts10 + Name must be at least 1 character long. De naam moet minimaal 1 teken lang zijn. - - src/app/shared/form-validators/video-channel-validators.ts11 + src/app/shared/form-validators/video-channel-validators.ts11 + Name cannot be more than 50 characters long. Naam mag niet langer dan 50 tekens zijn. - - src/app/shared/form-validators/video-channel-validators.ts12 + src/app/shared/form-validators/video-channel-validators.ts12 + Name should be lowercase alphanumeric; dots and underscores are allowed. Naam moet alfanumeriek zijn in kleine letters; stippen en underscores zijn toegestaan. - - src/app/shared/form-validators/video-channel-validators.ts13 + src/app/shared/form-validators/video-channel-validators.ts13 + Support text must be at least 3 characters long. Supporttekst moet minstens 3 karakters zijn. - - src/app/shared/form-validators/video-channel-validators.ts47 + src/app/shared/form-validators/video-channel-validators.ts47 + Support text cannot be more than 1000 characters long Hulptekst mag niet langer dan 1000 tekens zijn - - src/app/shared/form-validators/video-channel-validators.ts48 + src/app/shared/form-validators/video-channel-validators.ts48 + See the documentation to learn how to use the PeerTube live streaming feature. Bekijk de documentatie om te leren hoe je de PeerTube live streaming functie kunt gebruiken. @@ -8854,19 +9421,21 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video name is required. Videonaam is vereist. - - src/app/shared/form-validators/video-validators.ts15 + src/app/shared/form-validators/video-validators.ts15 + Video name must be at least 3 characters long. Videonaam moet minstens 3 karakters zijn. - - src/app/shared/form-validators/video-validators.ts16 + src/app/shared/form-validators/video-validators.ts16 + Video name cannot be more than 120 characters long. Videonaam mag niet langer dan 120 tekens zijn. - - src/app/shared/form-validators/video-validators.ts17 - Video name has leading or trailing whitespace.Video name has leading or trailing whitespace. + src/app/shared/form-validators/video-validators.ts17 + + + Video name has leading or trailing whitespace. + Video name has leading or trailing whitespace. src/app/shared/form-validators/video-validators.ts 18 @@ -8875,58 +9444,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video privacy is required. Videoprivacy is vereist. - - src/app/shared/form-validators/video-validators.ts25 + src/app/shared/form-validators/video-validators.ts25 + Video channel is required. Videokanaal is vereist. - - src/app/shared/form-validators/video-validators.ts52 + src/app/shared/form-validators/video-validators.ts52 + Video description must be at least 3 characters long. Videobeschrijving moet minstens 3 karakters zijn. - - src/app/shared/form-validators/video-validators.ts59 + src/app/shared/form-validators/video-validators.ts59 + Video description cannot be more than 10000 characters long. Videobeschrijving mag niet langer dan 10000 tekens zijn. - - src/app/shared/form-validators/video-validators.ts60 + src/app/shared/form-validators/video-validators.ts60 + A tag should be more than 2 characters long. Een tag moet meer dan 2 tekens lang zijn. - - src/app/shared/form-validators/video-validators.ts67 + src/app/shared/form-validators/video-validators.ts67 + A tag should be less than 30 characters long. Een tag moet minder dan 30 karakters zijn. - - src/app/shared/form-validators/video-validators.ts68 + src/app/shared/form-validators/video-validators.ts68 + A maximum of 5 tags can be used on a video. Een video kan maximaal 5 tags krijgen. - - src/app/shared/form-validators/video-validators.ts75 + src/app/shared/form-validators/video-validators.ts75 + A tag should be more than 1 and less than 30 characters long. Een tag moet meer dan 1 en minder dan 30 tekens lang zijn. - - src/app/shared/form-validators/video-validators.ts76 + src/app/shared/form-validators/video-validators.ts76 + Video support must be at least 3 characters long. Videosupport moet minstens 3 karakters zijn. - - src/app/shared/form-validators/video-validators.ts83 + src/app/shared/form-validators/video-validators.ts83 + Video support cannot be more than 1000 characters long. Video-ondersteuning mag niet langer dan 1000 tekens zijn. - - src/app/shared/form-validators/video-validators.ts84 + src/app/shared/form-validators/video-validators.ts84 + A date is required to schedule video update. Een datum is vereist om videoupdates in te roosteren. - - src/app/shared/form-validators/video-validators.ts91 + src/app/shared/form-validators/video-validators.ts91 + This file is too large. Dit bestand is te groot. @@ -8936,14 +9505,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular PeerTube cannot handle this kind of file. Accepted extensions are }. PeerTube kan dit type bestand niet verwerken. We aanvaarden volgende bestandstypes: }. src/app/shared/shared-forms/reactive-file.component.ts56 - - All categoriesAll categories + + + All categories + All categories src/app/shared/shared-forms/select/select-categories.component.ts 24 - - You can't select more than itemsYou can't select more than items + + + You can't select more than items + You can't select more than items src/app/shared/shared-forms/select/select-checkbox-all.component.ts 81 @@ -8952,9 +9525,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Add a new option Nieuwe optie toevoegen - - src/app/shared/shared-forms/select/select-checkbox.component.ts27 - Custom value...Custom value... + src/app/shared/shared-forms/select/select-checkbox.component.ts27 + + + Custom value... + Custom value... src/app/shared/shared-forms/select/select-custom-value.component.ts 69 @@ -8968,328 +9543,331 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Sunday Zondag - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts10 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts10 + Monday Maandag - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11 + Tuesday Dinsdag - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12 + Wednesday Woensdag - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13 + Thursday Donderdag - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14 + Friday Vrijdag - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15 + Saturday Zaterdag - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16 + Sun Zon Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts20 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts20 + Mon Maa Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts21 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts21 + Tue Din Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts22 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts22 + Wed Woe Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts23 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts23 + Thu Don Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts24 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts24 + Fri Vri Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts25 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts25 + Sat Zat Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts26 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts26 + Su Zon Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts30 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts30 + Mo Ma Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts31 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts31 + Tu Di Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts32 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts32 + We Wo Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts33 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts33 + Th Do Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts34 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts34 + Fr Vr Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts35 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts35 + Sa Za Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts36 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts36 + January Januari - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts40 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts40 + February Februari - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41 + March Maart - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts42 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts42 + April April - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts43 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts43 + May Mei - - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts59 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts59 + June Juni - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts45 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts45 + July July - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts46 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts46 + August Augustus - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts47 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts47 + September September - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts48 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts48 + October Oktober - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts49 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts49 + November November - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts50 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts50 + December December - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51 + Jan Jan Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts55 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts55 + Feb Feb Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts56 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts56 + Mar Mar Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts57 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts57 + Apr Apr Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts58 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts58 + Jun Jun Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts60 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts60 + Jul Jul Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts61 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts61 + Aug Aug Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts62 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts62 + Sep Sep Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts63 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts63 + Oct Oct Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts64 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts64 + Nov Nov Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts65 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts65 + Dec Dec Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts66 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts66 + Clear Wissen - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts71 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts71 + yy-mm-dd yy-mm-dd Date format in this locale. - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts83 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts83 + Instance languages Talen exemplaar van PeerTube - - src/app/+videos/+video-edit/shared/video-edit.component.ts179 + src/app/+videos/+video-edit/shared/video-edit.component.ts179 + All languages Alle talen - - - src/app/+videos/+video-edit/shared/video-edit.component.ts180src/app/shared/shared-forms/select/select-languages.component.ts25 + src/app/+videos/+video-edit/shared/video-edit.component.ts180 + src/app/shared/shared-forms/select/select-languages.component.ts25 + Hidden Verborgen - - src/app/shared/shared-instance/instance-features-table.component.ts53 + src/app/shared/shared-instance/instance-features-table.component.ts53 + Blurred with confirmation request Afgeschermd met bevestigingsverzoek - - src/app/shared/shared-instance/instance-features-table.component.ts54 + src/app/shared/shared-instance/instance-features-table.component.ts54 + Displayed Weergegeven - - src/app/shared/shared-instance/instance-features-table.component.ts55src/app/shared/shared-video-miniature/video-filters.model.ts227 + src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-video-miniature/video-filters.model.ts227 + ~ 1 minute ~ 1 minuut - - src/app/shared/shared-instance/instance-features-table.component.ts74 + src/app/shared/shared-instance/instance-features-table.component.ts74 + ~ minutes ~ minuten - - src/app/shared/shared-instance/instance-features-table.component.ts76 + src/app/shared/shared-instance/instance-features-table.component.ts76 + of full HD videos aan full HD videos - - src/app/shared/shared-instance/instance-features-table.component.ts92 + src/app/shared/shared-instance/instance-features-table.component.ts92 + of HD videos aan HD videos - - src/app/shared/shared-instance/instance-features-table.component.ts93 + src/app/shared/shared-instance/instance-features-table.component.ts93 + of average quality videos aan gemiddelde kwaliteit videos - - src/app/shared/shared-instance/instance-features-table.component.ts94 + src/app/shared/shared-instance/instance-features-table.component.ts94 + (channel page) (kanaalpagina) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (accountpagina) - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Nadruk @@ -9314,10 +9892,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Images Afbeeldingen src/app/shared/shared-main/misc/help.component.ts85 - - Close searchClose search - - src/app/shared/shared-main/misc/simple-search-input.component.html19 + + + Close search + Close search + src/app/shared/shared-main/misc/simple-search-input.component.html19 + users banned. @@ -9333,34 +9913,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to unban ? Weet je zeker dat je opnieuw wil toelaten? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + User unbanned. Gebruiker terug toelaten. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + If you remove this user, you will not be able to create another with the same username! Als je deze gebruiker verwijdert, is het niet meer mogelijk om een andere te maken met dezelfde gebruikersnaam! - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + User deleted. Gebruiker verwijderd. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts93 + User email set as verified Gebruiker e-mail op geverifieerd ingesteld - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts105 + Account muted. Account gedempt. - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts117 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + Instance muted. Exemplaar van PeerTube gedempt. @@ -9372,19 +9952,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account muted by the instance. Account gedempt door exemplaar van PeerTube. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts446src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts446 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts173 + Mute server Server dempen - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + Server muted by the instance. Server gedempt door exemplaar van PeerTube. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts458 + Add a message to communicate with the reporter Een bericht toevoegen om met de aangever te communiceren @@ -9398,158 +9978,158 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. Account niet meer gedempt door exemplaar van PeerTube. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts187 + Instance muted by the instance. Exemplaar van PeerTube gedempt door dit exemplaar. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts201 + Instance unmuted by the instance. Exemplaar van PeerTube niet meer gedempt door dit exemplaar. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts215 + Are you sure you want to remove all the comments of this account? Ben je zeker dat je alle reacties van deze account wil verwijderen? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts226 + Delete account comments Account-commentaren verwijderen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 + Will remove comments of this account (may take several minutes). Reacties van deze account verwijderen (kan verscheidene minuten duren). - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 + Edit user Gebruiker bewerken - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 + Change quota, role, and more. Quota, rollen en meer wijzigen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts262 + Delete user Gebruiker verwijderen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 + Unban user Gebruiker opnieuw toelaten - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 + Allow the user to login and create videos/comments again De gebruiker opnieuw toelaten aan te melden, video's aan te maken en te reageren - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts278 + Mute this account Demp dit account - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + Hide any content from that user from you. Verberg alle inhoud van die gebruiker voor jou. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + Unmute this account Deze account niet meer dempen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + Show back content from that user for you. Oude inhoud van gebruiker voor jou tonen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + Mute the instance Het exemplaar van PeerTube dempen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + Hide any content from that instance for you. Alle inhoud uit dat exemplaar van PeerTube voor jou verbergen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + Unmute the instance Exemplaar van PeerTube niet meer dempen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts313 + Show back content from that instance for you. Oude inhoud uit dat exemplaar van PeerTube tonen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts314 + Remove comments from your videos Reacties op je video's verwijderen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts319 + Remove comments made by this account on your videos. Verwijder reacties van dit account op je video's. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + Mute this account by your instance Deze account door jouw exemplaar van PeerTube laten dempen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts331 + Hide any content from that user from you, your instance and its users. Alle inhoud van gebruiker verbergen voor u, uw exemplaar van PeerTube en zijn gebruikers. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts332 + Unmute this account by your instance Deze account niet meer dempen in jouw exemplaar van PeerTube - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts337 + Show this user's content to the users of this instance again. De inhoud van deze gebruiker opnieuw zichtbaar maken voor de gebruikers van dit exemplaar van PeerTube. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts338 + Mute the instance by your instance Exemplaar dempen in jouw exemplaar van PeerTube - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts349 + Hide any content from that instance from you, your instance and its users. Alle inhoud van exemplaar van PeerTube verbergen voor u, uw exemplaar van PeerTube en zijn gebruikers. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + Unmute the instance by your instance Exemplaar van PeerTube niet meer dempen op jouw exemplaar - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts355 + Show back content from that instance for you, your instance and its users. Inhoud van dat exemplaar van PeerTube opnieuw zichtbaar maken voor jou, je exemplaar van PeerTube en zijn gebruikers. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + Remove comments from your instance Reacties van je exemplaar van PeerTube verwijderen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts366 + Remove comments made by this account from your instance. Opmerkingen van deze gebruiker uit je exemplaar van PeerTube verwijderen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts367 + Violent or repulsive Gewelddadig of weerzinwekkend @@ -9578,64 +10158,64 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes. Bevat marketing, spam, opzettelijk misleidend nieuws of andere misleidende voorproefjes/tekst/tags. Alsjeblieft gereputeerde bronnen voorzien voor het melden van beetnemerijen. - - src/app/shared/shared-moderation/abuse.service.ts151 + src/app/shared/shared-moderation/abuse.service.ts151 + Privacy breach or doxxing Privacy-inbreuk of doxing - - src/app/shared/shared-moderation/abuse.service.ts155 + src/app/shared/shared-moderation/abuse.service.ts155 + Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details). Bevat persoonlijke informatie die zou kunnen gebruikt worden om iemand te kunnen schaduwen, identificeren, contacteren of je als die persoon voor te doen (bijvoorbeeld naam, adres, telefoonnummer, email of kredietkaartgegevens). - - src/app/shared/shared-moderation/abuse.service.ts157 + src/app/shared/shared-moderation/abuse.service.ts157 + Infringes your copyright wrt. the regional laws with which the server must comply. Vormt een inbreuk op je copyright, gebaseerd op de wetten die de server moet naleven. - - src/app/shared/shared-moderation/abuse.service.ts162 + src/app/shared/shared-moderation/abuse.service.ts162 + Breaks server rules Niet in overeenstemming met de serverregels - - src/app/shared/shared-moderation/abuse.service.ts166 + src/app/shared/shared-moderation/abuse.service.ts166 + Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server. Gelijk wat hierboven niet vermeld werd dat niet in overeenstemming is met de dienstvoorwaarden, gedragscode of algemene regels op de server. - - src/app/shared/shared-moderation/abuse.service.ts168 + src/app/shared/shared-moderation/abuse.service.ts168 + The above can only be seen in thumbnails. Het bovenstaande is enkel te zien in voorproefjes. - - src/app/shared/shared-moderation/abuse.service.ts177 + src/app/shared/shared-moderation/abuse.service.ts177 + Captions Onderschriften - - - src/app/shared/shared-abuse-list/abuse-details.component.ts26src/app/shared/shared-moderation/abuse.service.ts178 + src/app/shared/shared-abuse-list/abuse-details.component.ts26 + src/app/shared/shared-moderation/abuse.service.ts178 + The above can only be seen in captions (please describe which). Het bovenstaande is enkel te zien in onderschriften (graag aangeven welke). - - src/app/shared/shared-moderation/abuse.service.ts182 + src/app/shared/shared-moderation/abuse.service.ts182 + Too many attempts, please try again after minutes. Te veel pogingen. Probeer alstublieft opnieuw na minuten. - - src/app/core/rest/rest-extractor.service.ts70 + src/app/core/rest/rest-extractor.service.ts70 + Too many attempts, please try again later. Te vaak geprobeerd, probeer alstublieft later. - - src/app/core/rest/rest-extractor.service.ts72 + src/app/core/rest/rest-extractor.service.ts72 + Server error. Please retry later. Serverfout. Probeer later alstublieft weer. - - src/app/core/rest/rest-extractor.service.ts75 + src/app/core/rest/rest-extractor.service.ts75 + Subscribed to all current channels of . You will be notified of all their new videos. Geabonneerd op alle huidige kanalen van . U krijgt meldingen van al zijn of haar nieuwe video's. @@ -9685,9 +10265,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Beheerder - - src/app/core/users/user.service.ts418 - Search videos, playlists, channels…Search videos, playlists, channels… + src/app/core/users/user.service.ts418 + + + Search videos, playlists, channels… + Search videos, playlists, channels… src/app/header/search-typeahead.component.html 3 @@ -9698,101 +10280,101 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video verwijderd van - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts306 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + Video added in at timestamps Video toegevoegd in op tijdstempels - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts374 + Video added in Video toegevoegd in - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts375 + Timestamps updated Tijdstempels bijgewerkt - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts274 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + Starts at Begint bij - - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Stops at Eindigt bij - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + and stops at en eindigt bij - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Delete video Video verwijderen - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + Actions for the comment Acties voor de reactie - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 + Delete comment Reactie verwijderen - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + Do you really want to delete this comment? Wil je deze reactie echt verwijderen? - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 + Comment deleted. Reactie verwijderd. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 + Encoder Encoder - - src/app/shared/shared-video-miniature/video-download.component.ts213 + src/app/shared/shared-video-miniature/video-download.component.ts213 + Format name Formaatnaam - - src/app/shared/shared-video-miniature/video-download.component.ts214 + src/app/shared/shared-video-miniature/video-download.component.ts214 + Size Grootte - - src/app/shared/shared-video-miniature/video-download.component.ts215 + src/app/shared/shared-video-miniature/video-download.component.ts215 + Bitrate Bitrate - - - src/app/shared/shared-video-miniature/video-download.component.ts217src/app/shared/shared-video-miniature/video-download.component.ts240 + src/app/shared/shared-video-miniature/video-download.component.ts217 + src/app/shared/shared-video-miniature/video-download.component.ts240 + Codec Codec - - src/app/shared/shared-video-miniature/video-download.component.ts237 + src/app/shared/shared-video-miniature/video-download.component.ts237 + Copied Gekopieerd - - - src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts197 + src/app/shared/shared-forms/input-toggle-hidden.component.ts47 + src/app/shared/shared-video-miniature/video-download.component.ts197 + Copy Kopieren @@ -9802,31 +10384,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video reported. Video gerapporteerd. - - src/app/shared/shared-moderation/report-modals/video-report.component.ts113 + src/app/shared/shared-moderation/report-modals/video-report.component.ts113 + Do you really want to delete this video? Weet je zeker dat je de video wil verwijderen? - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/shared/shared-abuse-list/abuse-list-table.component.ts387src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts387 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + Video deleted. Video verwijderd. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts98src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts98 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 + Actions for the reporter Acties voor de aangever - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + Mute reporter Reporter dempen - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts328 + This video will be duplicated by your instance. Je exemplaar van PeerTube zal deze video dupliceren. @@ -9840,18 +10422,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display live information Informatie live-uitzending tonen - - - src/app/+my-library/my-videos/my-videos.component.ts174src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + src/app/+my-library/my-videos/my-videos.component.ts174 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + Update Bijwerken - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts176src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts176 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + Block Blokkering @@ -9860,20 +10442,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Save to playlist Opslaan in afspeellijst - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + You need to be <a href="/login">logged in</a> to rate this video. Je moet <a href="/login">laangemeld</a> zijn om deze video te beoordelen. - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + Mirror Spiegelen src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302 - - SubtitlesSubtitles + + + Subtitles + Subtitles src/app/shared/shared-video-miniature/video-download.component.html 9 @@ -9882,27 +10466,30 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Report Aangeven - - src/app/shared/shared-abuse-list/abuse-details.component.html55src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314 + src/app/shared/shared-abuse-list/abuse-details.component.html55 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314 + Remove Verwijderen - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + Remove & re-draft Verwijderen & opnieuw klad - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 - {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}}{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + + + {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} + {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} + src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + Mute account Account dempen - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts304src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts304 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + Open video actions Open video actions @@ -9918,33 +10505,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mute server account Server-account dempen - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + Report Rapporteer - - src/app/shared/shared-abuse-list/abuse-details.component.html55 + src/app/shared/shared-abuse-list/abuse-details.component.html55 + Reported part Aangegeven gedeelte - - src/app/shared/shared-abuse-list/abuse-details.component.html73 + src/app/shared/shared-abuse-list/abuse-details.component.html73 + Note Noteren - - src/app/shared/shared-abuse-list/abuse-details.component.html80 + src/app/shared/shared-abuse-list/abuse-details.component.html80 + The video was deleted De video is verwijderd - - src/app/shared/shared-abuse-list/abuse-details.component.html89 + src/app/shared/shared-abuse-list/abuse-details.component.html89 + Comment: Reactie: - - src/app/shared/shared-abuse-list/abuse-details.component.html95 + src/app/shared/shared-abuse-list/abuse-details.component.html95 + Messages with the reporter Berichten met de aangever @@ -9968,35 +10555,39 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Published Gepubliceerd - - src/app/shared/shared-video-miniature/video-miniature.component.ts158 + src/app/shared/shared-video-miniature/video-miniature.component.ts158 + Publication scheduled on Publicatie gepland op - - src/app/shared/shared-video-miniature/video-miniature.component.ts163 + src/app/shared/shared-video-miniature/video-miniature.component.ts163 + Waiting transcoding Wachten op transcoding - - src/app/shared/shared-video-miniature/video-miniature.component.ts167 + src/app/shared/shared-video-miniature/video-miniature.component.ts167 + To transcode Om te transcoden - - src/app/shared/shared-video-miniature/video-miniature.component.ts171 + src/app/shared/shared-video-miniature/video-miniature.component.ts171 + To import Om te importeren - - src/app/shared/shared-video-miniature/video-miniature.component.ts175 - Subscribe to RSS feed ""Subscribe to RSS feed "" + src/app/shared/shared-video-miniature/video-miniature.component.ts175 + + + Subscribe to RSS feed "" + Subscribe to RSS feed "" src/app/shared/shared-video-miniature/videos-list.component.html 8 - - + + + + src/app/shared/shared-video-miniature/videos-selection.component.html 1 @@ -10020,241 +10611,237 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Only I can see this video Ik kan deze video alleen zien - - src/app/shared/shared-main/video/video.service.ts325 + src/app/shared/shared-main/video/video.service.ts325 + Only shareable via a private link Enkel deelbaar via een privé-verwijzing - - src/app/shared/shared-main/video/video.service.ts326 + src/app/shared/shared-main/video/video.service.ts326 + Anyone can see this video Iedereen kan deze video zien - - src/app/shared/shared-main/video/video.service.ts327 + src/app/shared/shared-main/video/video.service.ts327 + Only users of this instance can see this video Enkel gebruikers van dit exemplaar van PeerTube kunnen deze video zien - - src/app/shared/shared-main/video/video.service.ts328 + src/app/shared/shared-main/video/video.service.ts328 + Close Sluiten - - - node_modules/@ng-bootstrap/src/alert/alert.ts58 + node_modules/@ng-bootstrap/src/alert/alert.ts58 + Slide of Dia van - Currently selected slide number read by screen reader - node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + node_modules/@ng-bootstrap/src/carousel/carousel.ts114 + Previous Vorige - - node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + node_modules/@ng-bootstrap/src/carousel/carousel.ts132 + Next Volgende - - node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + node_modules/@ng-bootstrap/src/carousel/carousel.ts147 + Previous month Vorige maand - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + Next month Volgende maand - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 + Select month Maand selecteren - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 + Select year Jaar selecteren - - - node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59 + node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 + «« «« - - node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + node_modules/@ng-bootstrap/src/pagination/pagination.ts182 + « « - - node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + node_modules/@ng-bootstrap/src/pagination/pagination.ts186 + » » - - node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + node_modules/@ng-bootstrap/src/pagination/pagination.ts194 + »» »» - - node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + node_modules/@ng-bootstrap/src/pagination/pagination.ts201 + First Eerste - - node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + node_modules/@ng-bootstrap/src/pagination/pagination.ts208 + Previous Vorige - - node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + node_modules/@ng-bootstrap/src/pagination/pagination.ts215 + Next Volgende - - node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + node_modules/@ng-bootstrap/src/pagination/pagination.ts226 + Last Laatste - - node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + node_modules/@ng-bootstrap/src/pagination/pagination.ts232 + - - node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + node_modules/@ng-bootstrap/src/progressbar/progressbar.ts32 + HH UU - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts40 + Hours Uren - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46 + MM MM - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts51 + Minutes Minuten - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts58 + Increment hours Uren vermeerderen - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts63 + Decrement hours Uren verminderen - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts69 + Increment minutes Minuten vermeerderen - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts76 + Decrement minutes Minuten verminderen - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts82 + SS SS - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts87 + Seconds Seconden - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts92 + Increment seconds Seconds vermeerderen - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts100 + Decrement seconds Seconden verminderen - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts106 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts123 + - - node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + node_modules/@ng-bootstrap/src/timepicker/timepicker.ts115 + Close Sluiten - - node_modules/@ng-bootstrap/src/toast/toast.ts78 + node_modules/@ng-bootstrap/src/toast/toast.ts78 + Video to import updated. Video naar import bijgewerkt. - - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts142 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + Your video was uploaded to your account and is private. Jouw video is geupload naar jouw account en is privé. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Maar geassocieerde data(tags, beschrijving...) zullen verloren raken, weet je zeker dat je deze pagina wilt verlaten? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Jouw video is nog niet geupload, weet je zeker dat je deze pagina wilt verlaten? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Uploaden - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload uploaden - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video gepubliceerd. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Je hebt niet-opgeslagen wijzigingen! Als je vertrekt, gaan je wijzigingen verloren. - - src/app/+videos/+video-edit/video-update.component.ts94 + src/app/+videos/+video-edit/video-update.component.ts94 + Video updated. Video geupdate. - - src/app/+videos/+video-edit/video-update.component.ts158 + src/app/+videos/+video-edit/video-update.component.ts158 + Report comment Reactie aangeven @@ -10263,24 +10850,26 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Stop autoplaying next video Automatisch afspelen volgende video stoppen - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + Autoplay next video Automatisch volgende video afspelen - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts222 + Stop looping playlist videos Stoppen met In lus afspelen van video's uit afspeellijst - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + Loop playlist videos Video's uit afspeellijst in lus afspelen - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 - Placeholder imagePlaceholder image + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts228 + + + Placeholder image + Placeholder image src/app/+videos/+video-watch/video-watch.component.html 11 @@ -10289,129 +10878,126 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? Deze video is niet beschikbaar op dit exemplaar van PeerTube. Wil je doorverwezen worden naar het originele exemplaar <a href=""></a>? - - src/app/+videos/+video-watch/video-watch.component.ts296 + src/app/+videos/+video-watch/video-watch.component.ts296 + Redirection Doorverwijzing - - src/app/+videos/+video-watch/video-watch.component.ts297 + src/app/+videos/+video-watch/video-watch.component.ts297 + This video contains mature or explicit content. Are you sure you want to watch it? Deze video bevat volwassen of expliciete inhoud. Weet je zeker dat je hem wilt kijken? - - src/app/+videos/+video-watch/video-watch.component.ts343 + src/app/+videos/+video-watch/video-watch.component.ts343 + Mature or explicit content Volwassen of expliciete content - - src/app/+videos/+video-watch/video-watch.component.ts344 + src/app/+videos/+video-watch/video-watch.component.ts344 + Up Next Volgende - - src/app/+videos/+video-watch/video-watch.component.ts415 + src/app/+videos/+video-watch/video-watch.component.ts415 + Cancel Annuleren - - src/app/+videos/+video-watch/video-watch.component.ts646 + src/app/+videos/+video-watch/video-watch.component.ts646 + Autoplay is suspended Automatisch afspelen is opgeschort - - src/app/+videos/+video-watch/video-watch.component.ts417 + src/app/+videos/+video-watch/video-watch.component.ts417 + Enter/exit fullscreen (requires player focus) Volledig scherm ingaan/uitgaan (vereist focus op afspeler) - - src/app/+videos/+video-watch/video-watch.component.ts688 + src/app/+videos/+video-watch/video-watch.component.ts688 + Play/Pause the video (requires player focus) De video afspelen/pauseren (vereist focus op de afspeler) - - src/app/+videos/+video-watch/video-watch.component.ts689 + src/app/+videos/+video-watch/video-watch.component.ts689 + Mute/unmute the video (requires player focus) De video dempen of niet meer dempen (vereist focus op de speler) - - src/app/+videos/+video-watch/video-watch.component.ts690 + src/app/+videos/+video-watch/video-watch.component.ts690 + Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) Naar een percentage van de video springen: 0 is 0% and 9 is 90% (vereist focus op de speler) - - src/app/+videos/+video-watch/video-watch.component.ts692 + src/app/+videos/+video-watch/video-watch.component.ts692 + Increase the volume (requires player focus) Het volume verhogen (vereist focus op de speler) - - src/app/+videos/+video-watch/video-watch.component.ts694 + src/app/+videos/+video-watch/video-watch.component.ts694 + Decrease the volume (requires player focus) Het volume verlagen (vereist focus op de speler) - - src/app/+videos/+video-watch/video-watch.component.ts695 + src/app/+videos/+video-watch/video-watch.component.ts695 + Seek the video forward (requires player focus) Vooruitspringen in de video (vereist focus op de speler) - - src/app/+videos/+video-watch/video-watch.component.ts697 + src/app/+videos/+video-watch/video-watch.component.ts697 + Seek the video backward (requires player focus) Achteruit springen in de video (vereist focus op de speler) - - src/app/+videos/+video-watch/video-watch.component.ts698 + src/app/+videos/+video-watch/video-watch.component.ts698 + Increase playback rate (requires player focus) Afspelen versnellen (vereist focus op de speler) - - src/app/+videos/+video-watch/video-watch.component.ts700 + src/app/+videos/+video-watch/video-watch.component.ts700 + Decrease playback rate (requires player focus) Afspelen vertragen (vereist focus op de speler) - - src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+videos/+video-watch/video-watch.component.ts701 + Navigate in the video frame by frame (requires player focus) Frame per frame door de video navigeren (vereist focus op de speler) - - src/app/+videos/+video-watch/video-watch.component.ts703 + src/app/+videos/+video-watch/video-watch.component.ts703 + Like the video Like de video - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + Dislike the video Dislike de video - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + When active, the next video is automatically played after the current one. De volgende video speelt automatisch na de huidige als die actief is. - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + Recently added Recent toegevoegd - - src/app/+videos/video-list/videos-list-common-page.component.ts195src/app/core/menu/menu.service.ts137 - - + src/app/+videos/video-list/videos-list-common-page.component.ts195 + src/app/core/menu/menu.service.ts137 + Videos from your subscriptions Video's uit je abonnementen - - src/app/+videos/video-list/video-user-subscriptions.component.ts30 - - + src/app/+videos/video-list/video-user-subscriptions.component.ts30 + Subscriptions Abonnementen - - - - src/app/+my-library/my-library.component.ts66src/app/+videos/video-list/video-user-subscriptions.component.ts46src/app/+videos/videos-routing.module.ts59 + src/app/+my-library/my-library.component.ts66 + src/app/+videos/video-list/video-user-subscriptions.component.ts46 + src/app/+videos/videos-routing.module.ts59 + History Geschiedenis @@ -10428,10 +11014,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos Lokale video's - - - src/app/+videos/video-list/videos-list-common-page.component.ts189src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 - Only videos uploaded on this instance are displayedOnly videos uploaded on this instance are displayed + src/app/+videos/video-list/videos-list-common-page.component.ts189 + src/app/core/menu/menu.service.ts142 + src/app/core/menu/menu.service.ts143 + + + Only videos uploaded on this instance are displayed + Only videos uploaded on this instance are displayed src/app/+videos/video-list/videos-list-common-page.component.ts 190 @@ -10440,28 +11029,29 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Discover videos Video's ontdekken - - src/app/+videos/videos-routing.module.ts19src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts19 + src/app/core/menu/menu.service.ts124 + Trending videos Populaire videos - - src/app/core/menu/menu.service.ts130 + src/app/core/menu/menu.service.ts130 + Recently added videos Recent toegevoegde video's - - src/app/core/menu/menu.service.ts136 + src/app/core/menu/menu.service.ts136 + Upload a video Een video uploaden - - src/app/app-routing.module.ts91 + src/app/app-routing.module.ts91 + Edit a video Een video bewerken - - src/app/app-routing.module.ts100 + src/app/app-routing.module.ts100 + diff --git a/client/src/locale/angular.nn.xlf b/client/src/locale/angular.nn.xlf index dfae18907..ec8a34598 100644 --- a/client/src/locale/angular.nn.xlf +++ b/client/src/locale/angular.nn.xlf @@ -189,7 +189,7 @@ Increment hours - + Gå fram timar node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts 62,63 @@ -197,7 +197,7 @@ Decrement hours - + Gå tilbake timar node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts 67,68 @@ -205,7 +205,7 @@ Increment minutes - + Gå fram minutt node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts 75,76 @@ -213,7 +213,7 @@ Decrement minutes - + Gå tilbake minutt node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts 82 @@ -237,7 +237,7 @@ Increment seconds - + Gå fram sekund node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts 98,99 @@ -245,7 +245,7 @@ Decrement seconds - + Gå tilbake sekund node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts 105,109 @@ -269,7 +269,7 @@ Close - + Lukk node_modules/@ng-bootstrap/ng-bootstrap/src/toast/toast.ts 76,85 @@ -277,7 +277,7 @@ Follows - + Fylgjer src/app/+about/about-follows/about-follows.component.html 2 @@ -293,7 +293,7 @@ This instance does not have instances followers. - + Ingen nettstader fylgjer denne nettstaden. src/app/+about/about-follows/about-follows.component.html 6 @@ -301,7 +301,7 @@ Show full list - + Vis heile lista src/app/+about/about-follows/about-follows.component.html 12 @@ -321,7 +321,7 @@ This instance is not following any other. - + Denne nettstaden fylgjer ingen andre. src/app/+about/about-follows/about-follows.component.html 18 @@ -337,7 +337,7 @@ Contact administrator - + Kontakt styraren src/app/+about/about-instance/about-instance.component.html 7 diff --git a/client/src/locale/angular.oc.xlf b/client/src/locale/angular.oc.xlf index dbc492270..e9abf5c4d 100644 --- a/client/src/locale/angular.oc.xlf +++ b/client/src/locale/angular.oc.xlf @@ -323,7 +323,7 @@ - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. @@ -397,12 +397,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles subtitles @@ -415,7 +415,7 @@ - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Telecargar @@ -2645,7 +2645,7 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -11149,34 +11149,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. La vidèo es estada enviada a vòstre compte e es privada. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Mas las donadas associadas (etiquetas, descripcion...) seràn perdudas, volètz vertadièrament quitar la pagina ? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? La vidèo es pas encara complètament enviada, volètz vertadièrament quitar la pagina ? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Enviar - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Vidèo publicada. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Avètz de modificacions pas enregistradas. Se partissètz vòstras modificacions seràn perdudas. diff --git a/client/src/locale/angular.pl-PL.xlf b/client/src/locale/angular.pl-PL.xlf index b06dd0396..36a4dfa14 100644 --- a/client/src/locale/angular.pl-PL.xlf +++ b/client/src/locale/angular.pl-PL.xlf @@ -273,7 +273,7 @@ film - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Następujący odnośnik zawiera prywatny token i nie należy się nim z nikim dzielić. @@ -344,12 +344,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Twoja powierzchnia na filmy została przekroczona przez ten film (rozmiar filmu: , wykorzystano: , powierzchnia: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Twoja dzienna powierzchnia na filmy została przekroczona przez ten film (rozmiar filmu: , wykorzystano: , powierzchnia ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles napisy @@ -362,7 +362,7 @@ - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Pobierz @@ -2535,7 +2535,7 @@ The link will expire within 1 hour. Upload on hold Oczekujące wrzucenie - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Niestety, możliwość wysyłania jest wyłączona dla Twojego konta. Jeżeli chcesz dodać filmy, administrator musi odblokować Twój przydział powierzchni. @@ -10724,34 +10724,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Film został wrzucony na twoje konto i jest prywatny. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Powiązane dane (tagi, opis…) zostaną utracone, czy na pewno chcesz opuścić tą stronę? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Twój film nie został jeszcze wysłany, czy na pewno chcesz opuścić tą stronę? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Wyślij - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Wrzuć - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Opublikowano film. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Masz niezapisane zmiany! Jeżeli zamkniesz to okno, twoje zmiany zostaną stracone. diff --git a/client/src/locale/angular.pt-BR.xlf b/client/src/locale/angular.pt-BR.xlf index 4fd4216d2..a3e242273 100644 --- a/client/src/locale/angular.pt-BR.xlf +++ b/client/src/locale/angular.pt-BR.xlf @@ -285,7 +285,7 @@ vídeo - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Os seguintes links contêm um token privado e não deverá ser compartilhado com ninguém. @@ -356,12 +356,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Sua cota de vídeo foi excedida com este vídeo (tamanho do vídeo: , usado: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Sua cota diária de vídeo foi excedida com este vídeo (tamanho do vídeo: , usado: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles subtítulos @@ -374,7 +374,7 @@ - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Download @@ -2609,7 +2609,7 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -11061,34 +11061,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Seu vídeo foi enviado para sua conta e é privado. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Mas dados associados (tags, descrição…) serão perdidas, tem certeza que deseja sair dessa página? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Seu vídeo ainda não foi atualizado, você tem certeza que deseja sair dessa página? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Subir - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Vídeo publicado. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Você tem modificações não salvas! Se sair desta páginas, as modificações serão perdidas. diff --git a/client/src/locale/angular.pt-PT.xlf b/client/src/locale/angular.pt-PT.xlf index f8f939d14..c02975266 100644 --- a/client/src/locale/angular.pt-PT.xlf +++ b/client/src/locale/angular.pt-PT.xlf @@ -385,7 +385,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -447,10 +447,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitlessubtitles src/app/shared/shared-video-miniature/video-download.component.ts55 @@ -460,7 +460,7 @@ Cancelar - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Transferir @@ -2424,7 +2424,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10242,20 +10242,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Seu vídeo foi enviado para sua conta e é privado. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Mas dados associados (tags, descrição…) serão perdidas, tem certeza que deseja sair dessa página? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Seu vídeo ainda não foi atualizado, você tem certeza que deseja sair dessa página? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 UploadUpload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload @@ -10264,13 +10264,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Vídeo publicado. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.ru-RU.xlf b/client/src/locale/angular.ru-RU.xlf index 6747bd3eb..da2561b60 100644 --- a/client/src/locale/angular.ru-RU.xlf +++ b/client/src/locale/angular.ru-RU.xlf @@ -253,9 +253,9 @@ video видео - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Следующая ссылка содержит личный токен и никому не может быть передана. @@ -325,13 +325,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Ваша квота для этого видео превышена (размер видео: , использовано: , квота: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Ваша дневная квота для этого видео превышена (размер видео: , использовано: , квота: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles субтитры @@ -342,9 +342,9 @@ Отмена - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Скачать @@ -906,10 +906,10 @@ User Пользователь - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Заблокировать @@ -2027,14 +2027,14 @@ The link will expire within 1 hour. extensions расширения - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. Это изображение слишком большое. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Загрузите новый баннер @@ -2059,13 +2059,13 @@ The link will expire within 1 hour. Account avatar Аватар аккаунта - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Аватар канала - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags совместим с Markdown который также поддерживает пользовательские HTML теги PeerTube @@ -2514,8 +2514,8 @@ The link will expire within 1 hour. Upload on hold Загрузка приостановлена - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Извините, загрузка файлов недоступна для вашей учётной записи. Если вы хотите добавлять видео, свяжитесь с администратором. @@ -3306,9 +3306,8 @@ The link will expire within 1 hour. Unfollow Отписаться - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Открыть экземпляр в новой вкладке @@ -4837,8 +4836,8 @@ The link will expire within 1 hour. Administrator Администратор - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Электронная почта администратора @@ -5402,8 +5401,6 @@ color: red; 66 - - Scope: Область просмотра: @@ -5412,7 +5409,6 @@ color: red; 81 - Local videos (this instance) Локальные видео (этот экземпляр) @@ -5421,7 +5417,6 @@ color: red; 85 - Federated videos (this instance + followed instances) Видео федерации (этот экземпляр + отслеживаемые экземпляры) @@ -5446,7 +5441,6 @@ color: red; 99 - Categories: Категории: @@ -5798,7 +5792,7 @@ color: red; Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. - Некоторые из ваших каналов настроены не полностью. Сделайте их более приветливыми и сообщите о том, что вы публикуете, добавив баннер, an аватар и описание. + Некоторые из ваших каналов настроены не полностью. Сделайте их более приветливыми и сообщите о том, что вы публикуете, добавив баннер, аватар и описание. src/app/shared/shared-main/misc/channels-setup-message.component.html 5 @@ -6681,8 +6675,8 @@ channel with the same name ()! Remove this filter Удалить этот фильтр - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Sensitive content Конфиденциальный контент @@ -8370,9 +8364,9 @@ channel with the same name ()! max size максимальный размер - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Развернуть редактор @@ -9804,16 +9798,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (channel page) (страница канала) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (страница аккаунта) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Подчёркивание @@ -10213,8 +10207,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Модератор - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Искать видео, плейлисты, каналы… @@ -10760,33 +10754,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Ваше видео было загружено на ваш аккаунт и является приватным. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Но связанные данные (теги, описание...) будут потеряны, вы уверены, что хотите покинуть эту страницу? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Ваше видео еще не загружено, вы уверены, что хотите покинуть эту страницу? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Загрузить - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Загрузить - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Видео опубликовано. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. У вас есть несохраненные изменения! Если вы уйдете, ваши изменения будут потеряны. diff --git a/client/src/locale/angular.sk-SK.xlf b/client/src/locale/angular.sk-SK.xlf index d709684b5..f15ca7a3d 100644 --- a/client/src/locale/angular.sk-SK.xlf +++ b/client/src/locale/angular.sk-SK.xlf @@ -393,7 +393,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -455,10 +455,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitlessubtitles src/app/shared/shared-video-miniature/video-download.component.ts55 @@ -470,7 +470,7 @@ Cancel - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Download @@ -2484,7 +2484,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10361,20 +10361,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 UploadUpload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload @@ -10383,13 +10383,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video published. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.sl-SI.xlf b/client/src/locale/angular.sl-SI.xlf index 5b51f2dfa..a4feea015 100644 --- a/client/src/locale/angular.sl-SI.xlf +++ b/client/src/locale/angular.sl-SI.xlf @@ -367,7 +367,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. @@ -438,10 +438,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles subtitles @@ -453,7 +453,7 @@ Prekliči - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Download @@ -2612,7 +2612,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -11057,35 +11057,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video published. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.sv-SE.xlf b/client/src/locale/angular.sv-SE.xlf index b553563a1..cb1cd7726 100644 --- a/client/src/locale/angular.sv-SE.xlf +++ b/client/src/locale/angular.sv-SE.xlf @@ -5,13 +5,13 @@ Close the left menu Stäng vänstermenyn - - src/app/app.component.ts133 + src/app/app.component.ts133 + Open the left menu Öppna vänstermenyn - - src/app/app.component.ts135 + src/app/app.component.ts135 + You don't have notifications. Du har inga notifikationer. @@ -255,9 +255,9 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Följande länk innehåller en personlig nyckel och bör ej delas med någon annan. @@ -329,13 +329,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Din videokvot kommer överskridas av den här videon (videostorlek: , använt: , kvot: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Din dagliga videokvot kommer överskridas av den här videon (videostorlek: , använt: , kvot:) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles undertexter @@ -346,9 +346,9 @@ Avbryt - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Ladda ner @@ -812,9 +812,9 @@ Local Lokalt - - - src/app/shared/shared-instance/instance-statistics.component.html4src/app/shared/shared-video-miniature/video-filters.model.ts125 + src/app/shared/shared-instance/instance-statistics.component.html4 + src/app/shared/shared-video-miniature/video-filters.model.ts125 + users användare @@ -914,10 +914,10 @@ User Användare - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Blockera @@ -1220,89 +1220,89 @@ The link will expire within 1 hour. Welcome to PeerTube, dear administrator! Välkommen till PeerTube, kära administratör! - - src/app/modal/admin-welcome-modal.component.html3 + src/app/modal/admin-welcome-modal.component.html3 + CLI documentation Kommandotolk dokumentation - - src/app/modal/admin-welcome-modal.component.html12 + src/app/modal/admin-welcome-modal.component.html12 + Upload or import videos, parse logs, prune storage directories, reset user password... Ladda upp eller importera videor, sök i loggfiler, beskär lagringskataloger, återställ användares lösenord … - - src/app/modal/admin-welcome-modal.component.html15 + src/app/modal/admin-welcome-modal.component.html15 + Administer documentation Administration dokumentation - - src/app/modal/admin-welcome-modal.component.html19 + src/app/modal/admin-welcome-modal.component.html19 + Managing users, following other instances, dealing with spammers... Hanterar användare, följer andra instanser, tar hand om skräppost … - - src/app/modal/admin-welcome-modal.component.html22 + src/app/modal/admin-welcome-modal.component.html22 + Use documentation Användning dokumentation - - src/app/modal/admin-welcome-modal.component.html26 + src/app/modal/admin-welcome-modal.component.html26 + Setup your account, managing video playlists, discover third-party applications... Skapa ditt konto, hantera spellistor, upptäck tredjepartsapplikationer … - - src/app/modal/admin-welcome-modal.component.html29 + src/app/modal/admin-welcome-modal.component.html29 + Useful links Användbara länkar - - src/app/modal/admin-welcome-modal.component.html39 + src/app/modal/admin-welcome-modal.component.html39 + Official PeerTube website (news, support, contribute...): https://joinpeertube.org PeerTubes officiella webbplats (nyheter, support, att bidra …): joinpeertube.org - - src/app/modal/admin-welcome-modal.component.html42 + src/app/modal/admin-welcome-modal.component.html42 + Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances Lägg till din instans i PeerTubes offentliga register: instances.joinpeertube.org - - src/app/modal/admin-welcome-modal.component.html45 + src/app/modal/admin-welcome-modal.component.html45 + It's time to configure your instance! Det är dags att konfigurera din instans! - - src/app/modal/admin-welcome-modal.component.html55 + src/app/modal/admin-welcome-modal.component.html55 + Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are. Att välja ett namn för instansen, författa en beskrivning, beskriva vem du är, varför du har startat instansen och hur länge du tänker underhålla den är mycket viktig information för att dina användare ska kunna skapa sig en bild av instansen. - - src/app/modal/admin-welcome-modal.component.html58 + src/app/modal/admin-welcome-modal.component.html58 + If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. Om du vill öppna för registreringar, vänligen välj dina modereringsregler och instansens användarvillkor, samt specificera kategorier och de språk dina moderatorer talar. På så vis hjälper du användare att registrera sig på rätt PeerTube-instans. - - src/app/modal/admin-welcome-modal.component.html64 + src/app/modal/admin-welcome-modal.component.html64 + Remind me later Påminn mig senare - - - src/app/modal/account-setup-warning-modal.component.html28src/app/modal/admin-welcome-modal.component.html74 + src/app/modal/account-setup-warning-modal.component.html28 + src/app/modal/admin-welcome-modal.component.html74 + Set up - Set up - - src/app/modal/account-setup-warning-modal.component.html35 + Konfigurera + src/app/modal/account-setup-warning-modal.component.html35 + Configure my instance Konfigurera min instans - - src/app/modal/admin-welcome-modal.component.html81 + src/app/modal/admin-welcome-modal.component.html81 + Configuration warning! Konfigurationsvarning! @@ -1625,29 +1625,31 @@ The link will expire within 1 hour. Welcome to , dear user! Välkommen till , kära användare! - - src/app/modal/account-setup-warning-modal.component.html3 + src/app/modal/account-setup-warning-modal.component.html3 + It's time to set up your account profile! Det är dags att skapa din kontoprofil! - - src/app/modal/account-setup-warning-modal.component.html10 + src/app/modal/account-setup-warning-modal.component.html10 + Help moderators and other users to know who you are by: Hjälp moderatorer och andra lära känna dig genom att: - - src/app/modal/account-setup-warning-modal.component.html12 + src/app/modal/account-setup-warning-modal.component.html12 + Uploading an avatar Ladda upp en profilbild - - src/app/modal/account-setup-warning-modal.component.html15 + src/app/modal/account-setup-warning-modal.component.html15 + Writing a description Skriv en beskrivning - - src/app/modal/account-setup-warning-modal.component.html16 - Don't show me this anymoreDon't show me this anymore + src/app/modal/account-setup-warning-modal.component.html16 + + + Don't show me this anymore + Visa inte mig detta igen src/app/modal/account-setup-warning-modal.component.html 23 @@ -1853,19 +1855,19 @@ The link will expire within 1 hour. Live videos Live videos - - - - - src/app/+search/search-filters.component.html29src/app/+search/search-filters.component.ts64src/app/shared/shared-video-miniature/video-filters-header.component.html104src/app/shared/shared-video-miniature/video-filters.model.ts158 + src/app/+search/search-filters.component.html29 + src/app/+search/search-filters.component.ts64 + src/app/shared/shared-video-miniature/video-filters-header.component.html104 + src/app/shared/shared-video-miniature/video-filters.model.ts158 + VOD videos VOD videos - - - - - src/app/+search/search-filters.component.html34src/app/+search/search-filters.component.ts60src/app/shared/shared-video-miniature/video-filters-header.component.html109src/app/shared/shared-video-miniature/video-filters.model.ts164 + src/app/+search/search-filters.component.html34 + src/app/+search/search-filters.component.ts60 + src/app/shared/shared-video-miniature/video-filters-header.component.html109 + src/app/shared/shared-video-miniature/video-filters.model.ts164 + Published date Publiceringsdatum @@ -2042,28 +2044,28 @@ The link will expire within 1 hour. extensions tillägg - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. Den här bilden är för stor. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner - Ladda upp ett nytt baner + Ladda upp en ny omslagsbild src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html9 src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html26 Change your banner - Ändra ditt baner + Ändra din omslagsbild src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html18 Remove banner - Ta bort baner + Ta bort omslagsbild src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html32 @@ -2074,13 +2076,13 @@ The link will expire within 1 hour. Account avatar Kontots profilbild - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Kanalens profilbild - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Markdown-kompatibel med stöd för anpassade PeerTube HTML-taggar @@ -2099,7 +2101,7 @@ The link will expire within 1 hour. Error in channel miniature component: - Error in channel miniature component: + Fel i komponenten för kanalminiatyr: src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts 57 @@ -2107,7 +2109,7 @@ The link will expire within 1 hour. Error in playlist miniature component: - Error in playlist miniature component: + Fel i komponenten för spellisteminiatyr: src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts 47 @@ -2115,7 +2117,7 @@ The link will expire within 1 hour. Error in video miniature component: - Error in video miniature component: + Fel i komponenten för videominiatyr: src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts 59 @@ -2123,7 +2125,7 @@ The link will expire within 1 hour. Error in videos list component: - Error in videos list component: + Fel i komponenten för videolistan: src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts 77 @@ -2533,8 +2535,8 @@ The link will expire within 1 hour. Upload on hold Uppladdning pausad - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Uppladdning är inte aktiverat från ditt konto. Om du vill lägga upp videor, måste en administratör låsa upp din videokvot. @@ -2550,7 +2552,7 @@ The link will expire within 1 hour. Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. - Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota. + Din dagliga videokvot räcker inte till. Om du vill lägga till fler videor måste du vänta 24 timmar eller be en administratör öka din kvot. src/app/+videos/+video-edit/video-add.component.ts 106 @@ -2558,7 +2560,7 @@ The link will expire within 1 hour. Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. - Your video quota is insufficient. If you want to add more videos, an admin must increase your quota. + Din videokvot räcker inte till. Om du vill lägga till fler videor måste en administratör öka din kvot. src/app/+videos/+video-edit/video-add.component.ts 108 @@ -2872,7 +2874,7 @@ The link will expire within 1 hour. Open the video on the origin instance - Open the video on the origin instance + Öppna videon på ursprungsinstansen src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html 14 @@ -2940,8 +2942,7 @@ The link will expire within 1 hour. The video is being moved to an external server, it may not work properly. - The video is being moved to an external server, it may not work properly. - + Videon håller på att flyttas till en extern server, vilket kan ge orsaka till problem. src/app/+videos/+video-watch/shared/information/video-alert.component.html 10,11 @@ -3323,9 +3324,8 @@ The link will expire within 1 hour. Unfollow Sluta följa - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Öppna instansen i en ny flik @@ -3707,7 +3707,7 @@ The link will expire within 1 hour. Follower - Follower + Följare src/app/+admin/follows/followers-list/followers-list.component.html 24 @@ -4110,7 +4110,7 @@ The link will expire within 1 hour. Videos with the most views during the last days - Videos with the most views during the last days + Videor med flest visningar under de senaste dagarna src/app/+videos/video-list/videos-list-common-page.component.ts 209 @@ -4858,8 +4858,8 @@ The link will expire within 1 hour. Administrator Administratör - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Administratörens e-postadress @@ -5345,7 +5345,7 @@ color: red; Update your settings - Update your settings + Uppdatera dina inställningar src/app/shared/shared-video-miniature/video-filters-header.component.html 3,7 @@ -5353,7 +5353,7 @@ color: red; More filters - More filters + Fler filter src/app/shared/shared-video-miniature/video-filters-header.component.html 20 @@ -5361,7 +5361,7 @@ color: red; Less filters - Less filters + Färre filter src/app/shared/shared-video-miniature/video-filters-header.component.html 21 @@ -5369,7 +5369,7 @@ color: red; Sort by "Recently Added" - Sort by "Recently Added" + Sortera efter ”Senast tillagt” src/app/shared/shared-video-miniature/video-filters-header.component.html 46 @@ -5377,7 +5377,7 @@ color: red; Sort by "Views" - Sort by "Views" + Sortera efter ”Visningar” src/app/shared/shared-video-miniature/video-filters-header.component.html 48 @@ -5385,7 +5385,7 @@ color: red; Sort by "Hot" - Sort by "Hot" + Sortera efter ”Populärt” src/app/shared/shared-video-miniature/video-filters-header.component.html 49 @@ -5393,7 +5393,7 @@ color: red; Sort by "Best" - Sort by "Best" + Sortera efter ”Bäst” src/app/shared/shared-video-miniature/video-filters-header.component.html 50 @@ -5401,7 +5401,7 @@ color: red; Sort by "Likes" - Sort by "Likes" + Sortera efter ”Gillningar” src/app/shared/shared-video-miniature/video-filters-header.component.html 51 @@ -5409,7 +5409,7 @@ color: red; Languages: - Languages: + Språk: src/app/shared/shared-video-miniature/video-filters-header.component.html 59 @@ -5417,35 +5417,31 @@ color: red; Sensitive content: - Sensitive content: + Känsligt innehåll: src/app/shared/shared-video-miniature/video-filters-header.component.html 66 - - Scope: - Scope: + Omfång: src/app/shared/shared-video-miniature/video-filters-header.component.html 81 - Local videos (this instance) - Local videos (this instance) + Lokala videor (den här instansen) src/app/shared/shared-video-miniature/video-filters-header.component.html 85 - Federated videos (this instance + followed instances) - Federated videos (this instance + followed instances) + Federerade videor (den här och följda instanser) src/app/shared/shared-video-miniature/video-filters-header.component.html 90 @@ -5453,7 +5449,7 @@ color: red; Type: - Type: + Typ: src/app/shared/shared-video-miniature/video-filters-header.component.html 95 @@ -5461,16 +5457,15 @@ color: red; VOD & Live videos - VOD & Live videos + Video on demand & direktsändningar src/app/shared/shared-video-miniature/video-filters-header.component.html 99 - Categories: - Categories: + Kategorier: src/app/shared/shared-video-miniature/video-filters-header.component.html 114 @@ -5478,7 +5473,7 @@ color: red; Moderation: - Moderation: + Moderering: src/app/shared/shared-video-miniature/video-filters-header.component.html 120 @@ -5711,7 +5706,7 @@ color: red; Banner image of your channel - Din kanals banerbild + Din kanals omslagsbild src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html 30 @@ -5819,7 +5814,7 @@ color: red; Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. - Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description. + Några av dina kanaler är inte fullt inställda. Gör dem välkomnande och mer tydliga genom att lägga till en omslagsbild, an profilbild och en beskrivning. src/app/shared/shared-main/misc/channels-setup-message.component.html 5 @@ -5827,7 +5822,7 @@ color: red; Set up my channels - Set up my channels + Ställ in mina kanaler src/app/shared/shared-main/misc/channels-setup-message.component.html 6 @@ -5931,8 +5926,10 @@ color: red; If you need help to use PeerTube, you can have a look at the documentation. Om du behöver hjälp att använda PeerTube, kan du ta en titt på dokumentationen. src/app/+signup/shared/signup-success.component.html14 - - To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + + + To help moderators and other users to know who you are, don't forget to set up your account profile by adding an avatar and a description. + För att hjälpa moderatorer och andra användare veta vem du är, kan du konfigurera ditt kontos profil genom att lägga till en profilbild och en beskrivning. src/app/+signup/shared/signup-success.component.html 18,19 @@ -6144,7 +6141,7 @@ channel with the same name ()! Please type the name of the video channel () to confirm - Please type the name of the video channel () to confirm + Skriv namnet på din videokanal () för att bekräfta src/app/+my-library/+my-video-channels/my-video-channels.component.ts 48 @@ -6248,7 +6245,7 @@ channel with the same name ()! Contact us - Contact us + Kontakta oss src/app/+about/about-instance/about-instance.component.html 7 @@ -6538,7 +6535,7 @@ channel with the same name ()! Contact the administrator(s) - Contact the administrator(s) + Kontakta administratörerna src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -6710,59 +6707,59 @@ channel with the same name ()! Remove this filter - Remove this filter - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Ta bort detta filter + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Sensitive content - Sensitive content - - src/app/shared/shared-video-miniature/video-filters.model.ts115 + Känsligt innehåll + src/app/shared/shared-video-miniature/video-filters.model.ts115 + Scope - Scope - - src/app/shared/shared-video-miniature/video-filters.model.ts122 + Omfång + src/app/shared/shared-video-miniature/video-filters.model.ts122 + Federated - Federated - - src/app/shared/shared-video-miniature/video-filters.model.ts124 + Federerad + src/app/shared/shared-video-miniature/video-filters.model.ts124 + Languages - Languages - - src/app/shared/shared-video-miniature/video-filters.model.ts132 + Språk + src/app/shared/shared-video-miniature/video-filters.model.ts132 + Categories - Categories - - src/app/shared/shared-video-miniature/video-filters.model.ts141 + Kategorier + src/app/shared/shared-video-miniature/video-filters.model.ts141 + All videos - All videos - - src/app/shared/shared-video-miniature/video-filters.model.ts150 + Alla videor + src/app/shared/shared-video-miniature/video-filters.model.ts150 + Blurred - Blurred - - src/app/shared/shared-video-miniature/video-filters.model.ts225 + Suddig + src/app/shared/shared-video-miniature/video-filters.model.ts225 + hidden - hidden - - src/app/shared/shared-video-miniature/video-filters.model.ts231 + dold + src/app/shared/shared-video-miniature/video-filters.model.ts231 + blurred - blurred - - src/app/shared/shared-video-miniature/video-filters.model.ts232 + suddig + src/app/shared/shared-video-miniature/video-filters.model.ts232 + displayed - displayed - - src/app/shared/shared-video-miniature/video-filters.model.ts234 + synlig + src/app/shared/shared-video-miniature/video-filters.model.ts234 + direct account followers Kontot har @@ -6849,7 +6846,7 @@ channel with the same name ()! Followers of your instance - Followers of your instance + Din instans följare src/app/+admin/follows/followers-list/followers-list.component.html 3 @@ -7007,7 +7004,7 @@ channel with the same name ()! Hosts entered are invalid. - Hosts entered are invalid. + Angivna värdar är ogiltiga. src/app/shared/form-validators/host-validators.ts 93 @@ -7015,7 +7012,7 @@ channel with the same name ()! Hosts entered contain duplicates. - Hosts entered contain duplicates. + Angivna värdar innehåller dubbletter. src/app/shared/form-validators/host-validators.ts 94 @@ -7199,7 +7196,7 @@ channel with the same name ()! Follow - Follow + Följ src/app/+admin/follows/following-list/follow-modal.component.html 3 @@ -7215,7 +7212,7 @@ channel with the same name ()! 1 host (without "http://"), account handle or channel handle per line - 1 host (without "http://"), account handle or channel handle per line + En värd (utan ”http://”), kontohantag eller kanalhandtag per rad src/app/+admin/follows/following-list/follow-modal.component.html 11 @@ -7236,7 +7233,7 @@ channel with the same name ()! Your instance subscriptions - Your instance subscriptions + Dina instansprenumerationer src/app/+admin/follows/following-list/following-list.component.html 3 @@ -7839,7 +7836,7 @@ channel with the same name ()! Created - Created + Skapad src/app/+admin/users/user-list/user-list.component.ts 115 @@ -7847,7 +7844,7 @@ channel with the same name ()! Daily quota - Daily quota + Dagskvot src/app/+admin/users/user-list/user-list.component.ts 120 @@ -7855,7 +7852,7 @@ channel with the same name ()! Last login - Last login + Senaste inloggning src/app/+admin/users/user-list/user-list.component.ts 122 @@ -8178,17 +8175,17 @@ channel with the same name ()! Banner changed. - Baneret har ändrats. + Omslagsbilden har ändrats. src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts141 banner - baner + omslagsbild src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 Banner deleted. - Baneret har raderats. + Omslagsbilden har raderats. src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 @@ -8345,7 +8342,7 @@ channel with the same name ()! Sort by - Sort by + Sortera efter src/app/+my-library/my-videos/my-videos.component.html 26 @@ -8404,9 +8401,9 @@ channel with the same name ()! max size största tillåtna storlek - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Maximera redigerare @@ -8455,38 +8452,38 @@ channel with the same name ()! Focus the search bar Markera sökrutan - - src/app/app.component.ts270 + src/app/app.component.ts270 + Toggle the left menu Växla vänstermenyn - - src/app/app.component.ts275 + src/app/app.component.ts275 + Go to the discover videos page Gå till upptäck videor-sidan - - src/app/app.component.ts280 + src/app/app.component.ts280 + Go to the trending videos page Gå till sidan med populära videor - - src/app/app.component.ts285 + src/app/app.component.ts285 + Go to the recently added videos page Gå till sidan med nyligen uppladdade videor - - src/app/app.component.ts290 + src/app/app.component.ts290 + Go to the local videos page Gå till sidan med lokala videor - - src/app/app.component.ts295 + src/app/app.component.ts295 + Go to the videos upload page Gå till sidan för videouppladdningar - - src/app/app.component.ts300 + src/app/app.component.ts300 + Go to my subscriptions Gå till mina prenumerationer @@ -8533,7 +8530,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular In my library - In my library + I mitt bibliotek src/app/core/menu/menu.service.ts 104 @@ -8607,41 +8604,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Today Idag - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts123 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts123 + Yesterday Igår - - src/app/shared/shared-video-miniature/videos-list.component.ts124 + src/app/shared/shared-video-miniature/videos-list.component.ts124 + This week Den här veckan - - src/app/shared/shared-video-miniature/videos-list.component.ts125 + src/app/shared/shared-video-miniature/videos-list.component.ts125 + This month Den här månaden - - src/app/shared/shared-video-miniature/videos-list.component.ts126 + src/app/shared/shared-video-miniature/videos-list.component.ts126 + Last month Senaste månaden - - src/app/shared/shared-video-miniature/videos-list.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts127 + Older Äldre - - src/app/shared/shared-video-miniature/videos-list.component.ts128 + src/app/shared/shared-video-miniature/videos-list.component.ts128 + Cannot load more videos. Try again later. Kan inte ladda in fler videor, försök gärna igen om en stund. - - - src/app/shared/shared-video-miniature/videos-list.component.ts225src/app/shared/shared-video-miniature/videos-selection.component.ts127 + src/app/shared/shared-video-miniature/videos-list.component.ts225 + src/app/shared/shared-video-miniature/videos-selection.component.ts127 + Last 7 days Senaste veckan @@ -9496,7 +9493,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular All categories - All categories + Alla kategorier src/app/shared/shared-forms/select/select-categories.component.ts 24 @@ -9504,7 +9501,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular You can't select more than items - You can't select more than items + Du kan inte välja fler än objekt src/app/shared/shared-forms/select/select-checkbox-all.component.ts 81 @@ -9809,9 +9806,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Displayed Synlig - - - src/app/shared/shared-instance/instance-features-table.component.ts55src/app/shared/shared-video-miniature/video-filters.model.ts227 + src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-video-miniature/video-filters.model.ts227 + ~ 1 minute omkring en minut @@ -9848,18 +9845,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (kanalsida) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (kontosida) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Betoning @@ -10263,8 +10260,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderator - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Sök efter videor, spellistor och kanaler … @@ -10577,7 +10574,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Subscribe to RSS feed "" - Subscribe to RSS feed "" + Prenumerera på RSS-flödet ”” src/app/shared/shared-video-miniature/videos-list.component.html 8 @@ -10810,35 +10807,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Din video har laddats upp till ditt konto och är privat. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Men associerad data (taggar, beskrivning …) kommer försvinna, är du säker på att du vill lämna sidan? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Din video har inte laddats upp än, vill du lämna sidan? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Ladda upp - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Ladda upp - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Videon har publicerats. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Du har gjort ändringar som inte sparats! Om du lämnar nu kommer de förkastas. @@ -11027,7 +11024,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Only videos uploaded on this instance are displayed - Only videos uploaded on this instance are displayed + Bara videor som laddats upp på den här instansen visas src/app/+videos/video-list/videos-list-common-page.component.ts 190 diff --git a/client/src/locale/angular.ta.xlf b/client/src/locale/angular.ta.xlf index f96da3d18..b34387f22 100644 --- a/client/src/locale/angular.ta.xlf +++ b/client/src/locale/angular.ta.xlf @@ -393,7 +393,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -455,10 +455,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitlessubtitles src/app/shared/shared-video-miniature/video-download.component.ts55 @@ -470,7 +470,7 @@ Cancel - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Download @@ -2484,7 +2484,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10361,20 +10361,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 UploadUpload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload @@ -10383,13 +10383,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video published. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.th-TH.xlf b/client/src/locale/angular.th-TH.xlf index 813fab2f4..acb8c4534 100644 --- a/client/src/locale/angular.th-TH.xlf +++ b/client/src/locale/angular.th-TH.xlf @@ -335,9 +335,9 @@ video วิดีโอ - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. @@ -409,13 +409,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles คำบรรยายใต้ภาพ @@ -426,9 +426,9 @@ ยกเลิก - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download ดาวน์โหลด @@ -2643,8 +2643,8 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. ขออภัย คุณสมบัติการอัปโหลดถูกปิดใช้งานสำหรับบัญชีของคุณ หากคุณต้องการเพิ่มวิดีโอ ผู้ดูแลระบบต้องปลดล็อกโควต้าของคุณก่อน @@ -11167,35 +11167,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. วิดีโอของคุณถูกอัปโหลดไปยังบัญชีของคุณและเป็นส่วนตัวแล้ว - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? แต่ข้อมูลที่เกี่ยวข้อง (เช่น แท็ก คำอธิบาย) จะไม่ถูกบันทึก คุณแน่ใจว่าต้องการออกจากหน้านี้หรือไม่ - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? วิดีโอยังไม่ถูกอัปโหลด คุณแน่ใจว่าต้องการออกจากหน้านี้หรือไม่ - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload อัปโหลด - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload อัปโหลด - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. เผยแพร่วิดีโอแล้ว - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก ถ้าคุณออกจากหน้านี้ ข้อมูลที่ไม่ได้บันทึกจะหายไป diff --git a/client/src/locale/angular.tr-TR.xlf b/client/src/locale/angular.tr-TR.xlf index 396df0df8..bd2c70976 100644 --- a/client/src/locale/angular.tr-TR.xlf +++ b/client/src/locale/angular.tr-TR.xlf @@ -330,7 +330,7 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. src/app/shared/shared-video-miniature/video-download.component.html19 @@ -392,10 +392,10 @@ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: )Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles @@ -406,7 +406,7 @@ Cancel Kapat - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download İndir @@ -2434,7 +2434,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-upload.component.html106src/app/header/header.component.html5 Upload on holdUpload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. @@ -10679,35 +10679,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Video yayınlandı. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf index 648f603a8..02de71cbc 100644 --- a/client/src/locale/angular.uk-UA.xlf +++ b/client/src/locale/angular.uk-UA.xlf @@ -220,12 +220,12 @@ Search playlists - Шукати списки відтворення + Шукати добірки src/app/shared/shared-video-playlist/video-add-to-playlist.component.html9 Create a private playlist - Створити приватний список відтворення + Створити приватну добірку src/app/shared/shared-video-playlist/video-add-to-playlist.component.html66 @@ -255,9 +255,9 @@ video відео - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Наведене нижче посилання містить приватний токен і не повинно бути надано нікому. @@ -329,13 +329,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Ви досягли обмеження цього відео (розмір відео: , використано: , обмеження: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Ви досягли денного обмеження цього відео (розмір відео: , використано: , обмеження: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles субтитри @@ -344,9 +344,9 @@ Cancel Скасувати - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Завантажити @@ -646,12 +646,12 @@ Subscribe with an account on this instance - Підписатися через обліковий запис на цьому сервері + Підписатися за допомогою облікового запису на цьому сервері src/app/shared/shared-user-subscription/subscribe-button.component.html57 Subscribe with your local account - Підписатися через локальний обліковий запис + Підписатися за допомогою локального облікового запису src/app/shared/shared-user-subscription/subscribe-button.component.html58 @@ -666,7 +666,7 @@ Subscribe via RSS - Підписатися через RSS + Підписатися за допомогою RSS src/app/shared/shared-user-subscription/subscribe-button.component.html69 @@ -676,12 +676,12 @@ Remote subscribeRemote interact - Віддалена підписка Віддалена взаємодія + Віддалена підпискаВіддалена взаємодія src/app/shared/shared-user-subscription/remote-subscribe.component.html11 You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). - Ви можете підписатись на канал через будь-який екземпляр Fediverse з підтримною ActivityPub (наприклад, PeerTube, Mastodon або Pleroma). + Ви можете підписатися на канал через будь-який сервер Fediverse з підтримною ActivityPub (наприклад, PeerTube, Mastodon або Pleroma). src/app/shared/shared-user-subscription/remote-subscribe.component.html 18,19 @@ -906,10 +906,10 @@ User User - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Заблокувати @@ -1194,9 +1194,7 @@ The link will expire within 1 hour. subscribers - - підписалися - + підписників src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 src/app/+search/search.component.html55 src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 @@ -1233,7 +1231,7 @@ The link will expire within 1 hour. Setup your account, managing video playlists, discover third-party applications... - Налаштувати ваш обліковий запис, керувати списками відтворення, переглянути додатки третіх сторін... + Налаштувати ваш обліковий запис, керувати добірками, переглянути сторонні застосунки... src/app/modal/admin-welcome-modal.component.html29 @@ -2023,14 +2021,14 @@ The link will expire within 1 hour. extensions розширення - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. Це зображення занадто велике. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Вивантажити новий банер @@ -2055,13 +2053,13 @@ The link will expire within 1 hour. Account avatar Аватар облікового запису - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Аватар каналу - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Сумісність із Markdown також підтримує власні HTML-теґи PeerTube @@ -2508,8 +2506,8 @@ The link will expire within 1 hour. Upload on hold Вивантаження зупинено - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. На жаль, можливість вивантаження вимкнена для вашого облікового запису. Якщо ви хочете додати відео, адміністратор повинен розблокувати вашу квоту. @@ -2884,7 +2882,7 @@ The link will expire within 1 hour. The video was blocked due to automatic blocking of new videos - The video was blocked due to automatic blocking of new videos + Відео було заблоковано через автоматичне блокування нових відео src/app/+admin/moderation/video-block-list/video-block-list.component.html57 @@ -2904,8 +2902,7 @@ The link will expire within 1 hour. The video is being imported, it will be available when the import is finished. - The video is being imported, it will be available when the import is finished. - + Відео імпортується, воно стане доступним після завершення імпорту. src/app/+videos/+video-watch/shared/information/video-alert.component.html 2,3 @@ -2913,8 +2910,7 @@ The link will expire within 1 hour. The video is being transcoded, it may not work properly. - The video is being transcoded, it may not work properly. - + Відео перекодовано, воно може не працювати належним чином. src/app/+videos/+video-watch/shared/information/video-alert.component.html 6,7 @@ -2922,8 +2918,7 @@ The link will expire within 1 hour. The video is being moved to an external server, it may not work properly. - The video is being moved to an external server, it may not work properly. - + Відео переміщено на зовнішній сервер, воно може не працювати належним чином. src/app/+videos/+video-watch/shared/information/video-alert.component.html 10,11 @@ -2931,42 +2926,37 @@ The link will expire within 1 hour. This video will be published on . - This video will be published on . - + Це відео оприлюднено . src/app/+videos/+video-watch/shared/information/video-alert.component.html13 This live has not started yet. - This live has not started yet. - + Цю трансляцію ще не розпочато. src/app/+videos/+video-watch/shared/information/video-alert.component.html18 This live has ended. - This live has ended. - + Цю трансляцію завершено. src/app/+videos/+video-watch/shared/information/video-alert.component.html22 SORT BY - - SORT BY - + СОРТУВАТИ ЗА src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 Most recent first (default) - Most recent first (default) + Спочатку найновіші (типово) src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 Most replies first - Most replies first + Спочатку з найбільшою кількістю відповідей src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 No comments. - No comments. + Без коментарів. src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 @@ -3090,12 +3080,12 @@ The link will expire within 1 hour. Login to comment - Login to comment + Увійдіть, щоб коментувати src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 Markdown Emoji List - Markdown Emoji List + Список емоджі Markdown src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 @@ -3117,12 +3107,12 @@ The link will expire within 1 hour. Reply - Reply + Відповідь src/app/+videos/+video-watch/comment/video-comment.component.html36 This comment has been deleted - This comment has been deleted + Цей коментар було видалено src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 @@ -3313,9 +3303,8 @@ The link will expire within 1 hour. Unfollow Unfollow - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Відкрити сервер на новій вкладці @@ -3421,7 +3410,7 @@ The link will expire within 1 hour. Role - Role + Роль src/app/+admin/users/user-edit/user-edit.component.html136 src/app/+admin/users/user-edit/user-edit.component.html136 src/app/+admin/users/user-list/user-list.component.ts114 @@ -3510,12 +3499,12 @@ The link will expire within 1 hour. The user was banned - The user was banned + Користувача було заблоковано src/app/+admin/users/user-list/user-list.component.html139 Open account in a new tab - Open account in a new tab + Відкрити обліковий запис у новій вкладці src/app/+admin/moderation/video-comment-list/video-comment-list.component.html70 src/app/+admin/users/user-list/user-list.component.html90 src/app/+my-library/my-ownership/my-ownership.component.html38 @@ -3545,12 +3534,12 @@ The link will expire within 1 hour. Ban reason: - Ban reason: + Причина блокування: src/app/+admin/users/user-list/user-list.component.html156 Banned users - Banned users + Заблоковані користувачі src/app/+admin/users/user-list/user-list.component.ts 40 @@ -3622,7 +3611,7 @@ The link will expire within 1 hour. Video blocks - Video blocks + Заблоковані відео src/app/+admin/moderation/video-block-list/video-block-list.component.html3 @@ -3645,7 +3634,7 @@ The link will expire within 1 hour. Total size - Total size + Загальний розмір src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html30 @@ -3700,7 +3689,7 @@ The link will expire within 1 hour. Actions - Actions + Дії src/app/+admin/follows/followers-list/followers-list.component.html23 src/app/+admin/moderation/video-block-list/video-block-list.component.html45 src/app/+admin/moderation/video-comment-list/video-comment-list.component.html65 @@ -3783,7 +3772,7 @@ The link will expire within 1 hour. Block reason: - Block reason: + Причина блокування: src/app/+admin/moderation/video-block-list/video-block-list.component.html87 @@ -3831,7 +3820,7 @@ The link will expire within 1 hour. Update this comment - Update this comment + Оновити цей коментар src/app/shared/shared-abuse-list/moderation-comment-modal.component.html30 @@ -3854,7 +3843,7 @@ The link will expire within 1 hour. Video - Video + Відео src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43 src/app/+my-library/my-ownership/my-ownership.component.html20 src/app/+my-library/my-video-imports/my-video-imports.component.html18 @@ -3862,7 +3851,7 @@ The link will expire within 1 hour. Comment - Comment + Коментар src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 @@ -3886,19 +3875,17 @@ The link will expire within 1 hour. Video was deleted - Video was deleted + Відео було видалено src/app/shared/shared-abuse-list/abuse-list-table.component.html89 Account deleted - - Account deleted - + Обліковий запис видалено src/app/shared/shared-abuse-list/abuse-list-table.component.html125 Open video in a new tab - Open video in a new tab + Відкрити відео у новій вкладці src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html49 @@ -3910,12 +3897,12 @@ The link will expire within 1 hour. Messages - Messages + Повідомлення src/app/shared/shared-abuse-list/abuse-list-table.component.html25 Internal note - Internal note + Внутрішня примітка src/app/shared/shared-abuse-list/abuse-list-table.component.html26 @@ -3986,7 +3973,7 @@ The link will expire within 1 hour. No server found. - No server found. + Серверів не знайдено. src/app/shared/shared-moderation/server-blocklist.component.html56 src/app/shared/shared-moderation/server-blocklist.component.html56 @@ -4011,7 +3998,7 @@ The link will expire within 1 hour. Account - Account + Обліковий запис src/app/+admin/moderation/video-comment-list/video-comment-list.component.html42 src/app/shared/shared-moderation/account-blocklist.component.html23 src/app/shared/shared-moderation/account-blocklist.component.html23 @@ -4024,23 +4011,23 @@ The link will expire within 1 hour. No account found. - No account found. + Облікових записів не знайдено. src/app/shared/shared-moderation/account-blocklist.component.html54 src/app/shared/shared-moderation/account-blocklist.component.html54 List installed plugins - List installed plugins + Перелік установлених плагінів src/app/+admin/plugins/plugins.routes.ts28 Search plugins - Search plugins + Пошук плагінів src/app/+admin/plugins/plugins.routes.ts37 Show plugin - Show plugin + Показати плагіни src/app/+admin/plugins/plugins.routes.ts46 @@ -4051,17 +4038,17 @@ The link will expire within 1 hour. Plugins/Themes - Plugins/Themes + Плагіни/Теми src/app/+admin/admin.component.ts99 Installed - Installed + Установлено src/app/+admin/plugins/plugins.component.html3 Plugin homepage (new window) - Plugin homepage (new window) + Домашня сторінка плагіна (нове вікно) src/app/+admin/plugins/plugin-search/plugin-search.component.html40 src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html17 src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html21 @@ -4084,7 +4071,7 @@ The link will expire within 1 hour. Close this message - Close this message + Закрити це повідомлення src/app/app.component.html34 src/app/app.component.html34 @@ -4158,9 +4145,7 @@ The link will expire within 1 hour. No results. - - No results. - + Немає результатів. src/app/+admin/plugins/plugin-search/plugin-search.component.html29 @@ -4179,7 +4164,7 @@ The link will expire within 1 hour. System - System + Система src/app/+admin/admin.component.ts103 @@ -4232,7 +4217,7 @@ The link will expire within 1 hour. Video comments - Video comments + Коментарі до відео src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 @@ -4673,7 +4658,7 @@ The link will expire within 1 hour. Users - Users + Користувачі src/app/+admin/users/user-edit/user-edit.component.html4 src/app/+admin/users/user-edit/user-edit.component.html4 @@ -4691,7 +4676,7 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} } - {VAR_PLURAL, plural, =1 {підписник} few {підписники} many {підписників} other {підписників} } + {VAR_PLURAL, plural, =1 {підписник} few {підписники} many {підписників} other {підписника} } src/app/+admin/users/user-edit/user-edit.component.html36 src/app/+admin/users/user-edit/user-edit.component.html36 @@ -4721,7 +4706,7 @@ The link will expire within 1 hour. Configuration - Configuration + Конфігурація src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 @@ -4874,8 +4859,8 @@ The link will expire within 1 hour. Administrator Адміністратор - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Е-пошта адміністратора @@ -5445,8 +5430,6 @@ color: red; 66 - - Scope: Scope: @@ -5455,7 +5438,6 @@ color: red; 81 - Local videos (this instance) Local videos (this instance) @@ -5464,7 +5446,6 @@ color: red; 85 - Federated videos (this instance + followed instances) Federated videos (this instance + followed instances) @@ -5489,7 +5470,6 @@ color: red; 99 - Categories: Categories: @@ -5721,9 +5701,7 @@ color: red; subscribers - - subscribers - + підписників src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 @@ -5766,9 +5744,7 @@ color: red; subscribers - - subscribers - + підписників src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 @@ -6159,14 +6135,14 @@ color: red; {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} - {VAR_PLURAL, plural, =1 {1 підписник} few { підписники}} many { підписників}} other { підписників}} + {VAR_PLURAL, plural, =1 {1 підписник} few { підписники} many { підписників} other { підписника}} src/app/+accounts/account-video-channels/account-video-channels.component.html23 src/app/+my-library/+my-video-channels/my-video-channels.component.html28 src/app/+video-channels/video-channels.component.html73 {VAR_PLURAL, plural, =1 {1 videos} other { videos}} - {VAR_PLURAL, plural, =1 {1 відео} other { відео}} + {VAR_PLURAL, plural, =1 {1 відео} few { відео} many { відео} other { відео}} src/app/+accounts/account-video-channels/account-video-channels.component.html26 @@ -6735,25 +6711,25 @@ channel with the same name ()! Channel display name - Channel display name + Показувана назва каналу src/app/+signup/+register/register-step-channel.component.html15 Channel name - Channel name + Назва каналу src/app/+signup/+register/register-step-channel.component.html30 src/app/+admin/users/user-edit/user-edit.component.html94 src/app/+admin/users/user-edit/user-edit.component.html94 john_channel - john_channel + максим_канал src/app/+admin/users/user-edit/user-edit.component.html96 src/app/+admin/users/user-edit/user-edit.component.html96 Example: my_super_channel - Example: my_super_channel + Приклад: my_super_channel src/app/+signup/+register/register-step-channel.component.html34 @@ -6813,7 +6789,7 @@ channel with the same name ()! ACCOUNT - ACCOUNT + ОБЛІКОВИЙ ЗАПИС src/app/+accounts/accounts.component.html 8 @@ -6832,8 +6808,8 @@ channel with the same name ()! Remove this filter Remove this filter - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Sensitive content Sensitive content @@ -6851,37 +6827,37 @@ channel with the same name ()! Languages - Languages + Мови src/app/shared/shared-video-miniature/video-filters.model.ts132 Categories - Categories + Категорії src/app/shared/shared-video-miniature/video-filters.model.ts141 All videos - All videos + Усі відео src/app/shared/shared-video-miniature/video-filters.model.ts150 Blurred - Blurred + Розмито src/app/shared/shared-video-miniature/video-filters.model.ts225 hidden - hidden + сховано src/app/shared/shared-video-miniature/video-filters.model.ts231 blurred - blurred + розмито src/app/shared/shared-video-miniature/video-filters.model.ts232 displayed - displayed + показано src/app/shared/shared-video-miniature/video-filters.model.ts234 @@ -6915,7 +6891,7 @@ channel with the same name ()! subscribers - підписники + підписників src/app/+accounts/accounts.component.ts126 @@ -6930,42 +6906,42 @@ channel with the same name ()! 240p - 240p + 240p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts22 360p - 360p + 360p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts26 480p - 480p + 480p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts30 720p - 720p + 720p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts34 1080p - 1080p + 1080p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts38 1440p - 1440p + 1440p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts42 2160p - 2160p + 2160p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts46 Auto (via ffmpeg) - Auto (via ffmpeg) + Авто (через ffmpeg) src/app/+admin/config/shared/config.service.ts50 @@ -6983,22 +6959,22 @@ channel with the same name ()! 1 hour - 1 hour + 1 година src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts35 3 hours - 3 hours + 3 години src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts36 5 hours - 5 hours + 5 годин src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts37 10 hours - 10 hours + 10 годин src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts38 @@ -7051,7 +7027,7 @@ channel with the same name ()! Homepage - Homepage + Домашня сторінка src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 7 @@ -7063,7 +7039,7 @@ channel with the same name ()! Information - Information + Інформація src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 15 @@ -7079,7 +7055,7 @@ channel with the same name ()! Configuration updated. - Configuration updated. + Конфігурацію оновлено. src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts286 @@ -7178,42 +7154,42 @@ channel with the same name ()! 100MB - 100MB + 100МБ src/app/+admin/config/shared/config.service.ts24 src/app/+admin/config/shared/config.service.ts40 500MB - 500MB + 500МБ src/app/+admin/config/shared/config.service.ts25 src/app/+admin/config/shared/config.service.ts41 1GB - 1GB + 1ГБ src/app/+admin/config/shared/config.service.ts26 5GB - 5GB + 5ГБ src/app/+admin/config/shared/config.service.ts27 src/app/+admin/config/shared/config.service.ts43 20GB - 20GB + 20ГБ src/app/+admin/config/shared/config.service.ts28 src/app/+admin/config/shared/config.service.ts45 50GB - 50GB + 50ГБ src/app/+admin/config/shared/config.service.ts29 src/app/+admin/config/shared/config.service.ts46 100GB - 100GB + 100ГБ src/app/+admin/config/shared/config.service.ts 30 @@ -7221,7 +7197,7 @@ channel with the same name ()! 200GB - 200GB + 200ГБ src/app/+admin/config/shared/config.service.ts 31 @@ -7229,7 +7205,7 @@ channel with the same name ()! 500GB - 500GB + 500ГБ src/app/+admin/config/shared/config.service.ts 32 @@ -7237,22 +7213,22 @@ channel with the same name ()! 10MB - 10MB + 10МБ src/app/+admin/config/shared/config.service.ts38 50MB - 50MB + 50МБ src/app/+admin/config/shared/config.service.ts39 2GB - 2GB + 2ГБ src/app/+admin/config/shared/config.service.ts42 10GB - 10GB + 10ГБ src/app/+admin/config/shared/config.service.ts 44 @@ -7382,12 +7358,12 @@ channel with the same name ()! enabled - enabled + увімкнено src/app/+admin/follows/shared/redundancy-checkbox.component.ts23 disabled - disabled + вимкнено src/app/+admin/follows/shared/redundancy-checkbox.component.ts23 @@ -7397,12 +7373,12 @@ channel with the same name ()! Used - Used + Використано src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 Available - Available + Доступно src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts102 @@ -7482,24 +7458,24 @@ channel with the same name ()! Server rules - Server rules + Правила сервера src/app/shared/shared-abuse-list/abuse-details.component.ts24 Thumbnails - Thumbnails + Мініатюри src/app/shared/shared-abuse-list/abuse-details.component.ts25 src/app/shared/shared-moderation/abuse.service.ts176 Internal actions - Internal actions + Внутрішні дії src/app/+admin/moderation/video-block-list/video-block-list.component.ts56 src/app/shared/shared-abuse-list/abuse-list-table.component.ts256 Delete report - Delete report + Видалити скаргу src/app/shared/shared-abuse-list/abuse-list-table.component.ts287 @@ -7530,23 +7506,23 @@ channel with the same name ()! Block video - Block video + Заблокувати відео src/app/shared/shared-abuse-list/abuse-list-table.component.ts351 Video blocked. - Video blocked. + Відео заблоковано. src/app/shared/shared-abuse-list/abuse-list-table.component.ts357 src/app/shared/shared-moderation/video-block.component.ts60 Unblock video - Unblock video + Розблокувати відео src/app/shared/shared-abuse-list/abuse-list-table.component.ts367 Video unblocked. - Video unblocked. + Відео розблоковано. src/app/shared/shared-abuse-list/abuse-list-table.component.ts373 @@ -7599,7 +7575,7 @@ channel with the same name ()! Unblock - Unblock + Розблокувати src/app/+admin/moderation/video-block-list/video-block-list.component.ts83 src/app/+admin/moderation/video-block-list/video-block-list.component.ts134 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182 @@ -7613,13 +7589,13 @@ channel with the same name ()! yes - yes + так src/app/shared/shared-instance/feature-boolean.component.html1 src/app/shared/shared-instance/feature-boolean.component.html1 no - no + ні src/app/shared/shared-instance/feature-boolean.component.html2 src/app/shared/shared-instance/feature-boolean.component.html2 @@ -7647,7 +7623,7 @@ channel with the same name ()! Uninstall - Uninstall + Видплити src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts112 @@ -7706,39 +7682,37 @@ channel with the same name ()! installed. - - installed. - + встановлено. src/app/+admin/plugins/plugin-search/plugin-search.component.ts147 Settings updated. - Settings updated. + Налаштування оновлено. src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts55 Plugins - Plugins + Плагіни src/app/+admin/plugins/shared/plugin-api.service.ts31 Themes - Themes + Теми src/app/+admin/plugins/shared/plugin-api.service.ts35 plugin - plugin + плагін src/app/+admin/plugins/shared/plugin-api.service.ts43 theme - theme + тема src/app/+admin/plugins/shared/plugin-api.service.ts46 IP address - IP address + IP-адреса src/app/+admin/system/debug/debug.component.html 2 @@ -7835,12 +7809,12 @@ channel with the same name ()! warning - warning + попередження src/app/+admin/system/logs/logs.component.ts117 error - error + помилка src/app/+admin/system/logs/logs.component.ts121 @@ -7855,12 +7829,12 @@ channel with the same name ()! Warning - Warning + Попередження src/app/core/routing/can-deactivate-guard.service.ts23 Error - Error + Помилка src/app/core/auth/auth.service.ts103 src/app/core/notification/notifier.service.ts18 @@ -7928,12 +7902,12 @@ channel with the same name ()! Create a user - Create a user + Створити користувача src/app/+admin/users/users.routes.ts36 Update a user - Update a user + Оновити користувача src/app/+admin/users/users.routes.ts45 @@ -7974,7 +7948,7 @@ channel with the same name ()! Created - Created + Створено src/app/+admin/users/user-list/user-list.component.ts 115 @@ -8067,17 +8041,17 @@ channel with the same name ()! Delete videos history - Delete videos history + Видалити історію перегляду src/app/+my-library/my-history/my-history.component.ts127 Are you sure you want to delete all your videos history? - Are you sure you want to delete all your videos history? + Ви впевнені, що хочете видалити всю історію переглянутих відео? src/app/+my-library/my-history/my-history.component.ts128 Videos history deleted - Videos history deleted + Історію перегляду видалено src/app/+my-library/my-history/my-history.component.ts136 @@ -8105,7 +8079,7 @@ channel with the same name ()! Email updated. - Email updated. + Е-пошту оновлено. src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts55 @@ -8125,7 +8099,7 @@ channel with the same name ()! Password updated. - Password updated. + Пароль оновлено. src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 @@ -8135,7 +8109,7 @@ channel with the same name ()! Type your username to confirm - Type your username to confirm + Введіть своє ім'я користувача, щоб підтвердити src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts24 @@ -8145,12 +8119,12 @@ channel with the same name ()! Delete my account - Delete my account + Видалити мій обліковий запис src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts27 Your account is deleted. - Your account is deleted. + Ваш обліковий запис видалено. src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts34 @@ -8166,7 +8140,7 @@ channel with the same name ()! New comment on your video - New comment on your video + Новий коментар до вашого відео src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts33 @@ -8247,17 +8221,17 @@ channel with the same name ()! Preferences saved - Preferences saved + Налаштування збережено src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 Profile updated. - Profile updated. + Профіль оновлено. src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts59 People can find you using @@ - People can find you using @@ + Люди можуть знайти вас за допомогою @@ src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html 11,13 @@ -8265,25 +8239,25 @@ channel with the same name ()! Avatar changed. - Avatar changed. + Аватар змінено. src/app/+my-account/my-account-settings/my-account-settings.component.ts44 src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts111 avatar - avatar + аватар src/app/+my-account/my-account-settings/my-account-settings.component.ts51 src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts118 Avatar deleted. - Avatar deleted. + Аватар видалено. src/app/+my-account/my-account-settings/my-account-settings.component.ts61 src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts128 Unknown language - Unknown language + Невідома мова src/app/shared/shared-forms/select/select-languages.component.ts41 @@ -8323,12 +8297,12 @@ channel with the same name ()! banner - banner + банер src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts148 Banner deleted. - Banner deleted. + Банер видалено. src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts158 @@ -8338,17 +8312,17 @@ channel with the same name ()! Views for the day - Views for the day + Перегляди за сьогодні src/app/+my-library/+my-video-channels/my-video-channels.component.ts88 Update video channel - Update video channel + Оновити відеоканал src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts31 Not found - Not found + Не знайдено src/app/+page-not-found/page-not-found-routing.module.ts14 @@ -8369,7 +8343,7 @@ channel with the same name ()! Reset password - Reset password + Скинути пароль src/app/+reset-password/reset-password-routing.module.ts 11 @@ -8385,7 +8359,7 @@ channel with the same name ()! Playlist created. - Список відтворення створено. + Добірку створено. src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 @@ -8396,7 +8370,7 @@ channel with the same name ()! Update playlist - Update playlist + Оновити добірку src/app/+my-library/my-library-routing.module.ts66 src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47 @@ -8414,12 +8388,12 @@ channel with the same name ()! Delete playlist - Delete playlist + Видалити добірку src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts52 Playlist updated. - Список відтворення оновлено. + Добірку оновлено. src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 @@ -8436,7 +8410,7 @@ channel with the same name ()! Playlist deleted. - Список відтворення видалено. + Добірку видалено. src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts135 @@ -8494,7 +8468,7 @@ channel with the same name ()! My playlists - Мої списки відтворення + Мої добірки src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 @@ -8514,7 +8488,7 @@ channel with the same name ()! Ownership changes - Ownership changes + Власника змінено src/app/+my-library/my-library-routing.module.ts108 @@ -8534,15 +8508,15 @@ channel with the same name ()! Playlists - Списки відтворення + Добірки src/app/+my-library/my-library.component.ts61 max size max size - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Maximize editor @@ -8578,7 +8552,7 @@ channel with the same name ()! Subscribe to the account - Subscribe to the account + Підписатися на обліковий запис src/app/+video-channels/video-channels.component.ts71 src/app/+videos/+video-watch/video-watch.component.ts713 @@ -8806,7 +8780,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Live videos - Пряма трансляція + Відео наживо src/app/+search/search-filters.component.ts 64 @@ -8859,7 +8833,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Search - Search + Пошук src/app/+search/search-routing.module.ts15 src/app/+search/search.component.ts242 src/app/shared/shared-main/misc/simple-search-input.component.ts15 @@ -8982,7 +8956,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Settings - Settings + Налаштування src/app/+my-account/my-account.component.ts50 @@ -9626,17 +9600,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular This file is too large. - This file is too large. + Цей файл завеликий. src/app/shared/shared-forms/reactive-file.component.ts50 PeerTube cannot handle this kind of file. Accepted extensions are }. - PeerTube cannot handle this kind of file. Accepted extensions are }. + PeerTube не може обробляти такі файли. Допустимі розширення }. src/app/shared/shared-forms/reactive-file.component.ts56 All categories - All categories + Усі категорії src/app/shared/shared-forms/select/select-categories.component.ts 24 @@ -9644,7 +9618,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular You can't select more than items - You can't select more than items + Ви не можете вибрати більше за елементів src/app/shared/shared-forms/select/select-checkbox-all.component.ts 81 @@ -9652,12 +9626,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Add a new option - Add a new option + Додати нову опцію src/app/shared/shared-forms/select/select-checkbox.component.ts27 Custom value... - Custom value... + Власне значення... src/app/shared/shared-forms/select/select-custom-value.component.ts 69 @@ -9665,341 +9639,331 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular All unsaved data will be lost, are you sure you want to leave this page? - All unsaved data will be lost, are you sure you want to leave this page? + Усі незбережені дані будуть втрачені. Ви впевнені, що хочете залишити цю сторінку? src/app/core/routing/can-deactivate-guard.service.ts19 Sunday - Sunday + Неділя src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts10 Monday - Monday + Понеділок src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11 Tuesday - Tuesday + Вівторок src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12 Wednesday - Wednesday + Середа src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13 Thursday - Thursday + Четвер src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14 Friday - Friday + П'ятниця src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15 Saturday - Saturday + Субота src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16 Sun - Sun + Нд Day name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts20 Mon - Mon + Пн Day name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts21 Tue - Tue + Вт Day name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts22 Wed - Wed + Ср Day name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts23 Thu - Thu + Чт Day name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts24 Fri - Fri + Пт Day name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts25 Sat - Sat + Сб Day name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts26 Su - Su + Нд Day name min src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts30 Mo - Mo + Пн Day name min src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts31 Tu - Tu + Вт Day name min src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts32 We - We + Ср Day name min src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts33 Th - Th + Чт Day name min src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts34 Fr - Fr + Пт Day name min src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts35 Sa - Sa + Сб Day name min src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts36 January - January + Січень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts40 February - February + Лютий src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41 March - March + Березень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts42 April - April + Квітень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts43 May - May + Травень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44 src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts59 June - June + Червень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts45 July - July + Липень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts46 August - August + Серпень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts47 September - September + Вересень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts48 October - October + Жовтень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts49 November - November + Листопад src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts50 December - December + Грудень src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51 Jan - Jan + Січ Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts55 Feb - Feb + Лют Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts56 Mar - Mar + Бер Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts57 Apr - Apr + Кві Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts58 Jun - Jun + Чер Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts60 Jul - Jul + Лип Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts61 Aug - Aug + Сер Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts62 Sep - Sep + Вер Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts63 Oct - Oct + Жов Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts64 Nov - Nov + Лис Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts65 Dec - Dec + Гру Month name short src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts66 Clear - Clear + Очистити src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts71 yy-mm-dd - yy-mm-dd + рр-мм-дд Date format in this locale. src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts83 Instance languages - Instance languages + Мови сервера src/app/+videos/+video-edit/shared/video-edit.component.ts179 All languages - All languages + Усі мови src/app/+videos/+video-edit/shared/video-edit.component.ts180 src/app/shared/shared-forms/select/select-languages.component.ts25 Hidden - Hidden + Сховані src/app/shared/shared-instance/instance-features-table.component.ts53 Blurred with confirmation request - Blurred with confirmation request + Розмито запитом підтвердження src/app/shared/shared-instance/instance-features-table.component.ts54 Displayed - Displayed + Показано src/app/shared/shared-instance/instance-features-table.component.ts55 src/app/shared/shared-video-miniature/video-filters.model.ts227 ~ 1 minute - ~ 1 minute + ~ 1 хвилина src/app/shared/shared-instance/instance-features-table.component.ts74 ~ minutes - ~ minutes + ~ хвилин src/app/shared/shared-instance/instance-features-table.component.ts76 of full HD videos - - of full HD videos - + із full HD відео src/app/shared/shared-instance/instance-features-table.component.ts92 of HD videos - - of HD videos - + із HD відео src/app/shared/shared-instance/instance-features-table.component.ts93 of average quality videos - - of average quality videos - + із середньою якістю відео src/app/shared/shared-instance/instance-features-table.component.ts94 (channel page) - - (channel page) - - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (сторінка каналу) + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) - - (account page) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + (сторінка облікового запису) + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Emphasis @@ -10007,12 +9971,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Links - Links + Посилання src/app/shared/shared-main/misc/help.component.ts82 New lines - New lines + Нові рядки src/app/shared/shared-main/misc/help.component.ts83 @@ -10022,19 +9986,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Images - Images + Зображення src/app/shared/shared-main/misc/help.component.ts85 Close search - Close search + Закрити пошук src/app/shared/shared-main/misc/simple-search-input.component.html19 users banned. - - users banned. - + користувачів заблоковано. src/app/shared/shared-moderation/user-ban-modal.component.ts53 @@ -10145,17 +10107,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Delete account comments - Delete account comments + Видалити коментарі облікового запису src/app/shared/shared-moderation/user-moderation-dropdown.component.ts227 Will remove comments of this account (may take several minutes). - Will remove comments of this account (may take several minutes). + Вилучить коментарі цього облікового запису (може тривати кілька хвилин). src/app/shared/shared-moderation/user-moderation-dropdown.component.ts233 Edit user - Edit user + Редагувати користувача src/app/shared/shared-moderation/user-moderation-dropdown.component.ts261 @@ -10165,12 +10127,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Delete user - Delete user + Видалити користувача src/app/shared/shared-moderation/user-moderation-dropdown.component.ts266 Unban user - Unban user + Розблокувати користувача src/app/shared/shared-moderation/user-moderation-dropdown.component.ts277 @@ -10325,7 +10287,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Breaks server rules - Breaks server rules + Порушує правила сервера src/app/shared/shared-moderation/abuse.service.ts166 @@ -10420,9 +10382,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator - Moderator - - src/app/core/users/user.service.ts418 + Модератор + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Search videos, playlists, channels… @@ -10478,43 +10440,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Delete video - Delete video + Видалити відео src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 Actions for the comment - Actions for the comment + Дії з коментарем src/app/shared/shared-abuse-list/abuse-list-table.component.ts412 Delete comment - Delete comment + Видалити коментар src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 Do you really want to delete this comment? - Do you really want to delete this comment? + Справді хочете видалити цей коментар? src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 src/app/shared/shared-abuse-list/abuse-list-table.component.ts422 Comment deleted. - Comment deleted. + Коментар видалено. src/app/shared/shared-abuse-list/abuse-list-table.component.ts430 Encoder - Encoder + Кодувальник src/app/shared/shared-video-miniature/video-download.component.ts213 Format name - Format name + Назва формату src/app/shared/shared-video-miniature/video-download.component.ts214 Size - Size + Розмір src/app/shared/shared-video-miniature/video-download.component.ts215 @@ -10525,36 +10487,36 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Codec - Codec + Кодек src/app/shared/shared-video-miniature/video-download.component.ts237 Copied - Copied + Скопійовано src/app/shared/shared-forms/input-toggle-hidden.component.ts47 src/app/shared/shared-video-miniature/video-download.component.ts197 Copy - Copy + Копіювати src/app/shared/shared-forms/input-toggle-hidden.component.html15 src/app/shared/shared-forms/input-toggle-hidden.component.html15 Video reported. - Video reported. + Скаргу на відео надіслано. src/app/shared/shared-moderation/report-modals/video-report.component.ts113 Do you really want to delete this video? - Do you really want to delete this video? + Справді хочете видалити це відео? src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 src/app/shared/shared-abuse-list/abuse-list-table.component.ts387 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 Video deleted. - Video deleted. + Відео видалено. src/app/+admin/moderation/video-block-list/video-block-list.component.ts98 src/app/shared/shared-abuse-list/abuse-list-table.component.ts395 @@ -10595,28 +10557,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Block - Block + Блокувати src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts290 Save to playlist - Save to playlist + Зберегти у добірку src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 You need to be <a href="/login">logged in</a> to rate this video. - You need to be <a href="/login">logged in</a> to rate this video. + <a href="/login">Увійдіть</a>, щоб оцінити це відео. src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 Mirror - Mirror + Дзеркало src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302 Subtitles - Subtitles + Субтитри src/app/shared/shared-video-miniature/video-download.component.html 9 @@ -10630,7 +10592,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Remove - Remove + Вилучити src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 @@ -10640,7 +10602,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} - {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} + {VAR_PLURAL, plural, =0 {коментарів} =1 {1 коментар} few { коментарі} many { коментарів} other { коментаря}} src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 @@ -10651,7 +10613,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Open video actions - Open video actions + Відкрити дії з відео src/app/shared/shared-video-miniature/video-actions-dropdown.component.html 4 @@ -10668,7 +10630,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Report - Report + Поскаржитися src/app/shared/shared-abuse-list/abuse-details.component.html55 @@ -10678,12 +10640,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Note - Note + Примітка src/app/shared/shared-abuse-list/abuse-details.component.html80 The video was deleted - The video was deleted + Відео було видалено src/app/shared/shared-abuse-list/abuse-details.component.html89 @@ -10738,7 +10700,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Subscribe to RSS feed "" - Subscribe to RSS feed "" + Підписатися на RSS-стрічку «» src/app/shared/shared-video-miniature/videos-list.component.html 8 @@ -10746,7 +10708,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - + src/app/shared/shared-video-miniature/videos-selection.component.html 1 @@ -10804,82 +10766,82 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Slide of - Slide of + Слайд з Currently selected slide number read by screen reader node_modules/@ng-bootstrap/src/carousel/carousel.ts114 Previous - Previous + Попередній node_modules/@ng-bootstrap/src/carousel/carousel.ts132 Next - Наступне + Наступний node_modules/@ng-bootstrap/src/carousel/carousel.ts147 Previous month - Previous month + Попередній місяць node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24 node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts35 Next month - Next month + Наступний місяць node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts47 node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts60 Select month - Select month + Вибрати місяць node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44 node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49 Select year - Select year + Вибрати рік node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59 node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts74 «« - «« + «« node_modules/@ng-bootstrap/src/pagination/pagination.ts182 « - « + « node_modules/@ng-bootstrap/src/pagination/pagination.ts186 » - » + » node_modules/@ng-bootstrap/src/pagination/pagination.ts194 »» - »» + »» node_modules/@ng-bootstrap/src/pagination/pagination.ts201 First - First + Перший node_modules/@ng-bootstrap/src/pagination/pagination.ts208 Previous - Previous + Попередній node_modules/@ng-bootstrap/src/pagination/pagination.ts215 Next - Наступне + Наступний node_modules/@ng-bootstrap/src/pagination/pagination.ts226 Last - Last + Останній node_modules/@ng-bootstrap/src/pagination/pagination.ts232 @@ -10971,48 +10933,46 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Your video was uploaded to your account and is private. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? But associated data (tags, description...) will be lost, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Your video is not uploaded yet, are you sure you want to leave this page? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload - Upload - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + Вивантажити + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload - Upload - - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + Вивантажити + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. - Video published. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + Відео оприлюднено. + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. - You have unsaved changes! If you leave, your changes will be lost. + Ви маєте незбережені зміни! Якщо ви йдете, ваші зміни будуть втрачені. src/app/+videos/+video-edit/video-update.component.ts94 Video updated. - Video updated. + Відео оновлено. src/app/+videos/+video-edit/video-update.component.ts158 Report comment - Report comment + Поскаржитися на коментар src/app/shared/shared-moderation/report-modals/comment-report.component.ts51 @@ -11050,7 +11010,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Redirection - Redirection + Перенаправлення src/app/+videos/+video-watch/video-watch.component.ts297 @@ -11135,12 +11095,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Like the video - Like the video + Вподобати відео src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 Dislike the video - Dislike the video + Не подобається src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 @@ -11173,7 +11133,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Open actions - Open actions + Показати дії src/app/shared/shared-main/buttons/action-dropdown.component.html 4 @@ -11181,7 +11141,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos - Local videos + Локальні відео src/app/+videos/video-list/videos-list-common-page.component.ts189 src/app/core/menu/menu.service.ts142 src/app/core/menu/menu.service.ts143 @@ -11212,12 +11172,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Upload a video - Upload a video + Вивантажити відео src/app/app-routing.module.ts91 Edit a video - Edit a video + Редагувати відео src/app/app-routing.module.ts100 diff --git a/client/src/locale/angular.vi-VN.xlf b/client/src/locale/angular.vi-VN.xlf index 66139893e..329ad57cf 100644 --- a/client/src/locale/angular.vi-VN.xlf +++ b/client/src/locale/angular.vi-VN.xlf @@ -253,9 +253,9 @@ video video - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. Đường dẫn chứa một token riêng tư và không nên chia sẻ với bất cứ ai. @@ -325,13 +325,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Bạn đã dùng hết dung lượng cho phép với video này (dung lượng video: , đã dùng: , dung lượng cho phép: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Bạn đã dùng hết dung lượng hàng ngày cho phép với video này (dung lượng video: , đã dùng: , dung lượng cho phép: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles phụ đề @@ -342,9 +342,9 @@ Huỷ - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download Tải về @@ -908,10 +908,10 @@ User Thành viên - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban Chặn @@ -2035,14 +2035,14 @@ The link will expire within 1 hour. extensions định dạng file - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. Hình này quá lớn. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Tải lên ảnh bìa mới @@ -2067,13 +2067,13 @@ The link will expire within 1 hour. Account avatar Ảnh đại diện tài khoản - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar Ảnh đại diện kênh - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Tương thích Markdown và đồng thời hỗ trợ PeerTube HTML tags @@ -2524,8 +2524,8 @@ The link will expire within 1 hour. Upload on hold Đang tiếp tục tải lên - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Xin lỗi, tài khoản của bạn đã bị cấm tải lên. Nếu bạn muốn đăng thêm video, bạn phải liên hệ một quản trị viên để mở khóa dung lượng cho phép. @@ -3300,9 +3300,8 @@ The link will expire within 1 hour. Unfollow Ngưng theo dõi - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab Mở máy chủ trong tab mới @@ -4834,8 +4833,8 @@ The link will expire within 1 hour. Administrator Quản trị viên - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email Email admin @@ -5399,8 +5398,6 @@ color: red; 66 - - Scope: Phạm vi: @@ -5409,7 +5406,6 @@ color: red; 81 - Local videos (this instance) Video máy chủ (máy chủ này) @@ -5418,7 +5414,6 @@ color: red; 85 - Federated videos (this instance + followed instances) Video liên hợp (máy chủ này + những máy chủ đã theo dõi) @@ -5443,7 +5438,6 @@ color: red; 99 - Categories: Thể loại: @@ -6459,7 +6453,7 @@ channel with the same name ()! This instance does not have instances followers. - Máy chủ này không có người theo dõi máy chủ. + Chưa được máy chủ khác theo dõi. src/app/+about/about-follows/about-follows.component.html6 @@ -6668,8 +6662,8 @@ channel with the same name ()! Remove this filter Xóa bộ lọc này - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Sensitive content Nội dung nhạy cảm @@ -8337,9 +8331,9 @@ channel with the same name ()! max size max size - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor Phóng to trình chỉnh sửa @@ -9765,16 +9759,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (channel page) (trang kênh) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (trang tài khoản) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis Nhấn mạnh @@ -10182,8 +10176,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Người quản trị - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… Tìm video, danh sách phát, kênh… @@ -10728,35 +10722,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. Video đã được tải lên riêng tư vào tài khoản của bạn. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? Nhưng các dữ liệu liên quan (thẻ, mô tả,...) sẽ bị mất. Bạn có chắc muốn rời khỏi trang không? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? Video của bạn vẫn chưa được tải lên, bạn có chắc muốn rời trang? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload Tải lên - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload Tải lên - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. Đã xuất bản video. - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. Bạn có sửa đổi chưa lưu! Nếu rời đi, những sửa đổi này sẽ bị mất. diff --git a/client/src/locale/angular.xlf b/client/src/locale/angular.xlf index c0610a39d..cc6fd2ce2 100644 --- a/client/src/locale/angular.xlf +++ b/client/src/locale/angular.xlf @@ -8876,56 +8876,56 @@ channel with the same name ()!Your video was uploaded to your account and is private. src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 118 + 125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 119 + 126 Your video is not uploaded yet, are you sure you want to leave this page? src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 121 + 128 Upload on hold src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 167 + 174 Upload src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 227 + 234 Upload src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 229 + 236 Video published. src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 251 + 258 video src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 294 + 301 src/app/shared/shared-video-miniature/video-download.component.ts @@ -8936,14 +8936,14 @@ channel with the same name ()!Your video quota is exceeded with this video (video size: , used: , quota: ) src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 330 + 337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) src/app/+videos/+video-edit/video-add-components/video-upload.component.ts - 349 + 356 @@ -9225,7 +9225,7 @@ channel with the same name ()! src/app/shared/shared-video-miniature/videos-selection.component.html - 22,23 + 23,24 diff --git a/client/src/locale/angular.zh-Hans-CN.xlf b/client/src/locale/angular.zh-Hans-CN.xlf index 44bab2949..e8ddd780b 100644 --- a/client/src/locale/angular.zh-Hans-CN.xlf +++ b/client/src/locale/angular.zh-Hans-CN.xlf @@ -258,7 +258,7 @@ - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. @@ -332,12 +332,12 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Your video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) Your daily video quota is exceeded with this video (video size: , used: , quota: ) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles 字幕 @@ -350,7 +350,7 @@ - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download 下载 @@ -2492,7 +2492,7 @@ The link will expire within 1 hour. Upload on hold Upload on hold - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. 对不起,您的帐户的上传功能已被禁用。如果你想添加视频,管理员必须解锁您的权限。 @@ -10831,34 +10831,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. 您的视频已经以私有方式上传至您的帐户。 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? 相关信息(如标签、说明)将会丢失,您确定要离开这个页面吗? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? 您的视频尚未上传完毕,您确定要离开这个页面吗? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload 上传 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload 上传 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. 视频已发布。 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. 您有未保存的修改!如果您离开本页面,您将会失去这些修改。 diff --git a/client/src/locale/angular.zh-Hant-TW.xlf b/client/src/locale/angular.zh-Hant-TW.xlf index 7bf134649..52c6d8ab0 100644 --- a/client/src/locale/angular.zh-Hant-TW.xlf +++ b/client/src/locale/angular.zh-Hant-TW.xlf @@ -255,9 +255,9 @@ video 影片 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts294 - src/app/shared/shared-video-miniature/video-download.component.ts56 - + + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts301src/app/shared/shared-video-miniature/video-download.component.ts56 The following link contains a private token and should not be shared with anyone. 以下連結包含了一個專用權杖,不應該與其他人分享。 @@ -329,13 +329,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) 此影片超過了您的影片配額(影片大小:,已使用:,配額:) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts330 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts337 Your daily video quota is exceeded with this video (video size: , used: , quota: ) 此影片超過了您的每日影片配額(影片大小:,已使用:,配額:) - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts349 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts356 subtitles 字幕 @@ -346,9 +346,9 @@ 取消 - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 - src/app/shared/shared-video-miniature/videos-selection.component.html22 - + + + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html23 Download 下載 @@ -912,10 +912,10 @@ User 使用者 - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts416 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts416 + Ban 阻擋 @@ -2031,14 +2031,14 @@ The link will expire within 1 hour. extensions 擴充套件 - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + This image is too large. 此圖片太大了。 - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts55 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner 上傳新橫幅 @@ -2063,13 +2063,13 @@ The link will expire within 1 hour. Account avatar 帳號大頭照 - - src/app/shared/shared-actor-image/actor-avatar.component.ts46 + src/app/shared/shared-actor-image/actor-avatar.component.ts46 + Channel avatar 頻道大頭照 - - src/app/shared/shared-actor-image/actor-avatar.component.ts47 + src/app/shared/shared-actor-image/actor-avatar.component.ts47 + Markdown compatible that also supports custom PeerTube HTML tags Markdown 相容版本也支援自訂 PeerTube HTML 標籤 @@ -2518,8 +2518,8 @@ The link will expire within 1 hour. Upload on hold 暫緩上傳 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts167 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts174 Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. 抱歉,您的帳號已停用上傳功能。如果您想要新增影片,管理員必須解鎖您的配額。 @@ -3305,9 +3305,8 @@ The link will expire within 1 hour. Unfollow 取消追蹤 - - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + Open instance in a new tab 在新分頁中開啟站臺 @@ -4838,8 +4837,8 @@ The link will expire within 1 hour. Administrator 管理員 - - src/app/core/users/user.service.ts417 + src/app/core/users/user.service.ts417 + Admin email 管理電子郵件 @@ -5403,8 +5402,6 @@ color: red; 66 - - Scope: 範圍: @@ -5413,7 +5410,6 @@ color: red; 81 - Local videos (this instance) 本機影片(此站台) @@ -5422,7 +5418,6 @@ color: red; 85 - Federated videos (this instance + followed instances) 聯盟影片(此站台 + 已追蹤的站台) @@ -5447,7 +5442,6 @@ color: red; 99 - Categories: 分類: @@ -6689,8 +6683,8 @@ channel with the same name ()! Remove this filter 移除此過濾條件 - - src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + src/app/shared/shared-video-miniature/video-filters-header.component.ts95 + Sensitive content 敏感內容 @@ -8384,9 +8378,9 @@ channel with the same name ()! max size 最大大小 - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46src/app/shared/shared-forms/preview-upload.component.ts38 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts46 + src/app/shared/shared-forms/preview-upload.component.ts38 + Maximize editor 最大化編輯器 @@ -9822,18 +9816,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (頻道頁面) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (帳號頁面) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + Emphasis 強調 @@ -10235,8 +10229,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator 調解員 - - src/app/core/users/user.service.ts418 + src/app/core/users/user.service.ts418 + Search videos, playlists, channels… 搜尋影片、播放清單、頻道…… @@ -10768,35 +10762,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your video was uploaded to your account and is private. 您的影片已上傳到您的帳號並為私人影片。 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts118 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts125 But associated data (tags, description...) will be lost, are you sure you want to leave this page? 但相關資料(標籤、描述等)將會遺失,您確定您想要離開此頁面嗎? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts119 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 Your video is not uploaded yet, are you sure you want to leave this page? 您的影片尚未上傳,您確定您想要離開此頁面嗎? - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts121 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts128 Upload 上傳 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts227 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts234 Upload 上傳 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts236 Video published. 影片已發佈。 - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts251 - + + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts258 You have unsaved changes! If you leave, your changes will be lost. 您有未儲存的變更!如果您離開,您的變更將會遺失。 diff --git a/client/src/locale/player.cs-CZ.json b/client/src/locale/player.cs-CZ.json index 370a4d9f3..f13a23b00 100644 --- a/client/src/locale/player.cs-CZ.json +++ b/client/src/locale/player.cs-CZ.json @@ -14,20 +14,20 @@ "Copy magnet URI": "Zkopírovat URI magnetu", "Total downloaded: ": "Celkem stažených: ", "Total uploaded: ": "Celkem nahraných: ", - "From servers: ": "From servers: ", + "From servers: ": "Ze serverů: ", "From peers: ": "From peers: ", "Normal mode": "Normal mode", "Stats for nerds": "Stats for nerds", "Theater mode": "Theater mode", "Video UUID": "Video UUID", "Viewport / Frames": "Viewport / Frames", - "Resolution": "Resolution", + "Resolution": "Rozlišení", "Volume": "Volume", - "Codecs": "Codecs", + "Codecs": "Kodeky", "Color": "Color", - "Connection Speed": "Connection Speed", + "Connection Speed": "Rychlost připojení", "Network Activity": "Network Activity", - "Total Transfered": "Total Transfered", + "Total Transfered": "Celkem přeneseno", "Download Breakdown": "Download Breakdown", "Buffer Progress": "Buffer Progress", "Buffer State": "Buffer State", diff --git a/client/src/locale/player.ru-RU.json b/client/src/locale/player.ru-RU.json index 3313f5f1b..ff29195bd 100644 --- a/client/src/locale/player.ru-RU.json +++ b/client/src/locale/player.ru-RU.json @@ -20,7 +20,7 @@ "Stats for nerds": "Статистика для гиков", "Theater mode": "Режим \"театр\"", "Video UUID": "Видео UUID", - "Viewport / Frames": "Viewport / Frames", + "Viewport / Frames": "Область просмотра / кадры", "Resolution": "Разрешение", "Volume": "Volume", "Codecs": "Кодеки", @@ -28,7 +28,7 @@ "Connection Speed": "Скорость подключения", "Network Activity": "Сетевая Активность", "Total Transfered": "Всего передано", - "Download Breakdown": "Download Breakdown", + "Download Breakdown": "Скачать разбивку", "Buffer Progress": "Buffer Progress", "Buffer State": "Состояние буфера", "Live Latency": "Задержка эфира", diff --git a/client/src/locale/player.sv-SE.json b/client/src/locale/player.sv-SE.json index cbedec98a..4ea275ad9 100644 --- a/client/src/locale/player.sv-SE.json +++ b/client/src/locale/player.sv-SE.json @@ -20,7 +20,7 @@ "Stats for nerds": "Statistik för nördar", "Theater mode": "Biografläge", "Video UUID": "Video-UUID", - "Viewport / Frames": "Viewport / Frames", + "Viewport / Frames": "Visningsyta / Bildrutor", "Resolution": "Upplösning", "Volume": "Volume", "Codecs": "Kodekar", diff --git a/client/src/locale/server.cs-CZ.json b/client/src/locale/server.cs-CZ.json index 1be2ea5a2..984ceb043 100644 --- a/client/src/locale/server.cs-CZ.json +++ b/client/src/locale/server.cs-CZ.json @@ -27,28 +27,28 @@ "Public": "Veřejné", "Unlisted": "Nezobrazeno", "Private": "Soukromé", - "Internal": "Internal", + "Internal": "Interní", "Published": "Publikované", "To transcode": "K transkódování", "To import": "To import", - "Waiting for livestream": "Waiting for livestream", - "Livestream ended": "Livestream ended", - "To move to an external storage": "To move to an external storage", + "Waiting for livestream": "Čekání na živý stream", + "Livestream ended": "Živý stream skončil", + "To move to an external storage": "Přesunout na externí úložiště", "Pending": "Čekající", "Success": "Úspěch", "Failed": "Neúspěch", - "Rejected": "Rejected", + "Rejected": "Odmítnuto", "Regular": "Běžný", "Watch later": "Přehrát později", "This video does not exist.": "Toto video neexistuje.", "We cannot fetch the video. Please try again later.": "Nemůžeme získat toto video. Prosím zkuste to znovu později.", "Sorry": "Omlouváme se", "This video is not available because the remote instance is not responding.": "Toto video není dostupné, protože vzdálená instance neodpovídá.", - "This playlist does not exist": "This playlist does not exist", - "We cannot fetch the playlist. Please try again later.": "We cannot fetch the playlist. Please try again later.", + "This playlist does not exist": "Takový playlist neexistuje", + "We cannot fetch the playlist. Please try again later.": "Nemůžeme poskytnout playlist. Prosíme, zkuste to později.", "Playlist: {1}": "Playlist: {1}", "By {1}": "By {1}", - "Unavailable video": "Unavailable video", + "Unavailable video": "Nedostupné video", "Misc": "Různé", "Unknown": "Neznámé", "Afar": "Afarština", diff --git a/client/src/locale/server.ru-RU.json b/client/src/locale/server.ru-RU.json index 004362a6e..1ba9e2468 100644 --- a/client/src/locale/server.ru-RU.json +++ b/client/src/locale/server.ru-RU.json @@ -33,7 +33,7 @@ "To import": "Импортировать", "Waiting for livestream": "В ожидании прямой трансляции", "Livestream ended": "Прямая трансляция закончилась", - "To move to an external storage": "To move to an external storage", + "To move to an external storage": "Чтобы переместить на внешнее хранилище", "Pending": "В ожидании", "Success": "Завершено", "Failed": "Неудачно", diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 9f6d69131..679c235a6 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss @@ -364,6 +364,9 @@ cursor: default; } } + select[disabled] { + background-color: #f9f9f9; + } @media screen and (max-width: $width) { width: 100%; diff --git a/client/src/standalone/videos/embed-api.ts b/client/src/standalone/videos/embed-api.ts index b5c9da431..a28aeeaef 100644 --- a/client/src/standalone/videos/embed-api.ts +++ b/client/src/standalone/videos/embed-api.ts @@ -64,19 +64,12 @@ export class PeerTubeEmbedApi { if (this.isWebtorrent()) { if (resolutionId === -1 && this.embed.player.webtorrent().isAutoResolutionPossible() === false) return - // Auto resolution - if (resolutionId === -1) { - this.embed.player.webtorrent().enableAutoResolution() - return - } - - this.embed.player.webtorrent().disableAutoResolution() - this.embed.player.webtorrent().updateResolution(resolutionId) + this.embed.player.webtorrent().changeQuality(resolutionId) return } - this.embed.player.p2pMediaLoader().getHLSJS().nextLevel = resolutionId + this.embed.player.p2pMediaLoader().getHLSJS().currentLevel = resolutionId } private getCaptions (): PeerTubeTextTrack[] { @@ -139,15 +132,10 @@ export class PeerTubeEmbedApi { }) // PeerTube specific capabilities - if (this.isWebtorrent()) { - this.embed.player.webtorrent().on('autoResolutionUpdate', () => this.loadWebTorrentResolutions()) - this.embed.player.webtorrent().on('videoFileUpdate', () => this.loadWebTorrentResolutions()) + this.embed.player.peertubeResolutions().on('resolutionsAdded', () => this.loadResolutions()) + this.embed.player.peertubeResolutions().on('resolutionChanged', () => this.loadResolutions()) - this.loadWebTorrentResolutions() - } else { - this.embed.player.p2pMediaLoader().on('resolutionChange', () => this.loadP2PMediaLoaderResolutions()) - this.embed.player.p2pMediaLoader().on('resolutionsLoaded', () => this.loadP2PMediaLoaderResolutions()) - } + this.loadResolutions() this.embed.player.on('volumechange', () => { this.channel.notify({ @@ -157,49 +145,15 @@ export class PeerTubeEmbedApi { }) } - private loadWebTorrentResolutions () { - this.resolutions = [] - - const currentResolutionId = this.embed.player.webtorrent().getCurrentResolutionId() - - for (const videoFile of this.embed.player.webtorrent().videoFiles) { - let label = videoFile.resolution.label - if (videoFile.fps && videoFile.fps >= 50) { - label += videoFile.fps - } - - this.resolutions.push({ - id: videoFile.resolution.id, - label, - src: videoFile.magnetUri, - active: videoFile.resolution.id === currentResolutionId, - height: videoFile.resolution.id - }) - } - - this.channel.notify({ - method: 'resolutionUpdate', - params: this.resolutions - }) - } - - private loadP2PMediaLoaderResolutions () { - this.resolutions = [] - - const qualityLevels = this.embed.player.qualityLevels() - const currentResolutionId = this.embed.player.qualityLevels().selectedIndex - - for (let i = 0; i < qualityLevels.length; i++) { - const level = qualityLevels[i] - - this.resolutions.push({ - id: level.id, - label: level.height + 'p', - active: level.id === currentResolutionId, - width: level.width, - height: level.height - }) - } + private loadResolutions () { + this.resolutions = this.embed.player.peertubeResolutions().getResolutions() + .map(r => ({ + id: r.id, + label: r.label, + active: r.selected, + width: r.width, + height: r.height + })) this.channel.notify({ method: 'resolutionUpdate', diff --git a/client/src/standalone/videos/test-embed.ts b/client/src/standalone/videos/test-embed.ts index a28a83cc1..18c338a2d 100644 --- a/client/src/standalone/videos/test-embed.ts +++ b/client/src/standalone/videos/test-embed.ts @@ -86,8 +86,6 @@ window.addEventListener('load', async () => { captionEl.innerHTML = '' captions.forEach(c => { - console.log(c) - if (c.mode === 'showing') { const itemEl = document.createElement('strong') itemEl.innerText = `${c.label} (active)` diff --git a/client/yarn.lock b/client/yarn.lock index 8f41b3102..508b8ad28 100644 --- a/client/yarn.lock +++ b/client/yarn.lock @@ -12618,14 +12618,6 @@ videojs-contextmenu-pt@^5.4.1: global "^4.4.0" video.js "^7.6.0" -videojs-contrib-quality-levels@^2.0.9: - version "2.1.0" - resolved "https://registry.yarnpkg.com/videojs-contrib-quality-levels/-/videojs-contrib-quality-levels-2.1.0.tgz#046e9e21ed01043f512b83a1916001d552457083" - integrity sha512-dqGQGbL9AFhucxki7Zh0c3kIhH0PAPcHEh6jUdRyaFCVeOuqnJrOYs/3wNtsokDdBdRf2Du2annpu4Z2XaSZRg== - dependencies: - global "^4.3.2" - video.js "^6 || ^7" - videojs-dock@^2.0.2: version "2.2.0" resolved "https://registry.yarnpkg.com/videojs-dock/-/videojs-dock-2.2.0.tgz#57e4f942da1b8e930c4387fed85942473bc40829" diff --git a/config/default.yaml b/config/default.yaml index 3865ab5cf..707187b7c 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -89,7 +89,13 @@ storage: captions: 'storage/captions/' cache: 'storage/cache/' plugins: 'storage/plugins/' - # Overridable client files : logo.svg, favicon.png and icons/*.png (PWA) in client/dist/assets/images + # Overridable client files in client/dist/assets/images : + # - logo.svg + # - favicon.png + # - default-playlist.jpg + # - default-avatar-account.png + # - default-avatar-video-channel.png + # - and icons/*.png (PWA) # Could contain for example assets/images/favicon.png # If the file exists, peertube will serve it # If not, peertube will fallback to the default fil @@ -243,6 +249,11 @@ peertube: # You can use a custom URL if your want, that respect the format behind https://joinpeertube.org/api/v1/versions.json url: 'https://joinpeertube.org/api/v1/versions.json' +webadmin: + configuration: + edit: + allowed: true + cache: previews: size: 500 # Max number of previews you want to cache diff --git a/config/production.yaml.example b/config/production.yaml.example index 94238fad0..e405daa71 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example @@ -87,7 +87,13 @@ storage: captions: '/var/www/peertube/storage/captions/' cache: '/var/www/peertube/storage/cache/' plugins: '/var/www/peertube/storage/plugins/' - # Overridable client files : logo.svg, favicon.png and icons/*.png (PWA) in client/dist/assets/images + # Overridable client files in client/dist/assets/images : + # - logo.svg + # - favicon.png + # - default-playlist.jpg + # - default-avatar-account.png + # - default-avatar-video-channel.png + # - and icons/*.png (PWA) # Could contain for example assets/images/favicon.png # If the file exists, peertube will serve it # If not, peertube will fallback to the default file @@ -241,6 +247,11 @@ peertube: # You can use a custom URL if your want, that respect the format behind https://joinpeertube.org/api/v1/versions.json url: 'https://joinpeertube.org/api/v1/versions.json' +webadmin: + configuration: + # Set to false if you want the config to be readonly + allow_edits: true + ############################################################################### # # From this point, all the following keys can be overridden by the web interface diff --git a/package.json b/package.json index ef22e2961..91b2be0da 100644 --- a/package.json +++ b/package.json @@ -198,8 +198,6 @@ "eslint-plugin-standard": "^5.0.0", "fast-xml-parser": "^3.19.0", "maildev": "^1.0.0-rc3", - "marked": "^3.0.2", - "marked-man": "^0.7.0", "mocha": "^9.0.0", "nodemon": "^2.0.1", "proxy": "^1.0.2", diff --git a/scripts/generate-cli-doc.sh b/scripts/generate-cli-doc.sh deleted file mode 100755 index 0d00f183b..000000000 --- a/scripts/generate-cli-doc.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -set -eu - -node_modules/marked-man/bin/marked-man server/tools/README.md > dist/server/tools/peertube.8 diff --git a/server/controllers/api/config.ts b/server/controllers/api/config.ts index d542f62aa..5ea1f67c9 100644 --- a/server/controllers/api/config.ts +++ b/server/controllers/api/config.ts @@ -11,7 +11,7 @@ import { objectConverter } from '../../helpers/core-utils' import { CONFIG, reloadConfig } from '../../initializers/config' import { ClientHtml } from '../../lib/client-html' import { asyncMiddleware, authenticate, ensureUserHasRight, openapiOperationDoc } from '../../middlewares' -import { customConfigUpdateValidator } from '../../middlewares/validators/config' +import { customConfigUpdateValidator, ensureConfigIsEditable } from '../../middlewares/validators/config' const configRouter = express.Router() @@ -38,6 +38,7 @@ configRouter.put('/custom', openapiOperationDoc({ operationId: 'putCustomConfig' }), authenticate, ensureUserHasRight(UserRight.MANAGE_CONFIGURATION), + ensureConfigIsEditable, customConfigUpdateValidator, asyncMiddleware(updateCustomConfig) ) @@ -46,6 +47,7 @@ configRouter.delete('/custom', openapiOperationDoc({ operationId: 'delCustomConfig' }), authenticate, ensureUserHasRight(UserRight.MANAGE_CONFIGURATION), + ensureConfigIsEditable, asyncMiddleware(deleteCustomConfig) ) diff --git a/server/controllers/api/search/search-video-channels.ts b/server/controllers/api/search/search-video-channels.ts index 25173ac20..089feed65 100644 --- a/server/controllers/api/search/search-video-channels.ts +++ b/server/controllers/api/search/search-video-channels.ts @@ -47,7 +47,7 @@ export { searchChannelsRouter } function searchVideoChannels (req: express.Request, res: express.Response) { const query = pickSearchChannelQuery(req.query) - let search = query.search || '' + const search = query.search || '' const parts = search.split('@') @@ -58,7 +58,7 @@ function searchVideoChannels (req: express.Request, res: express.Response) { if (isURISearch(search) || isWebfingerSearch) return searchVideoChannelURI(search, isWebfingerSearch, res) // @username -> username to search in DB - if (search.startsWith('@')) search = search.replace(/^@/, '') + if (search.startsWith('@')) query.search = search.replace(/^@/, '') if (isSearchIndexSearch(query)) { return searchVideoChannelsIndex(query, res) diff --git a/server/controllers/client.ts b/server/controllers/client.ts index cdc556da2..86ac5fbbc 100644 --- a/server/controllers/client.ts +++ b/server/controllers/client.ts @@ -65,7 +65,10 @@ const staticClientOverrides = [ 'assets/images/icons/icon-96x96.png', 'assets/images/icons/icon-144x144.png', 'assets/images/icons/icon-192x192.png', - 'assets/images/icons/icon-512x512.png' + 'assets/images/icons/icon-512x512.png', + 'assets/images/default-playlist.jpg', + 'assets/images/default-avatar-account.png', + 'assets/images/default-avatar-video-channel.png' ] for (const staticClientOverride of staticClientOverrides) { diff --git a/server/helpers/logger.ts b/server/helpers/logger.ts index 4bd00e503..81b0dfaaa 100644 --- a/server/helpers/logger.ts +++ b/server/helpers/logger.ts @@ -123,10 +123,9 @@ function buildLogger (labelSuffix?: string) { } function bunyanLogFactory (level: string) { - return function () { + return function (...params: any[]) { let meta = null - let args: any[] = [] - args.concat(arguments) + let args = [].concat(params) if (arguments[0] instanceof Error) { meta = arguments[0].toString() @@ -143,6 +142,7 @@ function bunyanLogFactory (level: string) { } const bunyanLogger = { + level: () => { }, trace: bunyanLogFactory('debug'), debug: bunyanLogFactory('debug'), info: bunyanLogFactory('info'), diff --git a/server/helpers/markdown.ts b/server/helpers/markdown.ts index 41e57d857..ebf479b98 100644 --- a/server/helpers/markdown.ts +++ b/server/helpers/markdown.ts @@ -34,7 +34,7 @@ const mdToPlainText = text => { return safeHtml.replace(/<[^>]+>/g, '') .replace(/\n$/, '') - .replace('\n', ', ') + .replace(/\n/g, ', ') } // --------------------------------------------------------------------------- diff --git a/server/initializers/config.ts b/server/initializers/config.ts index be9fc61f0..b2a8e9e19 100644 --- a/server/initializers/config.ts +++ b/server/initializers/config.ts @@ -195,6 +195,13 @@ const CONFIG = { URL: config.get('peertube.check_latest_version.url') } }, + WEBADMIN: { + CONFIGURATION: { + EDITS: { + ALLOWED: config.get('webadmin.configuration.edit.allowed') + } + } + }, ADMIN: { get EMAIL () { return config.get('admin.email') } }, @@ -411,14 +418,22 @@ export { // --------------------------------------------------------------------------- function getLocalConfigFilePath () { - const configSources = config.util.getConfigSources() - if (configSources.length === 0) throw new Error('Invalid config source.') + const localConfigDir = getLocalConfigDir() let filename = 'local' if (process.env.NODE_ENV) filename += `-${process.env.NODE_ENV}` if (process.env.NODE_APP_INSTANCE) filename += `-${process.env.NODE_APP_INSTANCE}` - return join(dirname(configSources[0].name), filename + '.json') + return join(localConfigDir, filename + '.json') +} + +function getLocalConfigDir () { + if (process.env.PEERTUBE_LOCAL_CONFIG) return process.env.PEERTUBE_LOCAL_CONFIG + + const configSources = config.util.getConfigSources() + if (configSources.length === 0) throw new Error('Invalid config source.') + + return dirname(configSources[0].name) } function buildVideosRedundancy (objs: any[]): VideosRedundancyStrategy[] { @@ -437,19 +452,19 @@ function buildVideosRedundancy (objs: any[]): VideosRedundancyStrategy[] { export function reloadConfig () { - function getConfigDirectory () { + function getConfigDirectories () { if (process.env.NODE_CONFIG_DIR) { - return process.env.NODE_CONFIG_DIR + return process.env.NODE_CONFIG_DIR.split(":") } - return join(root(), 'config') + return [ join(root(), 'config') ] } function purge () { - const directory = getConfigDirectory() + const directories = getConfigDirectories() for (const fileName in require.cache) { - if (fileName.includes(directory) === false) { + if (directories.some((dir) => fileName.includes(dir)) === false) { continue } diff --git a/server/lib/client-html.ts b/server/lib/client-html.ts index 3529acf5e..84b4ca97d 100644 --- a/server/lib/client-html.ts +++ b/server/lib/client-html.ts @@ -303,7 +303,6 @@ class ClientHtml { let html = buffer.toString() - if (paramLang) html = ClientHtml.addHtmlLang(html, paramLang) html = ClientHtml.addManifestContentHash(html) html = ClientHtml.addFaviconContentHash(html) html = ClientHtml.addLogoContentHash(html) @@ -555,8 +554,7 @@ function sendHTML (html: string, res: express.Response) { } async function serveIndexHTML (req: express.Request, res: express.Response) { - if (req.accepts(ACCEPT_HEADERS) === 'html' || - !req.headers.accept) { + if (req.accepts(ACCEPT_HEADERS) === 'html' || !req.headers.accept) { try { await generateHTMLPage(req, res, req.params.language) return diff --git a/server/lib/emailer.ts b/server/lib/emailer.ts index 6bb61484b..60284ea28 100644 --- a/server/lib/emailer.ts +++ b/server/lib/emailer.ts @@ -222,7 +222,7 @@ class Emailer { sendmail: true, newline: 'unix', path: CONFIG.SMTP.SENDMAIL, - logger: bunyanLogger as any + logger: bunyanLogger }) } diff --git a/server/lib/server-config-manager.ts b/server/lib/server-config-manager.ts index 80d87a9d3..358f47133 100644 --- a/server/lib/server-config-manager.ts +++ b/server/lib/server-config-manager.ts @@ -42,6 +42,7 @@ class ServerConfigManager { const defaultTheme = getThemeOrDefault(CONFIG.THEME.DEFAULT, DEFAULT_THEME_NAME) return { + allowEdits: CONFIG.WEBADMIN.CONFIGURATION.EDITS.ALLOWED, instance: { name: CONFIG.INSTANCE.NAME, shortDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION, diff --git a/server/lib/transcoding/video-transcoding-profiles.ts b/server/lib/transcoding/video-transcoding-profiles.ts index 848b823e6..92971210c 100644 --- a/server/lib/transcoding/video-transcoding-profiles.ts +++ b/server/lib/transcoding/video-transcoding-profiles.ts @@ -65,7 +65,7 @@ const defaultAACOptionsBuilder: EncoderOptionsBuilder = async ({ input, streamNu logger.debug('Calculating audio bitrate of %s by AAC encoder.', input, { bitrate: parsedAudio.bitrate, audioCodecName }) - if (bitrate !== undefined && bitrate !== -1) { + if (bitrate !== -1) { return { outputOptions: [ buildStreamSuffix('-b:a', streamNum), bitrate + 'k' ] } } diff --git a/server/middlewares/validators/config.ts b/server/middlewares/validators/config.ts index 16a840667..5f1ac89bc 100644 --- a/server/middlewares/validators/config.ts +++ b/server/middlewares/validators/config.ts @@ -1,13 +1,14 @@ import express from 'express' import { body } from 'express-validator' import { isIntOrNull } from '@server/helpers/custom-validators/misc' -import { isEmailEnabled } from '@server/initializers/config' +import { CONFIG, isEmailEnabled } from '@server/initializers/config' import { CustomConfig } from '../../../shared/models/server/custom-config.model' import { isThemeNameValid } from '../../helpers/custom-validators/plugins' import { isUserNSFWPolicyValid, isUserVideoQuotaDailyValid, isUserVideoQuotaValid } from '../../helpers/custom-validators/users' import { logger } from '../../helpers/logger' import { isThemeRegistered } from '../../lib/plugins/theme-utils' import { areValidationErrors } from './shared' +import { HttpStatusCode } from '@shared/models/http/http-error-codes' const customConfigUpdateValidator = [ body('instance.name').exists().withMessage('Should have a valid instance name'), @@ -104,10 +105,21 @@ const customConfigUpdateValidator = [ } ] +function ensureConfigIsEditable (req: express.Request, res: express.Response, next: express.NextFunction) { + if (!CONFIG.WEBADMIN.CONFIGURATION.EDITS.ALLOWED) { + return res.fail({ + status: HttpStatusCode.METHOD_NOT_ALLOWED_405, + message: 'Server configuration is static and cannot be edited' + }) + } + return next() +} + // --------------------------------------------------------------------------- export { - customConfigUpdateValidator + customConfigUpdateValidator, + ensureConfigIsEditable } function checkInvalidConfigIfEmailDisabled (customConfig: CustomConfig, res: express.Response) { diff --git a/server/middlewares/validators/oembed.ts b/server/middlewares/validators/oembed.ts index 96c8adc99..32dd05271 100644 --- a/server/middlewares/validators/oembed.ts +++ b/server/middlewares/validators/oembed.ts @@ -28,7 +28,6 @@ function buildUrls (paths: string[]) { const startPlaylistURLs = buildUrls(playlistPaths) const startVideoURLs = buildUrls(videoPaths) -const watchRegex = /([^/]+)$/ const isURLOptions = { require_host: true, require_tld: true @@ -81,9 +80,9 @@ const oembedValidator = [ const startIsOk = isVideo || isPlaylist - const matches = watchRegex.exec(urlPath) + const parts = urlPath.split('/') - if (startIsOk === false || matches === null) { + if (startIsOk === false || parts.length === 0) { return res.fail({ status: HttpStatusCode.BAD_REQUEST_400, message: 'Invalid url.', @@ -93,7 +92,7 @@ const oembedValidator = [ }) } - const elementId = toCompleteUUID(matches[1]) + const elementId = toCompleteUUID(parts.pop()) if (isIdOrUUIDValid(elementId) === false) { return res.fail({ message: 'Invalid video or playlist id.' }) } diff --git a/server/models/video/sql/shared/video-model-builder.ts b/server/models/video/sql/shared/video-model-builder.ts index e7e2aa1ca..33a0181e9 100644 --- a/server/models/video/sql/shared/video-model-builder.ts +++ b/server/models/video/sql/shared/video-model-builder.ts @@ -120,7 +120,7 @@ export class VideoModelBuilder { private grabSeparateStreamingPlaylistFiles (rowsStreamingPlaylist?: SQLRow[]) { if (!rowsStreamingPlaylist) return - for (const row of rowsStreamingPlaylist || []) { + for (const row of rowsStreamingPlaylist) { const id = row['VideoStreamingPlaylists.id'] if (!id) continue diff --git a/server/tests/api/server/config.ts b/server/tests/api/server/config.ts index c4dd882b8..e057ec1a2 100644 --- a/server/tests/api/server/config.ts +++ b/server/tests/api/server/config.ts @@ -201,6 +201,199 @@ function checkUpdatedConfig (data: CustomConfig) { expect(data.broadcastMessage.dismissable).to.be.true } +const newCustomConfig: CustomConfig = { + instance: { + name: 'PeerTube updated', + shortDescription: 'my short description', + description: 'my super description', + terms: 'my super terms', + codeOfConduct: 'my super coc', + + creationReason: 'my super creation reason', + moderationInformation: 'my super moderation information', + administrator: 'Kuja', + maintenanceLifetime: 'forever', + businessModel: 'my super business model', + hardwareInformation: '2vCore 3GB RAM', + + languages: [ 'en', 'es' ], + categories: [ 1, 2 ], + + isNSFW: true, + defaultNSFWPolicy: 'blur' as 'blur', + + defaultClientRoute: '/videos/recently-added', + + customizations: { + javascript: 'alert("coucou")', + css: 'body { background-color: red; }' + } + }, + theme: { + default: 'default' + }, + services: { + twitter: { + username: '@Kuja', + whitelisted: true + } + }, + cache: { + previews: { + size: 2 + }, + captions: { + size: 3 + }, + torrents: { + size: 4 + } + }, + signup: { + enabled: false, + limit: 5, + requiresEmailVerification: false, + minimumAge: 10 + }, + admin: { + email: 'superadmin1@example.com' + }, + contactForm: { + enabled: false + }, + user: { + videoQuota: 5242881, + videoQuotaDaily: 318742 + }, + transcoding: { + enabled: true, + allowAdditionalExtensions: true, + allowAudioFiles: true, + threads: 1, + concurrency: 3, + profile: 'vod_profile', + resolutions: { + '0p': false, + '240p': false, + '360p': true, + '480p': true, + '720p': false, + '1080p': false, + '1440p': false, + '2160p': false + }, + webtorrent: { + enabled: true + }, + hls: { + enabled: false + } + }, + live: { + enabled: true, + allowReplay: true, + maxDuration: 5000, + maxInstanceLives: -1, + maxUserLives: 10, + transcoding: { + enabled: true, + threads: 4, + profile: 'live_profile', + resolutions: { + '240p': true, + '360p': true, + '480p': true, + '720p': true, + '1080p': true, + '1440p': true, + '2160p': true + } + } + }, + import: { + videos: { + concurrency: 4, + http: { + enabled: false + }, + torrent: { + enabled: false + } + } + }, + trending: { + videos: { + algorithms: { + enabled: [ 'best', 'hot', 'most-viewed', 'most-liked' ], + default: 'hot' + } + } + }, + autoBlacklist: { + videos: { + ofUsers: { + enabled: true + } + } + }, + followers: { + instance: { + enabled: false, + manualApproval: true + } + }, + followings: { + instance: { + autoFollowBack: { + enabled: true + }, + autoFollowIndex: { + enabled: true, + indexUrl: 'https://updated.example.com' + } + } + }, + broadcastMessage: { + enabled: true, + level: 'error', + message: 'super bad message', + dismissable: true + }, + search: { + remoteUri: { + anonymous: true, + users: true + }, + searchIndex: { + enabled: true, + url: 'https://search.joinpeertube.org', + disableLocalSearch: true, + isDefaultSearch: true + } + } +} + +describe('Test static config', function () { + let server: PeerTubeServer = null + + before(async function () { + this.timeout(30000) + + server = await createSingleServer(1, { webadmin: { configuration: { edit: { allowed: false } } } }) + await setAccessTokensToServers([ server ]) + }) + + it('Should tell the client that edits are not allowed', async function () { + const data = await server.config.getConfig() + + expect(data.allowEdits).to.be.false + }) + + it('Should error when client tries to update', async function () { + await server.config.updateCustomConfig({ newCustomConfig, expectedStatus: 405 }) + }) +}) + describe('Test config', function () { let server: PeerTubeServer = null @@ -252,177 +445,6 @@ describe('Test config', function () { }) it('Should update the customized configuration', async function () { - const newCustomConfig: CustomConfig = { - instance: { - name: 'PeerTube updated', - shortDescription: 'my short description', - description: 'my super description', - terms: 'my super terms', - codeOfConduct: 'my super coc', - - creationReason: 'my super creation reason', - moderationInformation: 'my super moderation information', - administrator: 'Kuja', - maintenanceLifetime: 'forever', - businessModel: 'my super business model', - hardwareInformation: '2vCore 3GB RAM', - - languages: [ 'en', 'es' ], - categories: [ 1, 2 ], - - isNSFW: true, - defaultNSFWPolicy: 'blur' as 'blur', - - defaultClientRoute: '/videos/recently-added', - - customizations: { - javascript: 'alert("coucou")', - css: 'body { background-color: red; }' - } - }, - theme: { - default: 'default' - }, - services: { - twitter: { - username: '@Kuja', - whitelisted: true - } - }, - cache: { - previews: { - size: 2 - }, - captions: { - size: 3 - }, - torrents: { - size: 4 - } - }, - signup: { - enabled: false, - limit: 5, - requiresEmailVerification: false, - minimumAge: 10 - }, - admin: { - email: 'superadmin1@example.com' - }, - contactForm: { - enabled: false - }, - user: { - videoQuota: 5242881, - videoQuotaDaily: 318742 - }, - transcoding: { - enabled: true, - allowAdditionalExtensions: true, - allowAudioFiles: true, - threads: 1, - concurrency: 3, - profile: 'vod_profile', - resolutions: { - '0p': false, - '240p': false, - '360p': true, - '480p': true, - '720p': false, - '1080p': false, - '1440p': false, - '2160p': false - }, - webtorrent: { - enabled: true - }, - hls: { - enabled: false - } - }, - live: { - enabled: true, - allowReplay: true, - maxDuration: 5000, - maxInstanceLives: -1, - maxUserLives: 10, - transcoding: { - enabled: true, - threads: 4, - profile: 'live_profile', - resolutions: { - '240p': true, - '360p': true, - '480p': true, - '720p': true, - '1080p': true, - '1440p': true, - '2160p': true - } - } - }, - import: { - videos: { - concurrency: 4, - http: { - enabled: false - }, - torrent: { - enabled: false - } - } - }, - trending: { - videos: { - algorithms: { - enabled: [ 'best', 'hot', 'most-viewed', 'most-liked' ], - default: 'hot' - } - } - }, - autoBlacklist: { - videos: { - ofUsers: { - enabled: true - } - } - }, - followers: { - instance: { - enabled: false, - manualApproval: true - } - }, - followings: { - instance: { - autoFollowBack: { - enabled: true - }, - autoFollowIndex: { - enabled: true, - indexUrl: 'https://updated.example.com' - } - } - }, - broadcastMessage: { - enabled: true, - level: 'error', - message: 'super bad message', - dismissable: true - }, - search: { - remoteUri: { - anonymous: true, - users: true - }, - searchIndex: { - enabled: true, - url: 'https://search.joinpeertube.org', - disableLocalSearch: true, - isDefaultSearch: true - } - } - } await server.config.updateCustomConfig({ newCustomConfig }) const data = await server.config.getCustomConfig() diff --git a/server/tools/README.md b/server/tools/README.md index e86df3bfc..449c57ce1 100644 --- a/server/tools/README.md +++ b/server/tools/README.md @@ -1,82 +1,3 @@ -peertube(8) -- companion CLI for PeerTube -========================================= +# PeerTube CLI -SYNOPSIS --------- - -``` -peertube [command] [options] -``` - -DESCRIPTION ------------ - -`peertube` wraps various utilities around PeerTube that are used either on a running local, running remote, or cold local instance. - -COMMANDS --------- - -Unless otherwise specified, every command can be queried for its own help or manual by passing its name to the `help` command, or by using the `--help` option. - -`auth [action]`: stores credentials for your accounts on remote instances, so that you don't need to pass them at every command - -`upload|up`: upload a video to a remote instance - - $ peertube upload \ - -u "PEERTUBE_URL" \ - -U "PEERTUBE_USER" \ - --password "PEERTUBE_PASSWORD" - -`import-videos|import`: import a video from a streaming platform to a remote instance - - $ peertube import \ - -u "PEERTUBE_URL" \ - -U "PEERTUBE_USER" \ - --password "PEERTUBE_PASSWORD" \ - -t "TARGET_URL" - - The target URL can be directly the video file, or any of the supported sites of youtube-dl. The video is downloaded locally and then uploaded. Already downloaded videos will not be uploaded twice, so you can run and re-run the script in case of crash, disconnection… - -`watch|w`: watch a video in the terminal ✩°。⋆ - - -g, --gui player type (default: ascii) - -i, --invert invert colors (ascii player only) - -r, --resolution video resolution (default: 720) - - It provides support for different players: - - - ascii (default ; plays in ascii art in your terminal!) - - mpv - - mplayer - - vlc - - stdout - - xbmc - - airplay - - chromecast - -`repl`: interact with the application libraries and objects even when PeerTube is not running - - Type .help to see the repl-only functions, or to see the available PeerTube core functions: - - repl> lodash.keys(context) - -`help [cmd]`: display help for [cmd] - -EXAMPLES --------- - - $ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD" - $ peertube up - $ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10 - -SEE ALSO --------- - -[PeerTube Tools Documentation](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/tools.md) - -[PeerTube Admin Documentation](https://docs.joinpeertube.org/lang/en/docs/) - -REPORTING BUGS --------------- - -See [PeerTube repository](https://github.com/Chocobozzz/PeerTube). +See https://docs.joinpeertube.org/maintain-tools?id=remote-tools diff --git a/server/tools/package.json b/server/tools/package.json index e3899f3b2..b20f38244 100644 --- a/server/tools/package.json +++ b/server/tools/package.json @@ -5,8 +5,7 @@ "dependencies": { "application-config": "^2.0.0", "cli-table3": "^0.6.0", - "netrc-parser": "^3.1.6", - "webtorrent-hybrid": "^4.0.3" + "netrc-parser": "^3.1.6" }, "devDependencies": {} } diff --git a/server/tools/peertube-repl.ts b/server/tools/peertube-repl.ts deleted file mode 100644 index eb0a776b8..000000000 --- a/server/tools/peertube-repl.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { registerTSPaths } from '../helpers/register-ts-paths' -registerTSPaths() - -import * as repl from 'repl' -import * as path from 'path' -import * as _ from 'lodash' -import * as Sequelize from 'sequelize' -import * as YoutubeDL from 'youtube-dl' -import { initDatabaseModels, sequelizeTypescript } from '../initializers/database' -import * as cli from '../tools/cli' -import { logger } from '../helpers/logger' -import * as constants from '../initializers/constants' -import * as modelsUtils from '../models/utils' -import * as coreUtils from '../helpers/core-utils' -import * as ffmpegUtils from '../helpers/ffmpeg-utils' -import * as peertubeCryptoUtils from '../helpers/peertube-crypto' -import * as utils from '../helpers/utils' -import * as YoutubeDLUtils from '../helpers/youtube-dl' - -const start = async () => { - await initDatabaseModels(true) - - const versionCommitHash = await utils.getServerCommit() - - const initContext = (replServer) => { - return (context) => { - const properties = { - context, - repl: replServer, - env: process.env, - lodash: _, - path, - cli, - logger, - constants, - Sequelize, - sequelizeTypescript, - modelsUtils, - models: sequelizeTypescript.models, - transaction: sequelizeTypescript.transaction, - query: sequelizeTypescript.query, - queryInterface: sequelizeTypescript.getQueryInterface(), - YoutubeDL, - coreUtils, - ffmpegUtils, - peertubeCryptoUtils, - utils, - YoutubeDLUtils - } - - for (const prop in properties) { - Object.defineProperty(context, prop, { - configurable: false, - enumerable: true, - value: properties[prop] - }) - } - } - } - - const replServer = repl.start({ - prompt: `PeerTube [${cli.version}] (${versionCommitHash})> ` - }) - - initContext(replServer)(replServer.context) - replServer.on('reset', initContext(replServer)) - replServer.on('exit', () => process.exit()) - - const resetCommand = { - help: 'Reset REPL', - action () { - this.write('.clear\n') - this.displayPrompt() - } - } - replServer.defineCommand('reset', resetCommand) - replServer.defineCommand('r', resetCommand) -} - -start() - .catch((err) => { - console.error(err) - }) diff --git a/server/tools/peertube-watch.ts b/server/tools/peertube-watch.ts deleted file mode 100644 index 892c9e7a6..000000000 --- a/server/tools/peertube-watch.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { registerTSPaths } from '../helpers/register-ts-paths' -registerTSPaths() - -import { program, Option, OptionValues } from 'commander' -import { join } from 'path' -import { execSync } from 'child_process' - -program - .name('watch') - .arguments('') - .addOption( - new Option('-g, --gui ', 'player type') - .default('vlc') - .choices([ 'airplay', 'stdout', 'chromecast', 'mpv', 'vlc', 'mplayer', 'xbmc' ]) - ) - .option('-r, --resolution ', 'video resolution', '480') - .addHelpText('after', '\n\n Examples:\n\n' + - ' $ peertube watch -g mpv https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' + - ' $ peertube watch --gui stdout https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' + - ' $ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' - ) - .action((url, options) => run(url, options)) - .parse(process.argv) - -function run (url: string, options: OptionValues) { - if (!url) { - console.error(' positional argument is required.') - process.exit(-1) - } - - const cmd = 'node ' + join(__dirname, 'node_modules', 'webtorrent-hybrid', 'bin', 'cmd.js') - const args = ` --${options.gui} ` + - url.replace(/(\/videos\/watch\/)|\/w\//, '/download/torrents/') + - `-${options.resolution}.torrent` - - try { - execSync(cmd + args) - } catch (err) { - console.error('Cannto exec command.', err) - process.exit(-1) - } -} diff --git a/server/tools/peertube.ts b/server/tools/peertube.ts index a40c1332e..9e07640f0 100644 --- a/server/tools/peertube.ts +++ b/server/tools/peertube.ts @@ -1,7 +1,5 @@ #!/usr/bin/env node -/* eslint-disable no-useless-escape */ - import { registerTSPaths } from '../helpers/register-ts-paths' registerTSPaths() @@ -18,8 +16,6 @@ program .command('upload', 'upload a video').alias('up') .command('import-videos', 'import a video from a streaming platform').alias('import') .command('get-access-token', 'get a peertube access token', { noHelp: true }).alias('token') - .command('watch', 'watch a video in the terminal ✩°。⋆').alias('w') - .command('repl', 'initiate a REPL to access internals') .command('plugins [action]', 'manage instance plugins/themes').alias('p') .command('redundancy [action]', 'manage instance redundancies').alias('r') @@ -47,7 +43,7 @@ if (!process.argv.slice(2).length) { / / -" _/"/ / | ._\\\\ |\\ |_.".-" / / | __\\)|)|),/|_." _,." - / \_." " ") | ).-""---''-- + / \\_." " ") | ).-""---''-- ( "/.""7__-""'' | " ."._--._ \\ \\ (_ __ "" ".,_ @@ -72,8 +68,7 @@ getSettings() .addHelpText('after', '\n\n State: ' + state + '\n\n' + ' Examples:\n\n' + ' $ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD"\n' + - ' $ peertube up \n' + - ' $ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' + ' $ peertube up \n' ) .parse(process.argv) }) diff --git a/server/tools/test-live.ts b/server/tools/test-live.ts deleted file mode 100644 index 27f2a4a92..000000000 --- a/server/tools/test-live.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { program } from 'commander' -import { LiveVideoCreate, VideoPrivacy } from '@shared/models' -import { - createSingleServer, - killallServers, - sendRTMPStream, - PeerTubeServer, - setAccessTokensToServers, - setDefaultVideoChannel -} from '../../shared/extra-utils' -import { registerTSPaths } from '../helpers/register-ts-paths' - -registerTSPaths() - -type CommandType = 'live-mux' | 'live-transcoding' - -registerTSPaths() - -const command = program - .name('test-live') - .option('-t, --type ', 'live-muxing|live-transcoding') - .parse(process.argv) - -run() - .catch(err => { - console.error(err) - process.exit(-1) - }) - -async function run () { - const commandType: CommandType = command['type'] - if (!commandType) { - console.error('Miss command type') - process.exit(-1) - } - - console.log('Starting server.') - - const server = await createSingleServer(1, {}, { hideLogs: false, nodeArgs: [ '--inspect' ] }) - - const cleanup = async () => { - console.log('Killing server') - await killallServers([ server ]) - } - - process.on('exit', cleanup) - process.on('SIGINT', cleanup) - - await setAccessTokensToServers([ server ]) - await setDefaultVideoChannel([ server ]) - - await buildConfig(server, commandType) - - const attributes: LiveVideoCreate = { - name: 'live', - saveReplay: true, - channelId: server.store.channel.id, - privacy: VideoPrivacy.PUBLIC - } - - console.log('Creating live.') - - const { uuid: liveVideoUUID } = await server.live.create({ fields: attributes }) - - const live = await server.live.get({ videoId: liveVideoUUID }) - - console.log('Sending RTMP stream.') - - const ffmpegCommand = sendRTMPStream({ rtmpBaseUrl: live.rtmpUrl, streamKey: live.streamKey }) - - ffmpegCommand.on('error', err => { - console.error(err) - process.exit(-1) - }) - - ffmpegCommand.on('end', () => { - console.log('ffmpeg ended') - process.exit(0) - }) -} - -// ---------------------------------------------------------------------------- - -async function buildConfig (server: PeerTubeServer, commandType: CommandType) { - await server.config.updateCustomSubConfig({ - newConfig: { - instance: { - customizations: { - javascript: '', - css: '' - } - }, - live: { - enabled: true, - allowReplay: true, - transcoding: { - enabled: commandType === 'live-transcoding' - } - } - } - }) -} diff --git a/server/tools/yarn.lock b/server/tools/yarn.lock index dceacb223..28e9779da 100644 --- a/server/tools/yarn.lock +++ b/server/tools/yarn.lock @@ -23,97 +23,6 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" - integrity sha1-m4sMxmPWaafY9vXQiToU00jzD78= - -"@protobufjs/base64@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" - integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== - -"@protobufjs/codegen@^2.0.4": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" - integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== - -"@protobufjs/eventemitter@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" - integrity sha1-NVy8mLr61ZePntCV85diHx0Ga3A= - -"@protobufjs/fetch@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" - integrity sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU= - dependencies: - "@protobufjs/aspromise" "^1.1.1" - "@protobufjs/inquire" "^1.1.0" - -"@protobufjs/float@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" - integrity sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E= - -"@protobufjs/inquire@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" - integrity sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik= - -"@protobufjs/path@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" - integrity sha1-bMKyDFya1q0NzP0hynZz2Nf79o0= - -"@protobufjs/pool@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" - integrity sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q= - -"@protobufjs/utf8@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" - integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA= - -"@types/long@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.1.tgz#459c65fa1867dafe6a8f322c4c51695663cc55e9" - integrity sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w== - -"@types/node@>=13.7.0": - version "15.12.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d" - integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww== - -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -addr-to-ip-port@^1.0.1, addr-to-ip-port@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/addr-to-ip-port/-/addr-to-ip-port-1.5.1.tgz#bfada13fd6aeeeac19f1e9f7d84b4bbab45e5208" - integrity sha512-bA+dyydTNuQtrEDJ0g9eR7XabNhvrM5yZY0hvTbNK3yvoeC73ZqMES6E1cEqH9WPxs4uMtMsOjfwS4FmluhsAA== - -airplay-js@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/airplay-js/-/airplay-js-0.3.0.tgz#16bac2ef91b31249382924bfdeeabaddc9db7398" - integrity sha1-FrrC75GzEkk4KSS/3uq63cnbc5g= - dependencies: - mdns-js "0.5.0" - plist-with-patches "0.5.1" - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - -ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= - ansi-regex@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" @@ -140,221 +49,6 @@ application-config@^2.0.0: load-json-file "^6.2.0" write-json-file "^4.2.0" -aproba@^1.0.3: - version "1.2.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== - -are-we-there-yet@~1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" - integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -bencode@^2.0.0, bencode@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/bencode/-/bencode-2.0.1.tgz#667a6a31c5e038d558608333da6b7c94e836c85b" - integrity sha512-2uhEl8FdjSBUyb69qDTgOEeeqDTa+n3yMQzLW0cOzNf1Ow5bwcg3idf+qsWisIKRH8Bk8oC7UXL8irRcPA8ZEQ== - dependencies: - safe-buffer "^5.1.1" - -bep53-range@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/bep53-range/-/bep53-range-1.1.0.tgz#a009311710c955d27eb3a30cf329e8c139693d27" - integrity sha512-yGQTG4NtwTciX0Bkgk1FqQL4p+NiCQKpTSFho2lrxvUkXIlzyJDwraj8aYxAxRZMnnOhRr7QlIBoMRPEnIR34Q== - -binary-search@^1.3.4: - version "1.3.6" - resolved "https://registry.yarnpkg.com/binary-search/-/binary-search-1.3.6.tgz#e32426016a0c5092f0f3598836a1c7da3560565c" - integrity sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA== - -bitfield@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/bitfield/-/bitfield-4.0.0.tgz#3094123c870030dc6198a283d779639bd2a8e256" - integrity sha512-jtuSG9CQr5yoHFuvhgf50+DH8Aezl3C/mMSfqdG4DqP7Kqe34uBUtCEHPN9oWaldTm96/i7y5e778SnM5ES4rw== - -bittorrent-dht@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/bittorrent-dht/-/bittorrent-dht-10.0.0.tgz#01de59bb03ed86a8847cb533134925d236d7f565" - integrity sha512-mrM18HMabvd3n/hQa4PYe942nWvBsJCBQb5PfT9kUJLlspNPGiulZYSCgWs7+XarS7nufYrGEp07f9eKTKIrgw== - dependencies: - bencode "^2.0.0" - debug "^4.1.1" - k-bucket "^5.0.0" - k-rpc "^5.0.0" - last-one-wins "^1.0.4" - lru "^3.1.0" - randombytes "^2.0.5" - record-cache "^1.0.2" - simple-sha1 "^3.0.0" - -bittorrent-lsd@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/bittorrent-lsd/-/bittorrent-lsd-1.1.0.tgz#64f7fa5a277e0236af6c03d475065f2bb3fc6ade" - integrity sha512-j9F+bDt1R//+kLfeSgkmc1A3x0u70gjb/FXaRgTtw+V3wIeYjOekiIlmsXf1SNKuxU5YHDkNL8CFNHx+MfSPSw== - dependencies: - chrome-dgram "^3.0.6" - debug "^4.2.0" - -bittorrent-peerid@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/bittorrent-peerid/-/bittorrent-peerid-1.3.3.tgz#b8dc79e421f8136d2ffd0b163a18e9d70da09949" - integrity sha512-tSh9HdQgwyEAfo1jzoGEis6o/zs4CcdRTchG93XVl5jct+DCAN90M5MVUV76k2vJ9Xg3GAzLB5NLsY/vnVTh6w== - -bittorrent-protocol@^3.3.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/bittorrent-protocol/-/bittorrent-protocol-3.4.1.tgz#b481d09dbf910fa7fcca5f06a7c1c4246151d4d1" - integrity sha512-3qBW4ZZrUZKN7HzHbX4+kbiphrTNeraMp3i9n3wobicysjibAV8SBDY+sGiBN4SgXV6WvEW4kyRPIjoSqW+khw== - dependencies: - bencode "^2.0.1" - bitfield "^4.0.0" - buffer-xor "^2.0.2" - debug "^4.3.1" - randombytes "^2.1.0" - rc4 "^0.1.5" - readable-stream "^3.6.0" - simple-sha1 "^3.0.0" - speedometer "^1.1.0" - unordered-array-remove "^1.0.2" - -bittorrent-tracker@^9.0.0: - version "9.17.2" - resolved "https://registry.yarnpkg.com/bittorrent-tracker/-/bittorrent-tracker-9.17.2.tgz#1afb02d3d2fb474c13389c45e8a2b6919bff40bd" - integrity sha512-hXjed0OnB16da+ScJUZnrAZbf9gMgSLKqh5rJebtYnTRgN4o1mX0DOPH3Nf5RFCs935ibhSmZN5nwbkh+3MdEA== - dependencies: - bencode "^2.0.1" - bittorrent-peerid "^1.3.3" - bn.js "^5.2.0" - chrome-dgram "^3.0.6" - compact2string "^1.4.1" - debug "^4.1.1" - ip "^1.1.5" - lru "^3.1.0" - minimist "^1.2.5" - once "^1.4.0" - queue-microtask "^1.2.3" - random-iterate "^1.0.1" - randombytes "^2.1.0" - run-parallel "^1.2.0" - run-series "^1.1.9" - simple-get "^4.0.0" - simple-peer "^9.11.0" - simple-websocket "^9.1.0" - string2compact "^1.3.0" - unordered-array-remove "^1.0.2" - ws "^7.4.5" - optionalDependencies: - bufferutil "^4.0.3" - utf-8-validate "^5.0.5" - -blob-to-buffer@^1.2.9: - version "1.2.9" - resolved "https://registry.yarnpkg.com/blob-to-buffer/-/blob-to-buffer-1.2.9.tgz#a17fd6c1c564011408f8971e451544245daaa84a" - integrity sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA== - -block-stream2@^2.0.0, block-stream2@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/block-stream2/-/block-stream2-2.1.0.tgz#ac0c5ef4298b3857796e05be8ebed72196fa054b" - integrity sha512-suhjmLI57Ewpmq00qaygS8UgEq2ly2PCItenIyhMqVjo4t4pGzqMvfgJuX8iWTeSDdfSSqS6j38fL4ToNL7Pfg== - dependencies: - readable-stream "^3.4.0" - -bn.js@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002" - integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -browserify-package-json@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-package-json/-/browserify-package-json-1.0.1.tgz#98dde8aa5c561fd6d3fe49bbaa102b74b396fdea" - integrity sha1-mN3oqlxWH9bT/km7qhArdLOW/eo= - -buffer-alloc-unsafe@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" - integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== - -buffer-alloc@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" - integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== - dependencies: - buffer-alloc-unsafe "^1.1.0" - buffer-fill "^1.0.0" - -buffer-fill@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" - integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= - -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - -buffer-indexof@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" - integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== - -buffer-xor@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-2.0.2.tgz#34f7c64f04c777a1f8aac5e661273bb9dd320289" - integrity sha512-eHslX0bin3GB+Lx2p7lEYRShRewuNZL3fUl4qlVJGGiwoPGftmt8JQgk2Y9Ji5/01TnVDo33E5b5O3vUB1HdqQ== - dependencies: - safe-buffer "^5.1.1" - -buffer@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" - integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.2.1" - -bufferutil@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.3.tgz#66724b756bed23cd7c28c4d306d7994f9943cc6b" - integrity sha512-yEYTwGndELGvfXsImMBLop58eaGW+YdONi1fNjTINSY98tmMmFijBG6WXgdkfuLNt4imzQNtIE+eBp1PVpMCSw== - dependencies: - node-gyp-build "^4.2.0" - -castv2-client@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/castv2-client/-/castv2-client-1.2.0.tgz#a9193b1a5448b8cb9a0415bd021c8811ed7b0544" - integrity sha1-qRk7GlRIuMuaBBW9AhyIEe17BUQ= - dependencies: - castv2 "~0.1.4" - debug "^2.2.0" - -castv2@~0.1.4: - version "0.1.10" - resolved "https://registry.yarnpkg.com/castv2/-/castv2-0.1.10.tgz#d3df00124f1ba8a97691c69dd44221d3b5f93c56" - integrity sha512-3QWevHrjT22KdF08Y2a217IYCDQDP7vEJaY4n0lPBeC5UBYbMFMadDfVTsaQwq7wqsEgYUHElPGm3EO1ey+TNw== - dependencies: - debug "^4.1.1" - protobufjs "^6.8.8" - chalk@^2.0.0: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -364,62 +58,6 @@ chalk@^2.0.0: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -charset@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/charset/-/charset-1.0.1.tgz#8d59546c355be61049a8fa9164747793319852bd" - integrity sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg== - -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -chrome-dgram@^3.0.2, chrome-dgram@^3.0.6: - version "3.0.6" - resolved "https://registry.yarnpkg.com/chrome-dgram/-/chrome-dgram-3.0.6.tgz#2288b5c7471f66f073691206d36319dda713cf55" - integrity sha512-bqBsUuaOiXiqxXt/zA/jukNJJ4oaOtc7ciwqJpZVEaaXwwxqgI2/ZdG02vXYWUhHGziDlvGMQWk0qObgJwVYKA== - dependencies: - inherits "^2.0.4" - run-series "^1.1.9" - -chrome-dns@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/chrome-dns/-/chrome-dns-1.0.1.tgz#6870af680a40d2c4b2efc2154a378793f5a4ce4b" - integrity sha512-HqsYJgIc8ljJJOqOzLphjAs79EUuWSX3nzZi2LNkzlw3GIzAeZbaSektC8iT/tKvLqZq8yl1GJu5o6doA4TRbg== - dependencies: - chrome-net "^3.3.2" - -chrome-net@^3.3.2, chrome-net@^3.3.3, chrome-net@^3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/chrome-net/-/chrome-net-3.3.4.tgz#0e604a31d226ebfb8d2d1c381cab47d35309825d" - integrity sha512-Jzy2EnzmE+ligqIZUsmWnck9RBXLuUy6CaKyuNMtowFG3ZvLt8d+WBJCTPEludV0DHpIKjAOlwjFmTaEdfdWCw== - dependencies: - inherits "^2.0.1" - -chromecasts@^1.9.1: - version "1.10.0" - resolved "https://registry.yarnpkg.com/chromecasts/-/chromecasts-1.10.0.tgz#7016c9f31b99e40636b21a75976c9364e3fbabbb" - integrity sha512-vrOiuHxqLb0bWRBlvyL18cHU8PcbZ7iJvwDB6aHdbtdIDVWuzWWZwDyAWHu54j4JNqyaAyYBJiJ6bbHInVcqBQ== - dependencies: - castv2-client "^1.1.0" - debug "^2.1.3" - dns-txt "^2.0.2" - mime "^1.3.4" - multicast-dns "^7.2.2" - simple-get "^2.0.0" - thunky "^0.1.0" - xml2js "^0.4.8" - optionalDependencies: - node-ssdp "^2.2.0" - -chunk-store-stream@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/chunk-store-stream/-/chunk-store-stream-4.3.0.tgz#3de5f4dfe19729366c29bb7ed52d139f9af29f0e" - integrity sha512-qby+/RXoiMoTVtPiylWZt7KFF1jy6M829TzMi2hxZtBIH9ptV19wxcft6zGiXLokJgCbuZPGNGab6DWHqiSEKw== - dependencies: - block-stream2 "^2.0.0" - readable-stream "^3.6.0" - cli-table3@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee" @@ -430,16 +68,6 @@ cli-table3@^0.6.0: optionalDependencies: colors "^1.1.2" -clivas@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/clivas/-/clivas-0.2.0.tgz#b8d19188b3243e390f302410bd0cb1622db82649" - integrity sha1-uNGRiLMkPjkPMCQQvQyxYi24Jkk= - -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= - color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -457,67 +85,6 @@ colors@^1.1.2: resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== -common-tags@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" - integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== - -compact2string@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/compact2string/-/compact2string-1.4.1.tgz#8d34929055f8300a13cfc030ad1832e2e53c2e25" - integrity sha512-3D+EY5nsRhqnOwDxveBv5T8wGo4DEvYxjDtPGmdOX+gfr5gE92c2RC0w2wa+xEefm07QuVqqcF3nZJUZ92l/og== - dependencies: - ipaddr.js ">= 0.1.5" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -concat-stream@^1.4.8: - version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - -console-control-strings@^1.0.0, console-control-strings@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= - -core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= - -cpus@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/cpus/-/cpus-1.0.3.tgz#4ef6deea461968d6329d07dd01205685df2934a2" - integrity sha512-PXHBvGLuL69u55IkLa5e5838fLhIMHxmkV4ge42a8alGyn7BtawYgI0hQ849EedvtHIOLNNH3i6eQU1BiE9SUA== - -create-torrent@^4.4.2, create-torrent@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/create-torrent/-/create-torrent-4.7.0.tgz#ba5d52d41e7621d0d61c895c8026d3fb22aa4333" - integrity sha512-Pb3XjZNKdCs0Nk46yFKb82y+a3xRQeMvGi1AlJfIV40y/iwkgBqzS5EfqdnakEOvh2jzTOx3v8QxZpkz4hPzyw== - dependencies: - bencode "^2.0.1" - block-stream2 "^2.1.0" - filestream "^5.0.0" - is-file "^1.0.0" - junk "^3.1.0" - minimist "^1.2.5" - multistream "^4.0.1" - once "^1.4.0" - piece-length "^2.0.1" - queue-microtask "^1.2.2" - readable-stream "^3.6.0" - run-parallel "^1.1.10" - simple-sha1 "^3.0.1" - cross-spawn@^6.0.0: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" @@ -529,142 +96,23 @@ cross-spawn@^6.0.0: shebang-command "^1.2.0" which "^1.2.9" -debug@^2.1.0, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@^3.1.0, debug@^3.2.6: +debug@^3.1.0: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== dependencies: ms "^2.1.1" -debug@^4.0.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" - integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== - dependencies: - ms "2.1.2" - -decompress-response@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= - dependencies: - mimic-response "^1.0.0" - -decompress-response@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" - integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== - dependencies: - mimic-response "^3.1.0" - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= - detect-indent@^6.0.0: version "6.1.0" resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== -detect-libc@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" - integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= - -dlnacasts@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/dlnacasts/-/dlnacasts-0.1.0.tgz#f805211dcac74f6bb3a4d5d5541ad783b1b67d22" - integrity sha1-+AUhHcrHT2uzpNXVVBrXg7G2fSI= - dependencies: - debug "^2.1.3" - mime "^1.3.4" - node-ssdp "^2.7.1" - run-parallel "^1.1.6" - simple-get "^2.1.0" - thunky "^0.1.0" - upnp-mediarenderer-client "^1.2.2" - xml2js "^0.4.8" - -dns-packet@^5.2.2: - version "5.2.4" - resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.2.4.tgz#e004f409eadfa8ec861964dcb9eb395884fcf67d" - integrity sha512-vgu5Bx5IV8mXmh/9cn1lzn+J7okFlXe1vBRp+kCBJXg1nBED6Z/Q4e+QaDxQRSozMr14p/VQmdXwsf/I2wGjUA== - dependencies: - ip "^1.1.5" - -dns-txt@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" - integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY= - dependencies: - buffer-indexof "^1.0.0" - -domexception@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" - integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== - dependencies: - webidl-conversions "^4.0.2" - -ecstatic@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/ecstatic/-/ecstatic-4.1.4.tgz#86bf340dabe56c4d0c93d406ac36c040f68e1d79" - integrity sha512-8E4ZLK4uRuB9pwywGpy/B9vcz4gCp6IY7u4cMbeCINr/fjb1v+0wf0Ae2XlfSnG8xZYnE4uaJBjFkYI0bqcIdw== - dependencies: - charset "^1.0.1" - he "^1.1.1" - mime "^2.4.1" - minimist "^1.1.0" - on-finished "^2.3.0" - url-join "^4.0.0" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= - -elementtree@^0.1.6, elementtree@~0.1.6: - version "0.1.7" - resolved "https://registry.yarnpkg.com/elementtree/-/elementtree-0.1.7.tgz#9ac91be6e52fb6e6244c4e54a4ac3ed8ae8e29c0" - integrity sha1-mskb5uUvtuYkTE5UpKw+2K6OKcA= - dependencies: - sax "1.1.4" - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -end-of-stream@^1.1.0, end-of-stream@^1.4.4: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -err-code@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/err-code/-/err-code-3.0.1.tgz#a444c7b992705f2b120ee320b09972eef331c920" - integrity sha512-GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA== - error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" @@ -672,11 +120,6 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -escape-html@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= - escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" @@ -695,91 +138,11 @@ execa@^0.10.0: signal-exit "^3.0.0" strip-eof "^1.0.0" -executable@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" - integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg== - dependencies: - pify "^2.2.0" - -filestream@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/filestream/-/filestream-5.0.0.tgz#79015f3bae95ad0f47ef818694846f085087b92e" - integrity sha512-5H3RqSaJp12THfZiNWodYM7TiKfQvrpX+EIOrB1XvCceTys4yvfEIl8wDp+/yI8qj6Bxym8m0NYWwVXDAet/+A== - dependencies: - readable-stream "^3.4.0" - typedarray-to-buffer "^3.0.0" - -freelist@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/freelist/-/freelist-1.0.3.tgz#006775509f3935701784d3ed2fc9f12c9df1bab2" - integrity sha1-AGd1UJ85NXAXhNPtL8nxLJ3xurI= - -fs-chunk-store@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/fs-chunk-store/-/fs-chunk-store-2.0.3.tgz#21e51f1833a84a07cb5e911d058dae084030375a" - integrity sha512-qQi93nHX3880gtoQPt1hKQcuYBNVfCbMk8OVRDqR0cJ0riheELW25ry9yl7pII8E9gOAONTGKBD5N/zGHFSVQg== - dependencies: - queue-microtask "^1.2.2" - random-access-file "^2.0.1" - randombytes "^2.0.3" - rimraf "^3.0.0" - run-parallel "^1.1.2" - thunky "^1.0.1" - -fs-minipass@^1.2.5: - version "1.2.7" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" - integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== - dependencies: - minipass "^2.6.0" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - -get-browser-rtc@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/get-browser-rtc/-/get-browser-rtc-1.1.0.tgz#d1494e299b00f33fc8e9d6d3343ba4ba99711a2c" - integrity sha512-MghbMJ61EJrRsDe7w1Bvqt3ZsBuqhce5nrn/XAwgwOXhcsz53/ltdxOse1h/8eKXj5slzxdsz56g5rzOFSGwfQ== - -get-stdin@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" - integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== - get-stream@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= -glob@^7.1.3: - version "7.1.7" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - graceful-fs@^4.1.15: version "4.2.6" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" @@ -790,132 +153,16 @@ has-flag@^3.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= -has-unicode@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= - -he@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - -"http-node@github:feross/http-node#webtorrent": - version "1.2.0" - resolved "https://codeload.github.com/feross/http-node/tar.gz/342ef8624495343ffd050bd0808b3750cf0e3974" - dependencies: - chrome-net "^3.3.3" - freelist "^1.0.3" - http-parser-js "^0.4.3" - -http-parser-js@^0.4.3: - version "0.4.13" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.13.tgz#3bd6d6fde6e3172c9334c3b33b6c193d80fe1137" - integrity sha1-O9bW/ebjFyyTNMOzO2wZPYD+ETc= - -iconv-lite@^0.4.4: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -ieee754@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore-walk@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.4.tgz#c9a09f69b7c7b479a5d74ac1a3c0d4236d2a6335" - integrity sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ== - dependencies: - minimatch "^3.0.4" - -immediate-chunk-store@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/immediate-chunk-store/-/immediate-chunk-store-2.2.0.tgz#f56d30ecc7171f6cfcf632b0eb8395a89f92c03c" - integrity sha512-1bHBna0hCa6arRXicu91IiL9RvvkbNYLVq+mzWdaLGZC3hXvX4doh8e1dLhMKez5siu63CYgO5NrGJbRX5lbPA== - dependencies: - queue-microtask "^1.2.3" - imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@~1.3.0: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -ip-set@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ip-set/-/ip-set-2.1.0.tgz#9a47b9f5d220c38bc7fe5db8efc4baa45b0a0a35" - integrity sha512-JdHz4tSMx1IeFj8yEcQU0i58qiSkOlmZXkZ8+HJ0ROV5KcgLRDO9F703oJ1GeZCvqggrcCbmagD/V7hghY62wA== - dependencies: - ip "^1.1.5" - -ip@^1.0.1, ip@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" - integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= - -"ipaddr.js@>= 0.1.5": - version "2.0.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0" - integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng== - -ipaddr.js@^1.0.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= -is-ascii@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-ascii/-/is-ascii-1.0.0.tgz#f02ad0259a0921cd199ff21ce1b09e0f6b4e3929" - integrity sha1-8CrQJZoJIc0Zn/Ic4bCeD2tOOSk= - -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-file@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-file/-/is-file-1.0.0.tgz#28a44cfbd9d3db193045f22b65fce8edf9620596" - integrity sha1-KKRM+9nT2xkwRfIrZfzo7fliBZY= - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" @@ -936,18 +183,6 @@ is-typedarray@^1.0.0: resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" @@ -963,58 +198,11 @@ json-parse-even-better-errors@^2.3.0: resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== -junk@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/junk/-/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1" - integrity sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ== - -k-bucket@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/k-bucket/-/k-bucket-5.1.0.tgz#db2c9e72bd168b432e3f3e8fc092e2ccb61bff89" - integrity sha512-Fac7iINEovXIWU20GPnOMLUbjctiS+cnmyjC4zAUgvs3XPf1vo9akfCHkigftSic/jiKqKl+KA3a/vFcJbHyCg== - dependencies: - randombytes "^2.1.0" - -k-rpc-socket@^1.7.2: - version "1.11.1" - resolved "https://registry.yarnpkg.com/k-rpc-socket/-/k-rpc-socket-1.11.1.tgz#f14b4b240a716c6cad7b6434b21716dbd7c7b0e8" - integrity sha512-8xtA8oqbZ6v1Niryp2/g4GxW16EQh5MvrUylQoOG+zcrDff5CKttON2XUXvMwlIHq4/2zfPVFiinAccJ+WhxoA== - dependencies: - bencode "^2.0.0" - chrome-dgram "^3.0.2" - chrome-dns "^1.0.0" - chrome-net "^3.3.2" - -k-rpc@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/k-rpc/-/k-rpc-5.1.0.tgz#af2052de2e84994d55da3032175da5dad8640174" - integrity sha512-FGc+n70Hcjoa/X2JTwP+jMIOpBz+pkRffHnSl9yrYiwUxg3FIgD50+u1ePfJUOnRCnx6pbjmVk5aAeB1wIijuQ== - dependencies: - k-bucket "^5.0.0" - k-rpc-socket "^1.7.2" - randombytes "^2.0.5" - -last-one-wins@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/last-one-wins/-/last-one-wins-1.0.4.tgz#c1bfd0cbcb46790ec9156b8d1aee8fcb86cda22a" - integrity sha1-wb/Qy8tGeQ7JFWuNGu6Py4bNoio= - lines-and-columns@^1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= -load-ip-set@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/load-ip-set/-/load-ip-set-2.2.1.tgz#9496ab8aa14ebf81aeb7c8bb38e7abdf50af3563" - integrity sha512-G3hQXehU2LTOp52e+lPffpK4EvidfjwbvHaGqmFcp4ptiZagR4xFdL+D08kMX906dxeqZyWhfonEjdUxrWcldg== - dependencies: - ip-set "^2.1.0" - netmask "^2.0.1" - once "^1.4.0" - simple-get "^4.0.0" - split "^1.0.1" - load-json-file@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" @@ -1025,34 +213,6 @@ load-json-file@^6.2.0: strip-bom "^4.0.0" type-fest "^0.6.0" -long@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" - integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== - -lru@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/lru/-/lru-3.1.0.tgz#ea7fb8546d83733396a13091d76cfeb4c06837d5" - integrity sha1-6n+4VG2DczOWoTCR12z+tMBoN9U= - dependencies: - inherits "^2.0.1" - -lt_donthave@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/lt_donthave/-/lt_donthave-1.0.1.tgz#a160e08bdf15b9e092172063688855a6c031d8b3" - integrity sha512-PfOXfDN9GnUjlNHjjxKQuMxPC8s12iSrnmg+Ff1BU1uLn7S1BFAKzpZCu6Gwg3WsCUvTZrZoDSHvy6B/j+N4/Q== - dependencies: - debug "^4.2.0" - unordered-array-remove "^1.0.2" - -magnet-uri@^6.0.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/magnet-uri/-/magnet-uri-6.2.0.tgz#10f7be050bf23452df210838239b118463c3eeff" - integrity sha512-O9AgdDwT771fnUj0giPYu/rACpz8173y8UXCSOdLITjOVfBenZ9H9q3FqQmveK+ORUMuD+BkKNSZP8C3+IMAKQ== - dependencies: - bep53-range "^1.1.0" - thirty-two "^1.0.2" - make-dir@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" @@ -1060,170 +220,11 @@ make-dir@^3.0.0: dependencies: semver "^6.0.0" -mdns-js-packet@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/mdns-js-packet/-/mdns-js-packet-0.2.0.tgz#642409e8183c7561cc60615bbd1420ec2fad7616" - integrity sha1-ZCQJ6Bg8dWHMYGFbvRQg7C+tdhY= - dependencies: - debug "^2.1.0" - qap "^3.1.2" - -mdns-js@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/mdns-js/-/mdns-js-0.5.0.tgz#4c8abb6ba7cabdc892d39228c3faa2556e09cf87" - integrity sha1-TIq7a6fKvciS05Iow/qiVW4Jz4c= - dependencies: - debug "^2.1.1" - mdns-js-packet "~0.2.0" - semver "~5.1.0" - -mediasource@^2.2.2, mediasource@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/mediasource/-/mediasource-2.4.0.tgz#7b03378054c41400374e9bade50aa0d7a758c39b" - integrity sha512-SKUMrbFMHgiCUZFOWZcL0aiF/KgHx9SPIKzxrl6+7nMUMDK/ZnOmJdY/9wKzYeM0g3mybt3ueg+W+/mrYfmeFQ== - dependencies: - inherits "^2.0.4" - readable-stream "^3.6.0" - to-arraybuffer "^1.0.1" - -memory-chunk-store@^1.3.5: - version "1.3.5" - resolved "https://registry.yarnpkg.com/memory-chunk-store/-/memory-chunk-store-1.3.5.tgz#700f712415895600bc5466007333efa19f1de07c" - integrity sha512-E1Xc1U4ifk/FkC2ZsWhCaW1xg9HbE/OBmQTLe2Tr9c27YPSLbW7kw1cnb3kQWD1rDtErFJHa7mB9EVrs7aTx9g== - dependencies: - queue-microtask "^1.2.3" - -mime@^1.3.4: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mime@^2.4.1, mime@^2.4.6, mime@^2.5.2: - version "2.5.2" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" - integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== - -mimic-response@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== - -mimic-response@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" - integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== - -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimist@^1.1.0, minimist@^1.2.0, minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - -minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" - integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== - dependencies: - safe-buffer "^5.1.2" - yallist "^3.0.0" - -minizlib@^1.2.1: - version "1.3.3" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" - integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== - dependencies: - minipass "^2.9.0" - -mkdirp-classic@^0.5.2: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp@^0.5.0, mkdirp@^0.5.1: - version "0.5.5" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" - integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== - dependencies: - minimist "^1.2.5" - -moment@^2.27.0: - version "2.29.1" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" - integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== - -mp4-box-encoding@^1.3.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/mp4-box-encoding/-/mp4-box-encoding-1.4.1.tgz#19b31804c896bc1adf1c21b497bcf951aa3b9098" - integrity sha512-2/PRtGGiqPc/VEhbm7xAQ+gbb7yzHjjMAv6MpAifr5pCpbh3fQUdj93uNgwPiTppAGu8HFKe3PeU+OdRyAxStA== - dependencies: - uint64be "^2.0.2" - -mp4-stream@^3.0.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/mp4-stream/-/mp4-stream-3.1.3.tgz#79b8a19900337203a9bd607a02eccc64419a379c" - integrity sha512-DUT8f0x2jHbZjNMdqe9h6lZdt6RENWTTdGn8z3TXa4uEsoltuNY9lCCij84mdm0q7xcV0E2W25WRxlKBMo4hSw== - dependencies: - mp4-box-encoding "^1.3.0" - next-event "^1.0.0" - queue-microtask "^1.2.2" - readable-stream "^3.0.6" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - ms@^2.1.1: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -multicast-dns@^7.2.2: - version "7.2.3" - resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.3.tgz#cbd07571dda41807b36f71067681f19e85ccc2cd" - integrity sha512-TzxgGSLRLB7tqAlzjgd2x2ZE0cDsGFq4rs9W4yE5xp+7hlRXeUQGtXZsTGfGw2FwWB45rfe8DtXMYBpZGMLUng== - dependencies: - dns-packet "^5.2.2" - thunky "^1.0.2" - -multistream@^4.0.1, multistream@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/multistream/-/multistream-4.1.0.tgz#7bf00dfd119556fbc153cff3de4c6d477909f5a8" - integrity sha512-J1XDiAmmNpRCBfIWJv+n0ymC4ABcf/Pl+5YvC5B/D2f/2+8PtHvCNxMPKiQcZyi922Hq69J2YOpb1pTywfifyw== - dependencies: - once "^1.4.0" - readable-stream "^3.6.0" - -napi-macros@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/napi-macros/-/napi-macros-2.0.0.tgz#2b6bae421e7b96eb687aa6c77a7858640670001b" - integrity sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg== - -needle@^2.2.1: - version "2.6.0" - resolved "https://registry.yarnpkg.com/needle/-/needle-2.6.0.tgz#24dbb55f2509e2324b4a99d61f413982013ccdbe" - integrity sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg== - dependencies: - debug "^3.2.6" - iconv-lite "^0.4.4" - sax "^1.2.4" - -netmask@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7" - integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg== - netrc-parser@^3.1.6: version "3.1.6" resolved "https://registry.yarnpkg.com/netrc-parser/-/netrc-parser-3.1.6.tgz#7243c9ec850b8e805b9bdc7eae7b1450d4a96e72" @@ -1232,86 +233,11 @@ netrc-parser@^3.1.6: debug "^3.1.0" execa "^0.10.0" -network-address@^1.0.0, network-address@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/network-address/-/network-address-1.1.2.tgz#4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e" - integrity sha1-Sqe/1D8D8LgclwKxPWqFjdsybz4= - -next-event@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/next-event/-/next-event-1.0.0.tgz#e7778acde2e55802e0ad1879c39cf6f75eda61d8" - integrity sha1-53eKzeLlWALgrRh5w5z2917aYdg= - nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -node-gyp-build@^4.2.0: - version "4.2.3" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.2.3.tgz#ce6277f853835f718829efb47db20f3e4d9c4739" - integrity sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg== - -node-pre-gyp@^0.13.0: - version "0.13.0" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz#df9ab7b68dd6498137717838e4f92a33fc9daa42" - integrity sha512-Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ== - dependencies: - detect-libc "^1.0.2" - mkdirp "^0.5.1" - needle "^2.2.1" - nopt "^4.0.1" - npm-packlist "^1.1.6" - npmlog "^4.0.2" - rc "^1.2.7" - rimraf "^2.6.1" - semver "^5.3.0" - tar "^4" - -node-ssdp@^2.2.0, node-ssdp@^2.7.1: - version "2.9.1" - resolved "https://registry.yarnpkg.com/node-ssdp/-/node-ssdp-2.9.1.tgz#2d6ba8e7eff9bf5b338564f91f7ac5d5cdddc55b" - integrity sha1-LWuo5+/5v1szhWT5H3rF1c3dxVs= - dependencies: - debug "^2.2.0" - ip "^1.0.1" - -nodebmc@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/nodebmc/-/nodebmc-0.0.7.tgz#fae179165265509302cefbebeabd29bd4035184d" - integrity sha1-+uF5FlJlUJMCzvvr6r0pvUA1GE0= - dependencies: - mdns-js "0.5.0" - -nopt@^4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" - integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== - dependencies: - abbrev "1" - osenv "^0.1.4" - -npm-bundled@^1.0.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" - integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== - dependencies: - npm-normalize-package-bin "^1.0.1" - -npm-normalize-package-bin@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" - integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== - -npm-packlist@^1.1.6: - version "1.4.8" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" - integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== - dependencies: - ignore-walk "^3.0.1" - npm-bundled "^1.0.1" - npm-normalize-package-bin "^1.0.1" - npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" @@ -1319,79 +245,16 @@ npm-run-path@^2.0.0: dependencies: path-key "^2.0.0" -npmlog@^4.0.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= - object-assign@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= -on-finished@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= - dependencies: - ee-first "1.1.1" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -open@^8.0.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/open/-/open-8.2.0.tgz#d6a4788b00009a9d60df471ecb89842a15fdcfc1" - integrity sha512-O8uInONB4asyY3qUcEytpgwxQG3O0fJ/hlssoUHsBboOIRVZzT6Wq+Rwj5nffbeUhOdMjpXeISpDDzHCMRDuOQ== - dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" - -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= - -os-tmpdir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= - -osenv@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= -package-json-versionify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/package-json-versionify/-/package-json-versionify-1.0.4.tgz#5860587a944873a6b7e6d26e8e51ffb22315bf17" - integrity sha1-WGBYepRIc6a35tJujlH/siMVvxc= - dependencies: - browserify-package-json "^1.0.0" - parse-json@^5.0.0: version "5.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" @@ -1402,250 +265,12 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -parse-torrent@^9.0.0, parse-torrent@^9.1.3: - version "9.1.3" - resolved "https://registry.yarnpkg.com/parse-torrent/-/parse-torrent-9.1.3.tgz#9b4bc8dca243b356bf449938d6d38a259a2a707c" - integrity sha512-/Yr951CvJM8S6TjMaqrsmMxeQEAjDeCX+MZ3hGXXc7DG2wqzp/rzOsHtDzIVqN6NsFRCqy6wYLF/W7Sgvq7bXw== - dependencies: - bencode "^2.0.1" - blob-to-buffer "^1.2.9" - get-stdin "^8.0.0" - magnet-uri "^6.0.0" - queue-microtask "^1.2.2" - simple-get "^4.0.0" - simple-sha1 "^3.0.1" - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= -piece-length@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/piece-length/-/piece-length-2.0.1.tgz#dbed4e78976955f34466d0a65304d0cb21914ac9" - integrity sha512-dBILiDmm43y0JPISWEmVGKBETQjwJe6mSU9GND+P9KW0SJGUwoU/odyH1nbalOP9i8WSYuqf1lQnaj92Bhw+Ug== - -pify@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= - -plist-with-patches@0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/plist-with-patches/-/plist-with-patches-0.5.1.tgz#868aae2e0df8989b026562b35cbc19cfd8bb780d" - integrity sha1-hoquLg34mJsCZWKzXLwZz9i7eA0= - dependencies: - xmlbuilder "0.4.x" - xmldom "0.1.x" - -prettier-bytes@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/prettier-bytes/-/prettier-bytes-1.0.4.tgz#994b02aa46f699c50b6257b5faaa7fe2557e62d6" - integrity sha1-mUsCqkb2mcULYle1+qp/4lV+YtY= - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -protobufjs@^6.8.8: - version "6.11.2" - resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.11.2.tgz#de39fabd4ed32beaa08e9bb1e30d08544c1edf8b" - integrity sha512-4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw== - dependencies: - "@protobufjs/aspromise" "^1.1.2" - "@protobufjs/base64" "^1.1.2" - "@protobufjs/codegen" "^2.0.4" - "@protobufjs/eventemitter" "^1.1.0" - "@protobufjs/fetch" "^1.1.0" - "@protobufjs/float" "^1.0.2" - "@protobufjs/inquire" "^1.1.0" - "@protobufjs/path" "^1.1.2" - "@protobufjs/pool" "^1.1.0" - "@protobufjs/utf8" "^1.1.0" - "@types/long" "^4.0.1" - "@types/node" ">=13.7.0" - long "^4.0.0" - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -qap@^3.1.2: - version "3.3.1" - resolved "https://registry.yarnpkg.com/qap/-/qap-3.3.1.tgz#11f9e8fa8890fe7cb99210c0f44d0613b7372cac" - integrity sha1-Efno+oiQ/ny5khDA9E0GE7c3LKw= - -queue-microtask@^1.2.2, queue-microtask@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -random-access-file@^2.0.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/random-access-file/-/random-access-file-2.2.0.tgz#b49b999efefb374afb7587f219071fec5ce66546" - integrity sha512-B744003Mj7v3EcuPl9hCiB2Ot4aZjgtU2mV6yFY1THiWU/XfGf1uSadR+SlQdJcwHgAWeG7Lbos0aUqjtj8FQg== - dependencies: - mkdirp-classic "^0.5.2" - random-access-storage "^1.1.1" - -random-access-storage@^1.1.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/random-access-storage/-/random-access-storage-1.4.1.tgz#39a524dd428ade9161ce61a8ae677766e6117ffb" - integrity sha512-DbCc2TIzOxPaHF6KCbr8zLtiYOJQQQCBHUVNHV/SckUQobCBB2YkDtbLdxGnPwPNpJfEyMWxDAm36A2xkbxxtw== - dependencies: - inherits "^2.0.3" - -random-iterate@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/random-iterate/-/random-iterate-1.0.1.tgz#f7d97d92dee6665ec5f6da08c7f963cad4b2ac99" - integrity sha1-99l9kt7mZl7F9toIx/ljytSyrJk= - -randombytes@^2.0.3, randombytes@^2.0.5, randombytes@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -range-parser@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -range-slice-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/range-slice-stream/-/range-slice-stream-2.0.0.tgz#1f25fc7a2cacf9ccd140c46f9cf670a1a7fe3ce6" - integrity sha512-PPYLwZ63lXi6Tv2EZ8w3M4FzC0rVqvxivaOVS8pXSp5FMIHFnvi4MWHL3UdFLhwSy50aNtJsgjY0mBC6oFL26Q== - dependencies: - readable-stream "^3.0.2" - -rc4@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/rc4/-/rc4-0.1.5.tgz#08c6e04a0168f6eb621c22ab6cb1151bd9f4a64d" - integrity sha1-CMbgSgFo9utiHCKrbLEVG9n0pk0= - -rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -readable-stream@^2.0.6, readable-stream@^2.2.2: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.4.0, readable-stream@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -record-cache@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/record-cache/-/record-cache-1.1.1.tgz#ba3088a489f50491a4af7b14d410822c394fb811" - integrity sha512-L5hZlgWc7CmGbztnemQoKE1bLu9rtI2skOB0ttE4C5+TVszLE8Rd0YLTROSgvXKLAqPumS/soyN5tJW5wJLmJQ== - -render-media@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/render-media/-/render-media-4.1.0.tgz#9188376822653d7e56c2d789d157c81e74fee0cb" - integrity sha512-F5BMWDmgATEoyPCtKjmGNTGN1ghoZlfRQ3MJh8dS/MrvIUIxupiof/Y9uahChipXcqQ57twVbgMmyQmuO1vokw== - dependencies: - debug "^4.2.0" - is-ascii "^1.0.0" - mediasource "^2.4.0" - stream-to-blob-url "^3.0.2" - videostream "^3.2.2" - -rimraf@^2.6.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - -rimraf@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -run-parallel-limit@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz#be80e936f5768623a38a963262d6bef8ff11e7ba" - integrity sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw== - dependencies: - queue-microtask "^1.2.2" - -run-parallel@^1.1.10, run-parallel@^1.1.2, run-parallel@^1.1.6, run-parallel@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -run-series@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/run-series/-/run-series-1.1.9.tgz#15ba9cb90e6a6c054e67c98e1dc063df0ecc113a" - integrity sha512-Arc4hUN896vjkqCYrUXquBFtRZdv1PfLbTYP71efP6butxyQ0kWpiNJyAgsxscmQg1cqvHY32/UCBzXedTpU2g== - -rusha@^0.8.13: - version "0.8.14" - resolved "https://registry.yarnpkg.com/rusha/-/rusha-0.8.14.tgz#a977d0de9428406138b7bb90d3de5dcd024e2f68" - integrity sha512-cLgakCUf6PedEu15t8kbsjnwIFFR2D4RfL+W3iWFJ4iac7z4B0ZI8fxy4R3J956kAI68HclCFGL8MPoUVC3qVA== - -safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -"safer-buffer@>= 2.1.2 < 3": - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sax@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.1.4.tgz#74b6d33c9ae1e001510f179a91168588f1aedaa9" - integrity sha1-dLbTPJrh4AFRDxeakRaFiPGu2qk= - -sax@>=0.6.0, sax@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -semver@^5.3.0, semver@^5.5.0: +semver@^5.5.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -1655,16 +280,6 @@ semver@^6.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@~5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.1.1.tgz#a3292a373e6f3e0798da0b20641b9a9c5bc47e19" - integrity sha1-oykqNz5vPgeY2gsgZBuanFvEfhk= - -set-blocking@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= - shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -1682,61 +297,6 @@ signal-exit@^3.0.0, signal-exit@^3.0.2: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== -simple-concat@^1.0.0, simple-concat@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== - -simple-get@^2.0.0, simple-get@^2.1.0: - version "2.8.1" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" - integrity sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw== - dependencies: - decompress-response "^3.3.0" - once "^1.3.1" - simple-concat "^1.0.0" - -simple-get@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.0.tgz#73fa628278d21de83dadd5512d2cc1f4872bd675" - integrity sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ== - dependencies: - decompress-response "^6.0.0" - once "^1.3.1" - simple-concat "^1.0.0" - -simple-peer@^9.11.0: - version "9.11.0" - resolved "https://registry.yarnpkg.com/simple-peer/-/simple-peer-9.11.0.tgz#e8d27609c7a610c3ddd75767da868e8daab67571" - integrity sha512-qvdNu/dGMHBm2uQ7oLhQBMhYlrOZC1ywXNCH/i8I4etxR1vrjCnU6ZSQBptndB1gcakjo2+w4OHo7Sjza1SHxg== - dependencies: - buffer "^6.0.3" - debug "^4.3.1" - err-code "^3.0.1" - get-browser-rtc "^1.1.0" - queue-microtask "^1.2.3" - randombytes "^2.1.0" - readable-stream "^3.6.0" - -simple-sha1@^3.0.0, simple-sha1@^3.0.1, simple-sha1@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/simple-sha1/-/simple-sha1-3.1.0.tgz#40cac8436dfaf9924332fc46a5c7bca45f656131" - integrity sha512-ArTptMRC1v08H8ihPD6l0wesKvMfF9e8XL5rIHPanI7kGOsSsbY514MwVu6X1PITHCTB2F08zB7cyEbfc4wQjg== - dependencies: - queue-microtask "^1.2.2" - rusha "^0.8.13" - -simple-websocket@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/simple-websocket/-/simple-websocket-9.1.0.tgz#91cbb39eafefbe7e66979da6c639109352786a7f" - integrity sha512-8MJPnjRN6A8UCp1I+H/dSFyjwJhp6wta4hsVRhjf8w9qBHRzxYt14RaOcjvQnhD1N4yKOddEjflwMnQM4VtXjQ== - dependencies: - debug "^4.3.1" - queue-microtask "^1.2.2" - randombytes "^2.1.0" - readable-stream "^3.6.0" - ws "^7.4.2" - sort-keys@^4.0.0: version "4.2.0" resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.2.0.tgz#6b7638cee42c506fff8c1cecde7376d21315be18" @@ -1744,54 +304,6 @@ sort-keys@^4.0.0: dependencies: is-plain-obj "^2.0.0" -speedometer@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-1.1.0.tgz#a30b13abda45687a1a76977012c060f2ac8a7934" - integrity sha512-z/wAiTESw2XVPssY2XRcme4niTc4S5FkkJ4gknudtVoc33Zil8TdTxHy5torRcgqMqksJV2Yz8HQcvtbsnw0mQ== - -split@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" - integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== - dependencies: - through "2" - -stream-to-blob-url@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/stream-to-blob-url/-/stream-to-blob-url-3.0.2.tgz#5574d139e2a6d1435945476f0a9469947f2da4fb" - integrity sha512-PS6wT2ZyyR38Cy+lE6PBEI1ZmO2HdzZoLeDGG0zZbYikCZd0dh8FUoSeFzgWLItpBYw1WJmPVRLpykRV+lAWLQ== - dependencies: - stream-to-blob "^2.0.0" - -stream-to-blob@^2.0.0, stream-to-blob@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/stream-to-blob/-/stream-to-blob-2.0.1.tgz#59ab71d7a7f0bfb899570e886e44d39f4ac4381a" - integrity sha512-GXlqXt3svqwIVWoICenix5Poxi4KbCF0BdXXUbpU1X4vq1V8wmjiEIU3aFJzCGNFpKxfbnG0uoowS3nKUgSPYg== - -stream-with-known-length-to-buffer@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/stream-with-known-length-to-buffer/-/stream-with-known-length-to-buffer-1.0.4.tgz#6a8aec53f27b8f481f962337c951aa3916fb60d1" - integrity sha512-ztP79ug6S+I7td0Nd2GBeIKCm+vA54c+e60FY87metz5n/l6ydPELd2lxsljz8OpIhsRM9HkIiAwz85+S5G5/A== - dependencies: - once "^1.4.0" - -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -"string-width@^1.0.2 || 2": - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - string-width@^4.2.0: version "4.2.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" @@ -1801,42 +313,6 @@ string-width@^4.2.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" -string2compact@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string2compact/-/string2compact-1.3.0.tgz#22d946127b082d1203c51316af60117a337423c3" - integrity sha512-004ulKKANDuQilQsNxy2lisrpMG0qUJxBU+2YCEF7KziRyNR0Nredm2qk0f1V82nva59H3y9GWeHXE63HzGRFw== - dependencies: - addr-to-ip-port "^1.0.1" - ipaddr.js "^1.0.1" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= - dependencies: - ansi-regex "^3.0.0" - strip-ansi@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" @@ -1854,11 +330,6 @@ strip-eof@^1.0.0: resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= - supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -1866,276 +337,18 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" -tar@^4: - version "4.4.13" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" - integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== - dependencies: - chownr "^1.1.1" - fs-minipass "^1.2.5" - minipass "^2.8.6" - minizlib "^1.2.1" - mkdirp "^0.5.0" - safe-buffer "^5.1.2" - yallist "^3.0.3" - -thirty-two@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/thirty-two/-/thirty-two-1.0.2.tgz#4ca2fffc02a51290d2744b9e3f557693ca6b627a" - integrity sha1-TKL//AKlEpDSdEueP1V2k8prYno= - -through@2: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - -thunky@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz#bf30146824e2b6e67b0f2d7a4ac8beb26908684e" - integrity sha1-vzAUaCTituZ7Dy16Ssi+smkIaE4= - -thunky@^1.0.1, thunky@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" - integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== - -timeout-refresh@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/timeout-refresh/-/timeout-refresh-1.0.3.tgz#7024a8ce0a09a57acc2ea86002048e6c0bff7375" - integrity sha512-Mz0CX4vBGM5lj8ttbIFt7o4ZMxk/9rgudJRh76EvB7xXZMur7T/cjRiH2w4Fmkq0zxf2QpM8IFvOSRn8FEu3gA== - -to-arraybuffer@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= - -torrent-discovery@^9.4.0: - version "9.4.0" - resolved "https://registry.yarnpkg.com/torrent-discovery/-/torrent-discovery-9.4.0.tgz#e6b5f8244e6ea0c48efbcfc88792e033d15e6f56" - integrity sha512-+YW9JGbO5bCuDw9YYW//p4iVLV0aP4C+AYrNQjL/+dSNPUtD1ufK1V8UZERt6rIoeNGhutkSVyeO4Fid9Tjxjg== - dependencies: - bittorrent-dht "^10.0.0" - bittorrent-lsd "^1.0.0" - bittorrent-tracker "^9.0.0" - debug "^4.0.0" - run-parallel "^1.1.2" - -torrent-piece@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/torrent-piece/-/torrent-piece-2.0.1.tgz#a1a50fffa589d9bf9560e38837230708bc3afdc6" - integrity sha512-JLSOyvQVLI6JTWqioY4vFL0JkEUKQcaHQsU3loxkCvPTSttw8ePs2tFwsP4XIjw99Fz8EdOzt/4faykcbnPbCQ== - type-fest@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== -typedarray-to-buffer@^3.0.0, typedarray-to-buffer@^3.1.5: +typedarray-to-buffer@^3.1.5: version "3.1.5" resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== dependencies: is-typedarray "^1.0.0" -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= - -uint64be@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/uint64be/-/uint64be-2.0.2.tgz#ef4a179752fe8f9ddaa29544ecfc13490031e8e5" - integrity sha512-9QqdvpGQTXgxthP+lY4e/gIBy+RuqcBaC6JVwT5I3bDLgT/btL6twZMR0pI3/Fgah9G/pdwzIprE5gL6v9UvyQ== - dependencies: - buffer-alloc "^1.1.0" - -unordered-array-remove@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unordered-array-remove/-/unordered-array-remove-1.0.2.tgz#c546e8f88e317a0cf2644c97ecb57dba66d250ef" - integrity sha1-xUbo+I4xegzyZEyX7LV9umbSUO8= - -unordered-set@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unordered-set/-/unordered-set-2.0.1.tgz#4cd0fe27b8814bcf5d6073e5f0966ec7a50841e6" - integrity sha512-eUmNTPzdx+q/WvOHW0bgGYLWvWHNT3PTKEQLg0MAQhc0AHASHVHoP/9YytYd4RBVariqno/mEUhVZN98CmD7bg== - -upnp-device-client@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/upnp-device-client/-/upnp-device-client-1.0.2.tgz#91f84705f2349bf89082855fff4e3006ac435337" - integrity sha1-kfhHBfI0m/iQgoVf/04wBqxDUzc= - dependencies: - concat-stream "^1.4.8" - debug "^2.1.3" - elementtree "~0.1.6" - network-address "^1.0.0" - -upnp-mediarenderer-client@^1.2.2: - version "1.4.0" - resolved "https://registry.yarnpkg.com/upnp-mediarenderer-client/-/upnp-mediarenderer-client-1.4.0.tgz#06788675c00223d90f605f7971587ab8f3c6783b" - integrity sha512-F+C3Yceoz0j3ZWEchz5tpaOEqkbpObRUmeuPGc9+2u2YvC1CDbXGQ6mjbM10MDhnUJ0tTWYTufpj6xsWctnULw== - dependencies: - debug "^2.1.3" - elementtree "^0.1.6" - upnp-device-client "^1.0.0" - -url-join@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7" - integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA== - -ut_metadata@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/ut_metadata/-/ut_metadata-3.5.2.tgz#2351c9348759e929978fa6a08d56ef6f584749e7" - integrity sha512-3XZZuJSeoIUyMYSuDbTbVtP4KAVGHPfU8nmHFkr8LJc+THCaUXwnu/2AV+LCSLarET/hL9IlbNfYTGrt6fOVuQ== - dependencies: - bencode "^2.0.1" - bitfield "^4.0.0" - debug "^4.2.0" - simple-sha1 "^3.0.1" - -ut_pex@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ut_pex/-/ut_pex-3.0.1.tgz#fb8b6e066f8f6f6de3e6b3e28e7d18e697be5854" - integrity sha512-t1MHIDHSISgOJcmq8UM6Qv9/hRQYVaUvzqSNnXa5ATDbS9hXfhBpyBo2HcSyJtwPSHsmMtNui8G6yKirwJ8vow== - dependencies: - bencode "^2.0.1" - compact2string "^1.4.1" - string2compact "^1.3.0" - -utf-8-validate@^5.0.5: - version "5.0.5" - resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.5.tgz#dd32c2e82c72002dc9f02eb67ba6761f43456ca1" - integrity sha512-+pnxRYsS/axEpkrrEpzYfNZGXp0IjC/9RIxwM5gntY4Koi8SHmUGSfxfWqxZdRxrtaoVstuOzUp/rbs3JSPELQ== - dependencies: - node-gyp-build "^4.2.0" - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -utp-native@^2.4.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/utp-native/-/utp-native-2.5.0.tgz#3d8321760108b30cb15391196c8cc93db85b61ce" - integrity sha512-HoHPE6gwLxC0xlpYJUl+Xw2sh809lhXx3TexHsb2/xY8vEd6NwuvAxOI/X27dBTc/TOT5diWUpCJWDaunkcVvA== - dependencies: - napi-macros "^2.0.0" - node-gyp-build "^4.2.0" - readable-stream "^3.0.2" - timeout-refresh "^1.0.0" - unordered-set "^2.0.1" - -videostream@^3.2.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/videostream/-/videostream-3.2.2.tgz#e3e8d44f5159892f8f31ad35cbf9302d7a6e6afc" - integrity sha512-4tz23yGGeATmbzj/ZnUm6wgQ4E1lzmMXu2mUA/c0G6adtWKxm1Di5YejdZdRsK6SdkLjKjhplFFYT7r+UUDKvA== - dependencies: - binary-search "^1.3.4" - mediasource "^2.2.2" - mp4-box-encoding "^1.3.0" - mp4-stream "^3.0.0" - pump "^3.0.0" - range-slice-stream "^2.0.0" - -vlc-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/vlc-command/-/vlc-command-1.2.0.tgz#a5bac48c6948f587c0be412a07dcdc7b8eb07c9c" - integrity sha512-YTr1w5KmxRN5CBCvplKOD6g/OjwCl5iz+SIjDbq8gWTkByYZun5duHm+OLUkBlbJrCGvMyFyNhTMQxV4Ny0v8g== - dependencies: - run-parallel "^1.1.6" - winreg "^1.2.1" - -webidl-conversions@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== - -webtorrent-cli@^3.2.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/webtorrent-cli/-/webtorrent-cli-3.3.0.tgz#465e9fb82373c6b279904b5876d4745cb8ac6b43" - integrity sha512-E0gb1fXb8xNScgewQmvAmNLrnEto6MOaKlfzITVzR+bbU80LeV/YdrLw536ffcwiUv0arKQyfR/WIweBFrKWbg== - dependencies: - clivas "^0.2.0" - common-tags "^1.8.0" - create-torrent "^4.4.2" - dlnacasts "^0.1.0" - ecstatic "^4.1.4" - executable "^4.1.1" - mime "^2.4.6" - minimist "^1.2.5" - moment "^2.27.0" - network-address "^1.1.2" - open "^8.0.0" - parse-torrent "^9.0.0" - prettier-bytes "^1.0.4" - vlc-command "^1.2.0" - webtorrent "^1.0.0" - winreg "^1.2.4" - optionalDependencies: - airplay-js "^0.3.0" - chromecasts "^1.9.1" - nodebmc "0.0.7" - -webtorrent-hybrid@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/webtorrent-hybrid/-/webtorrent-hybrid-4.1.0.tgz#86e397a8f051de225c60ce751f47d28a906cbfdc" - integrity sha512-IqRWVI+gXHjv/ybj3YK6Q4gJM1OaIgy3Nw3ec0iPS7TeBrG6R3yhfHupF39DIwyKFERZDnYoxVnxHOt8TAaucw== - dependencies: - create-torrent "^4.4.2" - webtorrent "^1.0.0" - webtorrent-cli "^3.2.0" - wrtc "^0.4.6" - -webtorrent@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/webtorrent/-/webtorrent-1.0.0.tgz#1d8fd388726ca013feb17d2437b1b9df2d24b5e8" - integrity sha512-htwcY5OBOWL/OMwaw3xi1Mp2gE9k5UmGTKeO3n1ixQDH9QgeqqRlBJz2ZLEyOL8yN1FdS/D9z+ijm06bZ3oW5w== - dependencies: - addr-to-ip-port "^1.5.1" - bitfield "^4.0.0" - bittorrent-dht "^10.0.0" - bittorrent-protocol "^3.3.1" - chrome-net "^3.3.4" - chunk-store-stream "^4.3.0" - cpus "^1.0.3" - create-torrent "^4.7.0" - debug "^4.3.1" - end-of-stream "^1.4.4" - escape-html "^1.0.3" - fs-chunk-store "^2.0.3" - http-node "github:feross/http-node#webtorrent" - immediate-chunk-store "^2.2.0" - load-ip-set "^2.2.1" - lt_donthave "^1.0.1" - memory-chunk-store "^1.3.5" - mime "^2.5.2" - multistream "^4.1.0" - package-json-versionify "^1.0.4" - parse-torrent "^9.1.3" - pump "^3.0.0" - queue-microtask "^1.2.3" - random-iterate "^1.0.1" - randombytes "^2.1.0" - range-parser "^1.2.1" - readable-stream "^3.6.0" - render-media "^4.1.0" - run-parallel "^1.2.0" - run-parallel-limit "^1.1.0" - simple-concat "^1.0.1" - simple-get "^4.0.0" - simple-peer "^9.11.0" - simple-sha1 "^3.1.0" - speedometer "^1.1.0" - stream-to-blob "^2.0.1" - stream-to-blob-url "^3.0.2" - stream-with-known-length-to-buffer "^1.0.4" - torrent-discovery "^9.4.0" - torrent-piece "^2.0.1" - unordered-array-remove "^1.0.2" - ut_metadata "^3.5.2" - ut_pex "^3.0.0" - utp-native "^2.4.0" - which@^1.2.9: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" @@ -2143,23 +356,6 @@ which@^1.2.9: dependencies: isexe "^2.0.0" -wide-align@^1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" - integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== - dependencies: - string-width "^1.0.2 || 2" - -winreg@^1.2.1, winreg@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz#ba065629b7a925130e15779108cf540990e98d1b" - integrity sha1-ugZWKbepJRMOFXeRCM9UCZDpjRs= - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - write-file-atomic@^3.0.0: version "3.0.3" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" @@ -2181,45 +377,3 @@ write-json-file@^4.2.0: make-dir "^3.0.0" sort-keys "^4.0.0" write-file-atomic "^3.0.0" - -wrtc@^0.4.6: - version "0.4.7" - resolved "https://registry.yarnpkg.com/wrtc/-/wrtc-0.4.7.tgz#c61530cd662713e50bffe64b7a78673ce070426c" - integrity sha512-P6Hn7VT4lfSH49HxLHcHhDq+aFf/jd9dPY7lDHeFhZ22N3858EKuwm2jmnlPzpsRGEPaoF6XwkcxY5SYnt4f/g== - dependencies: - node-pre-gyp "^0.13.0" - optionalDependencies: - domexception "^1.0.1" - -ws@^7.4.2, ws@^7.4.5: - version "7.4.6" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" - integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== - -xml2js@^0.4.8: - version "0.4.23" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" - integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== - dependencies: - sax ">=0.6.0" - xmlbuilder "~11.0.0" - -xmlbuilder@0.4.x: - version "0.4.3" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-0.4.3.tgz#c4614ba74e0ad196e609c9272cd9e1ddb28a8a58" - integrity sha1-xGFLp04K0ZbmCcknLNnh3bKKilg= - -xmlbuilder@~11.0.0: - version "11.0.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" - integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== - -xmldom@0.1.x: - version "0.1.31" - resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz#b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff" - integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ== - -yallist@^3.0.0, yallist@^3.0.3: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== diff --git a/shared/core-utils/common/url.ts b/shared/core-utils/common/url.ts index 52ed247c4..9c111cbcc 100644 --- a/shared/core-utils/common/url.ts +++ b/shared/core-utils/common/url.ts @@ -53,7 +53,7 @@ function decorateVideoLink (options: { }) { const { url } = options - const params = generateParams(window.location.search) + const params = new URLSearchParams() if (options.startTime !== undefined && options.startTime !== null) { const startTimeInt = Math.floor(options.startTime) @@ -85,7 +85,7 @@ function decoratePlaylistLink (options: { }) { const { url } = options - const params = generateParams(window.location.search) + const params = new URLSearchParams() if (options.playlistPosition) params.set('playlistPosition', '' + options.playlistPosition) @@ -119,12 +119,3 @@ function buildUrl (url: string, params: URLSearchParams) { return url } - -function generateParams (url: string) { - const params = new URLSearchParams(window.location.search) - // Unused parameters in embed - params.delete('videoId') - params.delete('resume') - - return params -} diff --git a/shared/models/plugins/client/client-hook.model.ts b/shared/models/plugins/client/client-hook.model.ts index d811e2c67..7dd8bc507 100644 --- a/shared/models/plugins/client/client-hook.model.ts +++ b/shared/models/plugins/client/client-hook.model.ts @@ -26,6 +26,10 @@ export const clientFilterHookObject = { 'filter:api.video-watch.video.get.params': true, 'filter:api.video-watch.video.get.result': true, + // Filter params/result of the function that fetch video playlist elements of the video-watch page + 'filter:api.video-watch.video-playlist-elements.get.params': true, + 'filter:api.video-watch.video-playlist-elements.get.result': true, + // Filter params/result of the function that fetch the threads of the video-watch page 'filter:api.video-watch.video-threads.list.params': true, 'filter:api.video-watch.video-threads.list.result': true, diff --git a/shared/models/server/server-config.model.ts b/shared/models/server/server-config.model.ts index 585e99aca..3b026e3a5 100644 --- a/shared/models/server/server-config.model.ts +++ b/shared/models/server/server-config.model.ts @@ -30,6 +30,7 @@ export interface RegisteredIdAndPassAuthConfig { } export interface ServerConfig { + allowEdits: boolean serverVersion: string serverCommit?: string diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md index 8fe190320..7c3fcd55b 100644 --- a/support/doc/dependencies.md +++ b/support/doc/dependencies.md @@ -1,5 +1,7 @@ # Dependencies +:warning: **Warning**: dependencies guide is maintained by the community. Some parts may be outdated! :warning: + Follow the below guides, and check their versions match [required external dependencies versions](https://github.com/Chocobozzz/PeerTube/blob/master/engines.yaml). You can check them automatically via `sudo npx engineslist`. _note_: only **LTS** versions of external dependencies are supported. If no LTS version matching the version constraint is available, only **release** versions are supported. @@ -554,6 +556,12 @@ rc-service redis start rc-service postgresql-11 start ``` +6. Create Python version symlink for youtube-dl: + +``` +sudo ln -s /usr/bin/python3 /usr/bin/python +``` + ## OpenBSD 1. Install Packages: diff --git a/support/doc/tools.md b/support/doc/tools.md index 433aaeff7..78ace1344 100644 --- a/support/doc/tools.md +++ b/support/doc/tools.md @@ -10,7 +10,6 @@ - [CLI wrapper](#cli-wrapper) - [peertube-import-videos.js](#peertube-import-videosjs) - [peertube-upload.js](#peertube-uploadjs) - - [peertube-watch.js](#peertube-watchjs) - [peertube-plugins.js](#peertube-pluginsjs) - [peertube-redundancy.js](#peertube-redundancyjs) - [Server tools](#server-tools) @@ -22,11 +21,6 @@ - [update-host.js](#update-hostjs) - [reset-password.js](#reset-passwordjs) - [plugin install/uninstall](#plugin-installuninstall) - - [REPL (Read Eval Print Loop)](#repl-read-eval-print-loop) - - [.help](#help) - - [Lodash example](#lodash-example) - - [YoutubeDL example](#youtubedl-example) - - [Models examples](#models-examples) @@ -75,8 +69,6 @@ You can access it as `peertube` via an alias in your `.bashrc` like `alias peert auth [action] register your accounts on remote instances to use them with other commands upload|up upload a video import-videos|import import a video from a streaming platform - watch|w watch a video in the terminal ✩°。⋆ - repl initiate a REPL to access internals plugins|p [action] manage instance plugins redundancy|r [action] manage video redundancies help [cmd] display help for [cmd] @@ -100,12 +92,6 @@ You can now use that account to upload videos without feeding the same parameter $ peertube up ``` -And now that your video is online, you can watch it from the confort of your terminal (use `peertube watch --help` to see the supported players): - -```bash -$ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10 -``` - To list, install, uninstall dynamically plugins/themes of an instance: ```bash @@ -169,22 +155,6 @@ $ cd ${CLONE} $ node dist/server/tools/peertube-upload.js --help ``` -#### peertube-watch.js - -You can use this script to play videos directly from the CLI. - -It provides support for different players: - -- ascii (default ; plays in ascii art in your terminal!) -- mpv -- mplayer -- vlc -- stdout -- xbmc -- airplay -- chromecast - - #### peertube-plugins.js Install/update/uninstall or list local or NPM PeerTube plugins: @@ -413,134 +383,3 @@ $ # Docker installation $ cd /var/www/peertube-docker $ docker-compose exec -u peertube peertube npm run plugin:uninstall -- --npm-name peertube-plugin-myplugin ``` - -### REPL (Read Eval Print Loop) - -If you want to interact with the application libraries and objects even when PeerTube is not running, there is a REPL for that. - -usage: `node ./dist/server/tools/peertube-repl.js` - -"The default evaluator will, by default, assign the result of the most recently evaluated expression to the special variable `_` (underscore). Explicitly setting `_` to a value will disable this behavior." - -- type `.help` to list commands available in the repl, notice it starts with a dot -- type `.exit` to exit, note that you still have to press CTRL-C to actually exit, or press CTRL-C (3 times) without typing `.exit` to exit -- type `context` to list all available objects and libraries in the context, note: `Promise` is also available but it's not listed in the context, in case you need promises for something -- type `env` to see the loaded environment variables -- type `path` to access path library -- type `lodash` to access lodash library -- type `uuidv1` to access uuid/v1 library -- type `uuidv3` to access uuid/v3 library -- type `uuidv4` to access uuid/v4 library -- type `uuidv5` to access uuid/v5 library -- type `YoutubeDL` to access youtube-dl library -- type `cli` to access the cli helpers object -- type `logger` to access the logger; if you log to it, it will write to stdout and to the peertube.log file -- type `constants` to access the constants loaded by the server -- type `coreUtils` to access the core-utils helpers object -- type `ffmpegUtils` to access the ffmpeg-utils helpers object -- type `peertubeCryptoUtils` to access the peertube-crypto helpers object -- type `signupUtils` to access the signup helpers object -- type `utils` to access the utils helpers object -- type `YoutubeDLUtils` to access the youtube-dl helpers object -- type `sequelizeTypescript` to access sequelizeTypescript -- type `modelsUtils` to access the models/utils -- type `models` to access the shortcut to sequelizeTypescript.models -- type `transaction` to access the shortcut to sequelizeTypescript.transaction -- type `query` to access the shortcut to sequelizeTypescript.query -- type `queryInterface` to access the shortcut to sequelizeTypescript.queryInterface - -#### .help - -``` -PeerTube [1.0.0] (b10eb595)> .help -.break Sometimes you get stuck, this gets you out -.clear Break, and also clear the local context -.editor Enter editor mode -.exit Exit the repl -.help Print this help message -.load Load JS from a file into the REPL session -.r Reset REPL -.reset Reset REPL -.save Save all evaluated commands in this REPL session to a file -PeerTube [1.0.0] (b10eb595)> -``` - -#### Lodash example - -``` -PeerTube [1.0.0] (b10eb595)> lodash.keys(context) -[ 'global', - 'console', - 'DTRACE_NET_SERVER_CONNECTION', - 'DTRACE_NET_STREAM_END', - 'DTRACE_HTTP_SERVER_REQUEST', - 'DTRACE_HTTP_SERVER_RESPONSE', - 'DTRACE_HTTP_CLIENT_REQUEST', - 'DTRACE_HTTP_CLIENT_RESPONSE', - 'process', - 'Buffer', - 'clearImmediate', - 'clearInterval', - 'clearTimeout', - 'setImmediate', - 'setInterval', - 'setTimeout', - 'XMLHttpRequest', - 'compact2string', - 'module', - 'require', - 'path', - 'repl', - 'context', - 'env', - 'lodash', - 'uuidv1', - 'uuidv3', - 'uuidv4', - 'uuidv5', - 'cli', - 'logger', - 'constants', - 'Sequelize', - 'sequelizeTypescript', - 'modelsUtils', - 'models', - 'transaction', - 'query', - 'queryInterface', - 'YoutubeDL', - 'coreUtils', - 'ffmpegUtils', - 'peertubeCryptoUtils', - 'signupUtils', - 'utils', - 'YoutubeDLUtils' ] -PeerTube [1.0.0] (b10eb595)> -``` - -#### YoutubeDL example -``` -YoutubeDL.getInfo('https://www.youtube.com/watch?v=I5ZN289jjDo', function(err, data) {console.log(err, data)}) -``` - -#### Models examples -``` -PeerTube [1.0.0] (b10eb595)> new models.ActorModel({id: 3}).getVideoChannel().then(function(data){console.log(data.dataValues.name)}) -Promise { - _bitField: 0, - _fulfillmentHandler0: undefined, - _rejectionHandler0: undefined, - _promise0: undefined, - _receiver0: undefined } -PeerTube [1.0.0] (b10eb595)> Main root channel -PeerTube [1.0.0] (b10eb595)> let out; new models.UserModel({id: 1}).getAccount().then(function (data) {out = data.dataValues.id}) -Promise { - _bitField: 0, - _fulfillmentHandler0: undefined, - _rejectionHandler0: undefined, - _promise0: undefined, - _receiver0: undefined } -PeerTube [1.0.0] (b10eb595)> out -2 -PeerTube [1.0.0] (b10eb595)> -``` diff --git a/support/docker/production/Dockerfile.buster b/support/docker/production/Dockerfile.buster index 2ff0591f9..163c514f5 100644 --- a/support/docker/production/Dockerfile.buster +++ b/support/docker/production/Dockerfile.buster @@ -33,7 +33,8 @@ RUN mkdir /data /config RUN chown -R peertube:peertube /data /config ENV NODE_ENV production -ENV NODE_CONFIG_DIR /config +ENV NODE_CONFIG_DIR /app/config:/app/support/docker/production/config:/config +ENV PEERTUBE_LOCAL_CONFIG /config VOLUME /data VOLUME /config diff --git a/support/docker/production/config/custom-environment-variables.yaml b/support/docker/production/config/custom-environment-variables.yaml index 1b474582a..7c430a995 100644 --- a/support/docker/production/config/custom-environment-variables.yaml +++ b/support/docker/production/config/custom-environment-variables.yaml @@ -68,6 +68,13 @@ object_storage: prefix: "PEERTUBE_OBJECT_STORAGE_VIDEOS_PREFIX" base_url: "PEERTUBE_OBJECT_STORAGE_VIDEOS_BASE_URL" +webadmin: + configuration: + edit: + allowed: + __name: "PEERTUBE_ALLOW_WEBADMIN_CONFIG" + __format: "json" + log: level: "PEERTUBE_LOG_LEVEL" log_ping_requests: diff --git a/support/docker/production/config/production.yaml b/support/docker/production/config/production.yaml index 8c8f8d6bc..3bff8a0b0 100644 --- a/support/docker/production/config/production.yaml +++ b/support/docker/production/config/production.yaml @@ -55,7 +55,13 @@ storage: captions: '../data/captions/' cache: '../data/cache/' plugins: '../data/plugins/' - # Overridable client files : logo.svg, favicon.png and icons/*.png (PWA) in client/dist/assets/images + # Overridable client files in client/dist/assets/images : + # - logo.svg + # - favicon.png + # - default-playlist.jpg + # - default-avatar-account.png + # - default-avatar-video-channel.png + # - and icons/*.png (PWA) # Could contain for example assets/images/favicon.png # If the file exists, peertube will serve it # If not, peertube will fallback to the default fil diff --git a/support/docker/production/entrypoint.sh b/support/docker/production/entrypoint.sh index 7dd626b9f..261055e84 100755 --- a/support/docker/production/entrypoint.sh +++ b/support/docker/production/entrypoint.sh @@ -1,15 +1,8 @@ #!/bin/sh set -e -# Populate config directory -if [ -z "$(ls -A /config)" ]; then - cp /app/support/docker/production/config/* /config -fi -# Always copy default and custom env configuration file, in cases where new keys were added -cp /app/config/default.yaml /config -cp /app/support/docker/production/config/custom-environment-variables.yaml /config -find /config ! -user peertube -exec chown peertube:peertube {} \; +find /config ! -user peertube -exec chown peertube:peertube {} \; || true # first arg is `-f` or `--some-option` # or first arg is `something.conf` diff --git a/support/nginx/peertube b/support/nginx/peertube index 3ef62367c..2b1600d97 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube @@ -172,7 +172,7 @@ server { # Bypass PeerTube for performance reasons. Optional. # Should be consistent with client-overrides assets list in /server/controllers/client.ts - location ~ ^/client/(assets/images/(icons/icon-36x36\.png|icons/icon-48x48\.png|icons/icon-72x72\.png|icons/icon-96x96\.png|icons/icon-144x144\.png|icons/icon-192x192\.png|icons/icon-512x512\.png|logo\.svg|favicon\.png))$ { + location ~ ^/client/(assets/images/(icons/icon-36x36\.png|icons/icon-48x48\.png|icons/icon-72x72\.png|icons/icon-96x96\.png|icons/icon-144x144\.png|icons/icon-192x192\.png|icons/icon-512x512\.png|logo\.svg|favicon\.png|default-playlist\.jpg|default-avatar-account\.png|default-avatar-video-channel\.png))$ { add_header Cache-Control "public, max-age=31536000, immutable"; # Cache 1 year root /var/www/peertube; diff --git a/yarn.lock b/yarn.lock index fc0654062..201b9fb9e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5967,16 +5967,6 @@ markdown-it@^12.0.4: mdurl "^1.0.1" uc.micro "^1.0.5" -marked-man@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/marked-man/-/marked-man-0.7.0.tgz#220ba01d275d16f1a98e4e7fc3c5eac0630c68e4" - integrity sha512-zxK5E4jbuARALc+fIUAanM2njVGnrd9YvKrqoDHUg2XwNLJijo39EzMIg59LecHBHsIHNtPqepqnJp4SmL/EVg== - -marked@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/marked/-/marked-3.0.2.tgz#60ce97d6aec34dd882ab4bb4df82494666854e17" - integrity sha512-TMJQQ79Z0e3rJYazY0tIoMsFzteUGw9fB3FD+gzuIT3zLuG9L9ckIvUfF51apdJkcqc208jJN2KbtPbOvXtbjA== - math-interval-parser@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/math-interval-parser/-/math-interval-parser-2.0.1.tgz#e22cd6d15a0a7f4c03aec560db76513da615bed4"