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 e3b6f8305..94f1021bf 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 @@ -189,6 +189,9 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit { maxInstanceLives: MAX_INSTANCE_LIVES_VALIDATOR, maxUserLives: MAX_USER_LIVES_VALIDATOR, allowReplay: null, + latencySetting: { + enabled: null + }, transcoding: { enabled: null, diff --git a/client/src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html b/client/src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html index 10d5278c1..8d6a4ce19 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html +++ b/client/src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html @@ -36,6 +36,18 @@ +
+ + + Small latency disables P2P and high latency can increase P2P ratio + + + +
+
+ +
+ + + +
+ {{ formErrors.latencyMode }} +
+
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts index 2801fc519..a2399eafb 100644 --- a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts +++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts @@ -1,6 +1,6 @@ import { forkJoin } from 'rxjs' import { map } from 'rxjs/operators' -import { SelectChannelItem } from 'src/types/select-options-item.model' +import { SelectChannelItem, SelectOptionsItem } from 'src/types/select-options-item.model' import { ChangeDetectorRef, Component, EventEmitter, Input, NgZone, OnDestroy, OnInit, Output, ViewChild } from '@angular/core' import { AbstractControl, FormArray, FormControl, FormGroup, Validators } from '@angular/forms' import { HooksService, PluginService, ServerService } from '@app/core' @@ -26,6 +26,7 @@ import { PluginInfo } from '@root-helpers/plugins-manager' import { HTMLServerConfig, LiveVideo, + LiveVideoLatencyMode, RegisterClientFormFieldOptions, RegisterClientVideoFieldOptions, VideoConstant, @@ -78,6 +79,23 @@ export class VideoEditComponent implements OnInit, OnDestroy { videoCategories: VideoConstant[] = [] videoLicences: VideoConstant[] = [] videoLanguages: VideoLanguages[] = [] + latencyModes: SelectOptionsItem[] = [ + { + id: LiveVideoLatencyMode.SMALL_LATENCY, + label: $localize`Small latency`, + description: $localize`Reduce latency to ~15s disabling P2P` + }, + { + id: LiveVideoLatencyMode.DEFAULT, + label: $localize`Default`, + description: $localize`Average latency of 30s` + }, + { + id: LiveVideoLatencyMode.HIGH_LATENCY, + label: $localize`High latency`, + description: $localize`Average latency of 60s increasing P2P ratio` + } + ] pluginDataFormGroup: FormGroup @@ -141,6 +159,7 @@ export class VideoEditComponent implements OnInit, OnDestroy { originallyPublishedAt: VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR, liveStreamKey: null, permanentLive: null, + latencyMode: null, saveReplay: null } @@ -273,6 +292,10 @@ export class VideoEditComponent implements OnInit, OnDestroy { return this.form.value['permanentLive'] === true } + isLatencyModeEnabled () { + return this.serverConfig.live.latencySetting.enabled + } + isPluginFieldHidden (pluginField: PluginField) { if (typeof pluginField.commonOptions.hidden !== 'function') return false diff --git a/client/src/app/+videos/+video-edit/video-update.component.ts b/client/src/app/+videos/+video-edit/video-update.component.ts index d9e8344fc..9c4998f2e 100644 --- a/client/src/app/+videos/+video-edit/video-update.component.ts +++ b/client/src/app/+videos/+video-edit/video-update.component.ts @@ -64,6 +64,7 @@ export class VideoUpdateComponent extends FormReactive implements OnInit { if (this.liveVideo) { this.form.patchValue({ saveReplay: this.liveVideo.saveReplay, + latencyMode: this.liveVideo.latencyMode, permanentLive: this.liveVideo.permanentLive }) } @@ -127,7 +128,8 @@ export class VideoUpdateComponent extends FormReactive implements OnInit { const liveVideoUpdate: LiveVideoUpdate = { saveReplay: !!this.form.value.saveReplay, - permanentLive: !!this.form.value.permanentLive + permanentLive: !!this.form.value.permanentLive, + latencyMode: this.form.value.latencyMode } // Don't update live attributes if they did not change 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 1f45c4d26..067d3bc84 100644 --- a/client/src/app/+videos/+video-watch/video-watch.component.ts +++ b/client/src/app/+videos/+video-watch/video-watch.component.ts @@ -1,5 +1,5 @@ import { Hotkey, HotkeysService } from 'angular2-hotkeys' -import { forkJoin, Subscription } from 'rxjs' +import { forkJoin, map, Observable, of, Subscription, switchMap } from 'rxjs' import { isP2PEnabled } from 'src/assets/player/utils' import { PlatformLocation } from '@angular/common' import { Component, ElementRef, Inject, LOCALE_ID, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core' @@ -22,11 +22,13 @@ import { HooksService } from '@app/core/plugins/hooks.service' import { isXPercentInViewport, scrollToTop } from '@app/helpers' import { Video, VideoCaptionService, VideoDetails, VideoService } from '@app/shared/shared-main' import { SubscribeButtonComponent } from '@app/shared/shared-user-subscription' +import { LiveVideoService } from '@app/shared/shared-video-live' import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist' import { timeToInt } from '@shared/core-utils' import { HTMLServerConfig, HttpStatusCode, + LiveVideo, PeerTubeProblemDocument, ServerErrorCode, VideoCaption, @@ -63,6 +65,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { video: VideoDetails = null videoCaptions: VideoCaption[] = [] + liveVideo: LiveVideo playlistPosition: number playlist: VideoPlaylist = null @@ -89,6 +92,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { private router: Router, private videoService: VideoService, private playlistService: VideoPlaylistService, + private liveVideoService: LiveVideoService, private confirmService: ConfirmService, private metaService: MetaService, private authService: AuthService, @@ -239,12 +243,21 @@ export class VideoWatchComponent implements OnInit, OnDestroy { 'filter:api.video-watch.video.get.result' ) + const videoAndLiveObs: Observable<{ video: VideoDetails, live?: LiveVideo }> = videoObs.pipe( + switchMap(video => { + if (!video.isLive) return of({ video }) + + return this.liveVideoService.getVideoLive(video.uuid) + .pipe(map(live => ({ live, video }))) + }) + ) + forkJoin([ - videoObs, + videoAndLiveObs, this.videoCaptionService.listCaptions(videoId), this.userService.getAnonymousOrLoggedUser() ]).subscribe({ - next: ([ video, captionsResult, loggedInOrAnonymousUser ]) => { + next: ([ { video, live }, captionsResult, loggedInOrAnonymousUser ]) => { const queryParams = this.route.snapshot.queryParams const urlOptions = { @@ -261,7 +274,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { peertubeLink: false } - this.onVideoFetched({ video, videoCaptions: captionsResult.data, loggedInOrAnonymousUser, urlOptions }) + this.onVideoFetched({ video, live, videoCaptions: captionsResult.data, loggedInOrAnonymousUser, urlOptions }) .catch(err => this.handleGlobalError(err)) }, @@ -330,16 +343,18 @@ export class VideoWatchComponent implements OnInit, OnDestroy { private async onVideoFetched (options: { video: VideoDetails + live: LiveVideo videoCaptions: VideoCaption[] urlOptions: URLOptions loggedInOrAnonymousUser: User }) { - const { video, videoCaptions, urlOptions, loggedInOrAnonymousUser } = options + const { video, live, videoCaptions, urlOptions, loggedInOrAnonymousUser } = options this.subscribeToLiveEventsIfNeeded(this.video, video) this.video = video this.videoCaptions = videoCaptions + this.liveVideo = live // Re init attributes this.playerPlaceholderImgSrc = undefined @@ -387,6 +402,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { const params = { video: this.video, videoCaptions: this.videoCaptions, + liveVideo: this.liveVideo, urlOptions, loggedInOrAnonymousUser, user: this.user @@ -532,12 +548,13 @@ export class VideoWatchComponent implements OnInit, OnDestroy { private buildPlayerManagerOptions (params: { video: VideoDetails + liveVideo: LiveVideo videoCaptions: VideoCaption[] urlOptions: CustomizationOptions & { playerMode: PlayerMode } loggedInOrAnonymousUser: User user?: AuthUser }) { - const { video, videoCaptions, urlOptions, loggedInOrAnonymousUser, user } = params + const { video, liveVideo, videoCaptions, urlOptions, loggedInOrAnonymousUser, user } = params const getStartTime = () => { const byUrl = urlOptions.startTime !== undefined @@ -562,6 +579,10 @@ export class VideoWatchComponent implements OnInit, OnDestroy { src: environment.apiUrl + c.captionPath })) + const liveOptions = video.isLive + ? { latencyMode: liveVideo.latencyMode } + : undefined + const options: PeertubePlayerManagerOptions = { common: { autoplay: this.isAutoplay(), @@ -597,6 +618,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { embedTitle: video.name, isLive: video.isLive, + liveOptions, language: this.localeId, diff --git a/client/src/assets/player/peertube-player-options-builder.ts b/client/src/assets/player/peertube-player-options-builder.ts index 7a82b128d..c9cbbbf4d 100644 --- a/client/src/assets/player/peertube-player-options-builder.ts +++ b/client/src/assets/player/peertube-player-options-builder.ts @@ -1,9 +1,10 @@ import videojs from 'video.js' +import { HybridLoaderSettings } from '@peertube/p2p-media-loader-core' import { HlsJsEngineSettings } from '@peertube/p2p-media-loader-hlsjs' import { PluginsManager } from '@root-helpers/plugins-manager' import { buildVideoLink, decorateVideoLink } from '@shared/core-utils' import { isDefaultLocale } from '@shared/core-utils/i18n' -import { VideoFile } from '@shared/models' +import { LiveVideoLatencyMode, VideoFile } from '@shared/models' import { copyToClipboard } from '../../root-helpers/utils' import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager' import { segmentUrlBuilderFactory } from './p2p-media-loader/segment-url-builder' @@ -19,7 +20,6 @@ import { VideoJSPluginOptions } from './peertube-videojs-typings' import { buildVideoOrPlaylistEmbed, getRtcConfig, isIOS, isSafari } from './utils' -import { HybridLoaderSettings } from '@peertube/p2p-media-loader-core' export type PlayerMode = 'webtorrent' | 'p2p-media-loader' @@ -76,6 +76,9 @@ export interface CommonOptions extends CustomizationOptions { embedTitle: string isLive: boolean + liveOptions?: { + latencyMode: LiveVideoLatencyMode + } language?: string @@ -250,21 +253,8 @@ export class PeertubePlayerOptionsBuilder { .filter(t => t.startsWith('ws')) const specificLiveOrVODOptions = this.options.common.isLive - ? { // Live - requiredSegmentsPriority: 1 - } - : { // VOD - requiredSegmentsPriority: 3, - - cachedSegmentExpiration: 86400000, - cachedSegmentsCount: 100, - - httpDownloadMaxPriority: 9, - httpDownloadProbability: 0.06, - httpDownloadProbabilitySkipIfNoPeers: true, - - p2pDownloadMaxPriority: 50 - } + ? this.getP2PMediaLoaderLiveOptions() + : this.getP2PMediaLoaderVODOptions() return { trackerAnnounce, @@ -283,13 +273,57 @@ export class PeertubePlayerOptionsBuilder { } } + private getP2PMediaLoaderLiveOptions (): Partial { + const base = { + requiredSegmentsPriority: 1 + } + + const latencyMode = this.options.common.liveOptions.latencyMode + + switch (latencyMode) { + case LiveVideoLatencyMode.SMALL_LATENCY: + return { + ...base, + + useP2P: false, + httpDownloadProbability: 1 + } + + case LiveVideoLatencyMode.HIGH_LATENCY: + return base + + default: + return base + } + } + + private getP2PMediaLoaderVODOptions (): Partial { + return { + requiredSegmentsPriority: 3, + + cachedSegmentExpiration: 86400000, + cachedSegmentsCount: 100, + + httpDownloadMaxPriority: 9, + httpDownloadProbability: 0.06, + httpDownloadProbabilitySkipIfNoPeers: true, + + p2pDownloadMaxPriority: 50 + } + } + private getHLSOptions (p2pMediaLoaderConfig: HlsJsEngineSettings) { + const specificLiveOrVODOptions = this.options.common.isLive + ? this.getHLSLiveOptions() + : this.getHLSVODOptions() + const base = { capLevelToPlayerSize: true, autoStartLoad: false, - liveSyncDurationCount: 5, - loader: new this.p2pMediaLoaderModule.Engine(p2pMediaLoaderConfig).createLoaderClass() + loader: new this.p2pMediaLoaderModule.Engine(p2pMediaLoaderConfig).createLoaderClass(), + + ...specificLiveOrVODOptions } const averageBandwidth = getAverageBandwidthInStore() @@ -305,6 +339,33 @@ export class PeertubePlayerOptionsBuilder { } } + private getHLSLiveOptions () { + const latencyMode = this.options.common.liveOptions.latencyMode + + switch (latencyMode) { + case LiveVideoLatencyMode.SMALL_LATENCY: + return { + liveSyncDurationCount: 2 + } + + case LiveVideoLatencyMode.HIGH_LATENCY: + return { + liveSyncDurationCount: 10 + } + + default: + return { + liveSyncDurationCount: 5 + } + } + } + + private getHLSVODOptions () { + return { + liveSyncDurationCount: 5 + } + } + private addWebTorrentOptions (plugins: VideoJSPluginOptions, alreadyPlayed: boolean) { const commonOptions = this.options.common const webtorrentOptions = this.options.webtorrent diff --git a/client/src/locale/angular.fi-FI.xlf b/client/src/locale/angular.fi-FI.xlf index e57df21bc..496736524 100644 --- a/client/src/locale/angular.fi-FI.xlf +++ b/client/src/locale/angular.fi-FI.xlf @@ -9,7 +9,7 @@ Slide of - Slide of + Dia / node_modules/src/carousel/carousel.ts 147,157 @@ -31,7 +31,7 @@ Select month - Select month + Valitse kuukausi node_modules/src/datepicker/datepicker-navigation-select.ts 74 @@ -43,7 +43,7 @@ Select year - Select year + Valitse vuosi node_modules/src/datepicker/datepicker-navigation-select.ts 74 @@ -55,7 +55,7 @@ Previous month - Previous month + Edellinen kuukausi node_modules/src/datepicker/datepicker-navigation.ts 69 @@ -67,7 +67,7 @@ Next month - Next month + Seuraava kuukausi node_modules/src/datepicker/datepicker-navigation.ts 69 @@ -79,42 +79,42 @@ «« - «« + «« node_modules/src/pagination/pagination.ts247 « - « + « node_modules/src/pagination/pagination.ts266 » - » + » node_modules/src/pagination/pagination.ts285 »» - »» + »» node_modules/src/pagination/pagination.ts305 First - First + Ensimmäinen node_modules/src/pagination/pagination.ts320 Previous - Previous + Edellinen node_modules/src/pagination/pagination.ts335 Next - Next + Seuraava node_modules/src/pagination/pagination.ts347 Last - Last + Viimeinen node_modules/src/pagination/pagination.ts357 @@ -190,7 +190,7 @@ - + node_modules/src/timepicker/timepicker.ts 295 @@ -198,7 +198,7 @@ - + node_modules/src/timepicker/timepicker.ts 295 @@ -206,7 +206,7 @@ Close - Close + Sulje node_modules/src/toast/toast.ts108 @@ -226,131 +226,62 @@ published a new video: - - published a new video: - - - - + published a new video: src/app/shared/shared-main/users/user-notifications.component.html15 The notification concerns a video now unavailable - - The notification concerns a video now unavailable - + Ilmoitus koskee videota, jota ei ole enää saatavilla src/app/shared/shared-main/users/user-notifications.component.html23 Your video has been unblocked - - Your video - - - has been unblocked - - + Your video has been unblocked src/app/shared/shared-main/users/user-notifications.component.html32 Your video has been blocked - - Your video - - - has been blocked - - + Videosi on estetty src/app/shared/shared-main/users/user-notifications.component.html40 A new video abuse has been created on video - - A new video abuse - has been created on video - - - - + A new video abuse has been created on video src/app/shared/shared-main/users/user-notifications.component.html49 A new comment abuse has been created on video - - A new comment abuse - has been created on video - - - - + A new comment abuse has been created on video src/app/shared/shared-main/users/user-notifications.component.html53 A new account abuse has been created on account - - A new account abuse - has been created on account - - - - + A new account abuse has been created on account src/app/shared/shared-main/users/user-notifications.component.html57 A new abuse has been created - - A new abuse - has been created - - + A new abuse has been created src/app/shared/shared-main/users/user-notifications.component.html62 Your abuse has been acceptedrejected - - Your abuse - - has been - - accepted - - rejected - - + Your abuse has been acceptedrejected src/app/shared/shared-main/users/user-notifications.component.html70 Abuse has a new message - - Abuse - - has a new message - - + Abuse has a new message src/app/shared/shared-main/users/user-notifications.component.html80 The recently added video has been automatically blocked - - The recently added video - - - has been - automatically blocked - - + The recently added video has been automatically blocked src/app/shared/shared-main/users/user-notifications.component.html87 commented your video - - - - commented your video - - - - + commented your video src/app/shared/shared-main/users/user-notifications.component.html99 @@ -363,65 +294,32 @@ Your video has been published - - Your video - - - has been published - - + Videosi on julkaistu src/app/shared/shared-main/users/user-notifications.component.html115 Your video import succeeded - - Your video import - - succeeded - - + Your video import succeeded src/app/shared/shared-main/users/user-notifications.component.html124 Your video import failed - - Your video import - - failed - - + Your video import failed src/app/shared/shared-main/users/user-notifications.component.html132 User registered on your instance - - User - - - registered on your instance - - + Käyttäjä rekisteröityi instanssillesi src/app/shared/shared-main/users/user-notifications.component.html139 is following your channel your account - - - - is following - - - your channel - - - your account - - + is following your channel your account src/app/shared/shared-main/users/user-notifications.component.html150 - mentioned you on video - mentioned you on video + mentioned you on video + mentioned you on video src/app/shared/shared-main/users/user-notifications.component.html 164 @@ -429,38 +327,25 @@ Your instance has a new follower () awaiting your approval - - Your instance has - a new follower - ( - ) - - awaiting your approval - - + Your instance has a new follower () awaiting your approval src/app/shared/shared-main/users/user-notifications.component.html180 Your instance automatically followed - - Your instance automatically followed - - - - + Your instance automatically followed src/app/shared/shared-main/users/user-notifications.component.html189 - A new version of the plugin/theme is available: - A new version of the plugin/theme is available: + 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 - A new version of PeerTube is available: - A new version of PeerTube is available: + 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 @@ -519,14 +404,7 @@ Your report will be sent to moderators of and will be forwarded to the video origin () too. - - Your report will be sent to moderators of - - and will be forwarded to the video origin ( - ) too - . - - + Your report will be sent to moderators of and will be forwarded to the video origin () too. src/app/shared/shared-moderation/report-modals/video-report.component.html72 @@ -558,9 +436,8 @@ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71 - Short text to tell people how they can support the channel (membership platform...).<br /><br /> - When a video is uploaded in this channel, the video support field will be automatically filled by this text. - Short text to tell people how they can support the channel (membership platform...).<br /><br /> + Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text. + Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text. src/app/+manage/video-channel-edit/video-channel-edit.component.html @@ -672,9 +549,7 @@ Report video "" - Report video " - " - + Raportoi video "" src/app/shared/shared-moderation/report-modals/video-report.component.html3 @@ -704,14 +579,12 @@ {VAR_PLURAL, plural, =1 {1 view} other { views}} - {VAR_PLURAL, plural, =1 {1 view} other { - views} } - + {VAR_PLURAL, plural, =1 {1 näyttökerta} other { näyttökertaa}} src/app/shared/shared-video/video-views-counter.component.html3 {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} - {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} + {VAR_PLURAL, plural, =1 {1 katselija} other { katselijaa}} src/app/shared/shared-video/video-views-counter.component.html 7 @@ -767,7 +640,7 @@ Files were removed. - Files were removed. + Tiedotot poistettiin. src/app/+admin/overview/videos/video-list.component.ts 235 @@ -797,9 +670,7 @@ Updated - Päivitettiin - - + Päivitettiin src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 @@ -828,9 +699,7 @@ Delete from - Poista kanavalta - - + Poista kanavalta src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html100 @@ -874,8 +743,8 @@ src/app/shared/shared-forms/markdown-textarea.component.html20 - <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: - <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: + <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: + <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: src/app/shared/shared-main/misc/help.component.ts75 @@ -890,7 +759,7 @@ Subscribe with a remote account: - Subscribe with a remote account: + Tilaa etätilillä: src/app/shared/shared-user-subscription/subscribe-button.component.html 62 @@ -898,7 +767,7 @@ Subscribe with an account on this instance - Subscribe with an account on this instance + Tilaa tämän instanssin tilillä src/app/shared/shared-user-subscription/subscribe-button.component.html57 @@ -918,17 +787,17 @@ Do you really want to remove "" files? - Do you really want to remove "" files? + Haluatko varmasti poistaa "" tiedostot? src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 Remove "" files - Remove "" files + Poista "" tiedostot src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts274 Removed files of . - Removed files of . + Tiedostot poistettu kohteelta . src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts280 @@ -953,17 +822,12 @@ Remote subscribeRemote interact - - Etätilaus - - Etäkäyttö - - + Etätilaus Etäkäyttö 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). + Voit tilata kanavaa millä tahansa ActivityPub-yhteensopivalla fediverse instanssilla (esimerkiksi PeerTube, Mastodon tai Pleroma). src/app/shared/shared-user-subscription/remote-subscribe.component.html17 @@ -973,12 +837,12 @@ PeerTube version - PeerTube version + PeerTube versio src/app/shared/shared-instance/instance-features-table.component.html6 Default NSFW/sensitive videos policycan be redefined by the users - + NSFW/arkaluonteisten videoiden oletuskäytäntövoi käyttäjät määritellä uudelleen src/app/shared/shared-instance/instance-features-table.component.html13 @@ -1024,7 +888,7 @@ Automatically published - Automatically published + Automaattisesti julkaistu src/app/shared/shared-instance/instance-features-table.component.html42 @@ -1037,12 +901,7 @@ Unlimited ( per day) - - Rajoittamaton - ( - päivässä) - - + Rajoittamaton ( päivässä) src/app/shared/shared-instance/instance-features-table.component.html60 @@ -1200,9 +1059,7 @@ Block video "" - Block video " - " - + Estä video "" src/app/shared/shared-moderation/video-block.component.html8 @@ -1225,7 +1082,7 @@ This will ask remote instances to delete local videos - This will ask remote instances to delete local videos + Tämä pyytää ulkoisien instanssien poistamaan paikalliset videot src/app/shared/shared-moderation/video-block.component.html 34 @@ -1233,7 +1090,7 @@ This will ask remote instances to delete this video - This will ask remote instances to delete this video + Tämä pyytää ulkoisien instanssien poistamaan tämän videon src/app/shared/shared-moderation/video-block.component.html 35 @@ -1241,7 +1098,7 @@ Blocking a live will automatically terminate the live stream. - Blocking a live will automatically terminate the live stream. + Livestriimin estäminen automaattisesti sulkee livestriimin. src/app/shared/shared-moderation/video-block.component.html 40,42 @@ -1249,7 +1106,7 @@ Blocked videos. - Blocked videos. + Estetty videota. src/app/shared/shared-moderation/video-block.component.ts 84 @@ -1257,7 +1114,7 @@ Blocked - Blocked + Estetty src/app/shared/shared-moderation/video-block.component.ts 85 @@ -1288,12 +1145,7 @@ 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 - . - - + Sorry but there was an issue with the external login process. Please contact an administrator. src/app/+login/login.component.html6 @@ -1303,13 +1155,13 @@ 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. + 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 - 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. + 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 @@ -1343,7 +1195,7 @@ Click here to reset your password - Click here to reset your password + Paina tästä palauttaaksesi salasanasi src/app/+login/login.component.html51 @@ -1363,7 +1215,7 @@ Forgot your password - Unohda salasanasi + Unohditko salasanasi src/app/+login/login.component.html99 @@ -1373,14 +1225,12 @@ 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. + Syötä sähköpostiosoitteesi ja lähetämme sinulle linkin, josta voit palauttaa salasanasi. src/app/+login/login.component.html110 - 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. + An email with the reset password instructions will be sent to . The link will expire within 1 hour. + Ohjeet salasanan palautukseen lähetetään osoitteeseen . Linkki on voimassa 1 tunnin. src/app/+login/login.component.ts122 @@ -1403,7 +1253,7 @@ The link will expire within 1 hour. Reset - Reset + Palauta Password reset button src/app/+login/login.component.html130 @@ -1418,8 +1268,8 @@ The link will expire within 1 hour. src/app/+search/search.component.html8 - for - for + for + for src/app/+search/search.component.html 10 @@ -1427,9 +1277,7 @@ The link will expire within 1 hour. Reset my password - - Alusta salasanani - + Nollaa salasanani src/app/+reset-password/reset-password.component.html2 @@ -1467,20 +1315,12 @@ The link will expire within 1 hour. Filters - - Suodata - - - - - + Suodata src/app/+search/search.component.html18 No results found - - Ei löytynyt yhtään tulosta, joka sisältäisi kaikki hakutermisi. - + Ei löytynyt yhtään tulosta src/app/+search/search.component.html32 @@ -1490,17 +1330,17 @@ The link will expire within 1 hour. CLI documentation - + CLI dokumentaatio 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... + Lataa tai tuo videoita, katsele lokeja, karsi tiedostohakemistoja, nollaa käyttäjien salasanoja... src/app/modal/admin-welcome-modal.component.html15 Administer documentation - + Järjestelmänvalvojan dokumentaatio src/app/modal/admin-welcome-modal.component.html19 @@ -1510,7 +1350,7 @@ The link will expire within 1 hour. Use documentation - + Käyttödokumentaatio src/app/modal/admin-welcome-modal.component.html26 @@ -1525,18 +1365,12 @@ The link will expire within 1 hour. Official PeerTube website (news, support, contribute...): https://joinpeertube.org - 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 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 - - + Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances src/app/modal/admin-welcome-modal.component.html45 @@ -1546,7 +1380,7 @@ The link will expire within 1 hour. 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. - + Palvelimen nimen valitseminen, kuvauksen asettaminen, kertomalla kuka olet, sekä miksi loit oman palvelimen ja miten kauaksi aikaa suunnittelet ylläpitoa ovat tärkeitä tietoja kävijöille, jotta he tietävät millaisella palvelimella ovat. src/app/modal/admin-welcome-modal.component.html57 @@ -1619,13 +1453,13 @@ The link will expire within 1 hour. My settings - My settings + Asetukset src/app/menu/menu.component.html124 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. + Nämä asetukset pätevät ainoastaan istuntoosi tällä instanssilla. src/app/modal/quick-settings-modal.component.html 8 @@ -1633,15 +1467,7 @@ The link will expire within 1 hour. Please consider configuring these fields to help people to choose the appropriate instance. Without them, your instance may not be referenced on the JoinPeerTube website. - - Please consider configuring these fields to help people to choose - the appropriate instance - . - Without them, your instance may not be referenced on the - JoinPeerTube website - . - - + Please consider configuring these fields to help people to choose the appropriate instance. Without them, your instance may not be referenced on the JoinPeerTube website. src/app/modal/instance-config-warning-modal.component.html24 @@ -1687,7 +1513,7 @@ The link will expire within 1 hour. Interface: - Interface: + Käyttöliittymä: src/app/menu/menu.component.html38 @@ -1702,7 +1528,7 @@ The link will expire within 1 hour. Help share videos - Help share videos + Auta jakamaan videoita src/app/menu/menu.component.html61 @@ -1764,7 +1590,7 @@ The link will expire within 1 hour. Interface: - Interface: + Käyttöliittymä: src/app/menu/menu.component.html137 @@ -1789,8 +1615,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html269 - ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server - ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server + ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server + ⚠️ Jos käytössä, suosittelemme HTTP-välityspalvelimen käyttöä estääksesi PeerTube-palvelimeltasi tapahtuvien yksityisten URL-osoitteiden vierailua src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 272 @@ -1854,18 +1680,18 @@ The link will expire within 1 hour. 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: + 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 + Uploading an avatar + Uploading an avatar src/app/modal/account-setup-warning-modal.component.html15 - Writing a description - Writing a description + Writing a description + Writing a description src/app/modal/account-setup-warning-modal.component.html16 @@ -1982,9 +1808,7 @@ The link will expire within 1 hour. using - using - - + using src/app/header/search-typeahead.component.html28 @@ -2002,7 +1826,7 @@ The link will expire within 1 hour. ADVANCED SEARCH - ADVANCED SEARCH + TARKENNETTU HAKU src/app/header/search-typeahead.component.html39 @@ -2033,7 +1857,7 @@ The link will expire within 1 hour. Search... - Haku + Haku... src/app/+admin/plugins/plugin-search/plugin-search.component.html23 @@ -2109,7 +1933,7 @@ The link will expire within 1 hour. Display all categories - Display all categories + Näytä kaikki kategoriat src/app/+search/search-filters.component.html127 @@ -2175,9 +1999,7 @@ The link will expire within 1 hour. Reset - - Reset - + Palauta src/app/+search/search-filters.component.html8 src/app/+search/search-filters.component.html22 src/app/+search/search-filters.component.html41 @@ -2261,16 +2083,7 @@ The link will expire within 1 hour. 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. - - + Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag. src/app/+videos/+video-edit/shared/video-edit.component.html29 @@ -2321,8 +2134,8 @@ The link will expire within 1 hour. 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 + 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 @@ -2330,7 +2143,7 @@ The link will expire within 1 hour. Latest published video - Latest published video + Viimeisin julkaistu video src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html 24 @@ -2397,8 +2210,8 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/shared/video-edit.component.html48 - 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.html85 @@ -2435,14 +2248,12 @@ The link will expire within 1 hour. Schedule publication () - Ajoita julkaisu ( - ) - + Ajoita julkaisu () src/app/+videos/+video-edit/shared/video-edit.component.html123 Contains sensitive content - Contains sensitive content + Sisältää arkaluonteista sisältöä src/app/+videos/+video-edit/shared/video-edit.component.html137 @@ -2476,7 +2287,7 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/shared/video-edit.component.html183 - Already uploaded ✔ + Already uploaded ✔ On jo ladattu ✔ src/app/+videos/+video-edit/shared/video-edit.component.html187 @@ -2500,7 +2311,7 @@ The link will expire within 1 hour. Cancel edition - Cancel edition + Peruuta muokkaus src/app/+videos/+video-edit/shared/video-edit.component.html 206 @@ -2646,9 +2457,7 @@ The link will expire within 1 hour. Congratulations, the video behind will be imported! You can already add information about this video. - Congratulations, the video behind - will be imported! You can already add information about this video. - + Congratulations, the video behind will be imported! You can already add information about this video. src/app/+videos/+video-edit/video-add-components/video-import-url.component.html48 @@ -2690,7 +2499,7 @@ The link will expire within 1 hour. Image that will be merged with your audio file. The chosen image will be definitive and cannot be modified. - + Kuva joka tullaan yhdistämään audiotiedostoosi. Valittu kuva on lopullinen, eikä sitä voi muuttaa. src/app/+videos/+video-edit/video-add-components/video-upload.component.html36 @@ -2848,31 +2657,17 @@ 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. - - 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 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.html33 Import - Tuo - - + Tuo src/app/+videos/+video-edit/video-add.component.html44 Upload - Lataa - - + Lataa src/app/+videos/+video-edit/video-add.component.html45 @@ -2941,7 +2736,7 @@ The link will expire within 1 hour. Update playlist privacy - Update playlist privacy + Päivitä soittolistan yksityisyys src/app/shared/shared-share-modal/video-share.component.html 16,18 @@ -2967,7 +2762,7 @@ The link will expire within 1 hour. Update video privacy - Update video privacy + Päivitä videon yksityisyys src/app/shared/shared-share-modal/video-share.component.html 84,86 @@ -3000,16 +2795,12 @@ The link will expire within 1 hour. More customization - - More customization - + Lisää src/app/shared/shared-share-modal/video-share.component.html255 Less customization - - Less customization - + Vähemmän src/app/shared/shared-share-modal/video-share.component.html263 @@ -3022,7 +2813,7 @@ The link will expire within 1 hour. Login - Login + Kirjaudu src/app/+login/login-routing.module.ts12 src/app/+login/login.component.html48 src/app/menu/menu.component.html102 @@ -3035,7 +2826,7 @@ The link will expire within 1 hour. Maybe later - Maybe later + Ehkä myöhemmin src/app/shared/shared-support-modal/support-modal.component.html11 @@ -3062,7 +2853,7 @@ The link will expire within 1 hour. P2P - P2P + P2P src/app/shared/shared-share-modal/video-share.component.html 222 @@ -3080,7 +2871,7 @@ The link will expire within 1 hour. Display PeerTube button link - Display PeerTube button link + Näytä PeerTube linkki src/app/shared/shared-share-modal/video-share.component.html243 @@ -3095,7 +2886,7 @@ The link will expire within 1 hour. Published - Published + Julkaistu src/app/+videos/+video-watch/video-watch.component.html27 @@ -3135,19 +2926,17 @@ The link will expire within 1 hour. By - - - + src/app/+videos/+video-watch/video-watch.component.html67 Subscribe - Subscribe + Tilaa src/app/shared/shared-user-subscription/subscribe-button.component.html9 Subscribe to all channels - Subscribe to all channels + Tilaa kaikki kanavat src/app/shared/shared-user-subscription/subscribe-button.component.html11 @@ -3190,14 +2979,12 @@ The link will expire within 1 hour. Friendly Reminder: - Friendly Reminder: + Ystävällinen muistutus: 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. - + tällä videolla käytössä oleva jakojärjestelmä edellyttää, että tiettyjä teknisiä tietoja järjestelmästäsi (kuten julkinen IP-osoitteesi) voidaan lähettää toisille käyttäjille. src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html5 @@ -3239,8 +3026,7 @@ The link will expire within 1 hour. Move to external storage failed, this video may not work properly. - Move to external storage failed, this video may not work properly. - + Siirto ulkoiseen tallennustilaan epäonnistui, tämä video ei välttämättä toimi oikein. src/app/+videos/+video-watch/shared/information/video-alert.component.html 5,7 @@ -3293,9 +3079,7 @@ The link will expire within 1 hour. SORT BY - - SORT BY - + JÄRJESTÄ src/app/+videos/+video-watch/shared/comment/video-comments.component.html10 @@ -3315,24 +3099,24 @@ The link will expire within 1 hour. View from and others - View from and others + View from and others src/app/+videos/+video-watch/shared/comment/video-comments.component.html73 {VAR_PLURAL, plural, =1 {1 reply} other { replies}} - {VAR_PLURAL, plural, =1 {1 reply} other { replies}} + {VAR_PLURAL, plural, =1 {1 vastaus} other { vastausta}} 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 + Katso käyttäjältä src/app/+videos/+video-watch/shared/comment/video-comments.component.html76 View - View + Katso src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 @@ -3440,14 +3224,7 @@ The link will expire within 1 hour. Your report will be sent to moderators of and will be forwarded to the comment origin () too. - - Your report will be sent to moderators of - - and will be forwarded to the comment origin ( - ) too - . - - + Your report will be sent to moderators of and will be forwarded to the comment origin () too. src/app/shared/shared-moderation/report-modals/report.component.html36 src/app/shared/shared-moderation/report-modals/report.component.html36 @@ -3536,10 +3313,7 @@ The link will expire within 1 hour. Created - Luotiin - - - + Luotiin 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 @@ -3588,19 +3362,12 @@ The link will expire within 1 hour. Showing to of followers - Showing - to - of - followers - + Showing to of followers src/app/+admin/follows/followers-list/followers-list.component.html11 Redundancy allowed - Redundancy allowed - - - + Redundancy allowed src/app/+admin/follows/following-list/following-list.component.html34 @@ -3622,11 +3389,7 @@ The link will expire within 1 hour. Showing to of hosts - Showing - to - of - hosts - + Showing to of hosts src/app/+admin/follows/following-list/following-list.component.html11 @@ -3713,15 +3476,7 @@ The link will expire within 1 hour. Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . - - Transcoding is enabled. The video quota only takes into account - original - video size. - - At most, this user could upload ~ - . - - + Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . src/app/+admin/overview/users/user-edit/user-edit.component.html161 src/app/+admin/overview/users/user-edit/user-edit.component.html161 @@ -3815,7 +3570,7 @@ The link will expire within 1 hour. User's email must be verified to login - Käyttäjän sähköpostiosoite pitää olla vahvistettu, jotta hän voi kirjautua. + Käyttäjän sähköpostiosoite täytyy olla vahvistettu kirjautuaksesi src/app/+admin/overview/users/user-list/user-list.component.html120 @@ -3840,11 +3595,7 @@ The link will expire within 1 hour. Showing to of users - Showing - to - of - users - + Showing to of users src/app/+admin/overview/users/user-list/user-list.component.html11 @@ -3881,10 +3632,7 @@ The link will expire within 1 hour. Video - Video - - - + Video src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html29 src/app/+admin/moderation/video-block-list/video-block-list.component.html26 @@ -3922,7 +3670,7 @@ The link will expire within 1 hour. Used () - Used () + Käytetty () src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts 99 @@ -3930,7 +3678,7 @@ The link will expire within 1 hour. Available () - Available () + Saatavilla () src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts 105 @@ -3949,10 +3697,7 @@ The link will expire within 1 hour. Date - Päivämäärä - - - + Päivämäärä src/app/+admin/moderation/video-block-list/video-block-list.component.html29 src/app/+admin/overview/comments/video-comment-list.component.html46 @@ -4072,11 +3817,7 @@ The link will expire within 1 hour. Showing to of blocked videos - Showing - to - of - blocked videos - + Showing to of blocked videos src/app/+admin/moderation/video-block-list/video-block-list.component.html11 @@ -4137,10 +3878,7 @@ The link will expire within 1 hour. by on - by - on - - + by on src/app/shared/shared-abuse-list/abuse-list-table.component.html85 @@ -4162,10 +3900,7 @@ The link will expire within 1 hour. State - Tila - - - + Tila 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 @@ -4182,19 +3917,12 @@ The link will expire within 1 hour. Score - Score - - - + Score src/app/+admin/follows/followers-list/followers-list.component.html26 Showing to of reports - Showing - to - of - reports - + Showing to of reports src/app/shared/shared-abuse-list/abuse-list-table.component.html6 @@ -4203,20 +3931,14 @@ The link will expire within 1 hour. src/app/shared/shared-abuse-list/abuse-details.component.html28 - - - - - - + + src/app/shared/shared-abuse-list/abuse-details.component.html21 src/app/shared/shared-abuse-list/abuse-details.component.html41 {VAR_PLURAL, plural, =1 {1 report} other { reports}} - {VAR_PLURAL, plural, =1 {1 report} other { - reports} } - + {VAR_PLURAL, plural, =1 {1 raportointi} other { raportointia}} src/app/shared/shared-abuse-list/abuse-details.component.html22 src/app/shared/shared-abuse-list/abuse-details.component.html42 @@ -4241,10 +3963,7 @@ The link will expire within 1 hour. Muted at - Mykistetty kohdassa - - - + Mykistetty kohdassa 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 @@ -4272,11 +3991,7 @@ The link will expire within 1 hour. Showing to of muted instances - Showing - to - of - muted instances - + Showing to of muted instances src/app/shared/shared-moderation/server-blocklist.component.html11 src/app/shared/shared-moderation/server-blocklist.component.html11 @@ -4329,11 +4044,7 @@ The link will expire within 1 hour. Showing to of muted accounts - Showing - to - of - muted accounts - + Showing to of muted accounts src/app/shared/shared-moderation/account-blocklist.component.html10 src/app/shared/shared-moderation/account-blocklist.component.html10 @@ -4350,7 +4061,7 @@ The link will expire within 1 hour. This plugin is developed by Framasoft - This plugin is developed by Framasoft + Tämä lisäosa on Framasoftin kehittämä src/app/+admin/plugins/plugin-search/plugin-search.component.html 37 @@ -4358,7 +4069,7 @@ The link will expire within 1 hour. Official - Official + Virallinen src/app/+admin/plugins/plugin-search/plugin-search.component.html 37,39 @@ -4385,7 +4096,7 @@ The link will expire within 1 hour. Plugins & Themes - Plugins & Themes + Lisäosat ja teemat src/app/shared/shared-instance/instance-features-table.component.html 133 @@ -4415,7 +4126,7 @@ The link will expire within 1 hour. Display settings - Display settings + Näyttöasetukset src/app/modal/quick-settings-modal.component.html10 @@ -4450,7 +4161,7 @@ The link will expire within 1 hour. Popular plugins - Popular plugins + Suositut lisäosat src/app/+admin/plugins/plugin-search/plugin-search.component.html 10 @@ -4458,7 +4169,7 @@ The link will expire within 1 hour. Popular themes - Popular themes + Suositut teemat src/app/+admin/plugins/plugin-search/plugin-search.component.html 11 @@ -4466,12 +4177,12 @@ The link will expire within 1 hour. for "" - for "" + haulle "" src/app/+admin/plugins/plugin-search/plugin-search.component.html17 {VAR_PLURAL, plural, =1 {result} other {results} } - {VAR_PLURAL, plural, =1 {result} other {results} } + {VAR_PLURAL, plural, =1 {tulos} other {tulosta} } src/app/+admin/plugins/plugin-search/plugin-search.component.html18 src/app/+search/search.component.html5 @@ -4484,9 +4195,7 @@ The link will expire within 1 hour. This does not have settings. - This - does not have settings. - + This does not have settings. src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html16 @@ -4584,8 +4293,8 @@ The link will expire within 1 hour. src/app/+admin/system/jobs/jobs.component.html46 - Priority (1 = highest priority) - Priority (1 = highest priority) + Priority (1 = highest priority) + Priority (1 = highest priority) src/app/+admin/system/jobs/jobs.component.html 47 @@ -4605,8 +4314,8 @@ The link will expire within 1 hour. src/app/+admin/system/jobs/jobs.component.html105 - No jobs found. - No jobs found. + No jobs found. + No jobs found. src/app/+admin/system/jobs/jobs.component.html106 @@ -4654,10 +4363,8 @@ The link will expire within 1 hour. - By -> - By - -> - + By -> + By -> src/app/+admin/system/logs/logs.component.html47 @@ -4690,35 +4397,32 @@ The link will expire within 1 hour. 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. - + Jakojärjestelmä edellyttää, että tiettyjä teknisiä tietoja järjestelmästäsi (kuten julkinen IP-osoitteesi) voidaan lähettää toisille käyttäjille, mutta tämä auttaa suuresti vähentämään palvelimen kuormituksen määrää. src/app/shared/shared-user-settings/user-video-settings.component.html45 Help share videos being played - Help share videos being played + Auta jakamaan toistossa olevia videoita 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. + Aloita videon toistaminen automaattisesti kun siirytään videosivulle. src/app/shared/shared-user-settings/user-video-settings.component.html56 Automatically play videos - Automatically play videos + Toista videoita automaattisesti 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. + Aloita seuraavan videon toistaminen automaattisesti kun katseltavana oleva video loppuu. src/app/shared/shared-user-settings/user-video-settings.component.html67 Automatically start playing the next video - Automatically start playing the next video + Aloita seuraavan videon toistaminen automaattisesti src/app/shared/shared-user-settings/user-video-settings.component.html64 @@ -4732,23 +4436,23 @@ The link will expire within 1 hour. 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. + 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.html83 This instance is dedicated to sensitive or NSFW content - This instance is dedicated to sensitive or NSFW content + Tämä instanssi on omistettu arkaluonteiselle tai NSFW sisällölle 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. + 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.html97 Policy on videos containing sensitive content - Herkän sisällön sisältävien videoiden käytäntö + Arkaluonteista sisältöä sisältävien videoiden käytäntö src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 @@ -4862,8 +4566,8 @@ The link will expire within 1 hour. 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. + 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.html5 @@ -4919,7 +4623,7 @@ The link will expire within 1 hour. ⚠️ You don't have any external auth plugin enabled. - ⚠️ You don't have any external auth plugin enabled. + ⚠️ Ei ole yhtään ulkoista tunnistautumislisäosaa käytössä. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 80 @@ -4927,7 +4631,7 @@ The link will expire within 1 hour. ⚠️ You have multiple external auth plugins enabled. - ⚠️ You have multiple external auth plugins enabled. + ⚠️ Useampia ulkoisia tunnistautumislisäosia käytössä. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 81 @@ -4969,8 +4673,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html150 - Manage users to set their quota individually. - Manage users to set their quota individually. + 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.html151 @@ -4985,7 +4689,7 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {user} other {users}} - {VAR_PLURAL, plural, =1 {user} other {users}} + {VAR_PLURAL, plural, =1 {käyttäjä} other {käyttäjää}} src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html184 @@ -5000,7 +4704,7 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {year old} other {years old}} - {VAR_PLURAL, plural, =1 {year old} other {years old}} + {VAR_PLURAL, plural, =1 {vuoden vanha} other {vuotta vanha}} src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html200 @@ -5018,7 +4722,7 @@ The link will expire within 1 hour. Comments - Comments + Kommentit src/app/+admin/admin.component.ts 57 @@ -5026,19 +4730,19 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {Video} other {Videos} } - {VAR_PLURAL, plural, =1 {Video} other {Videos} } + {VAR_PLURAL, plural, =1 {video} other {videota} } src/app/+admin/overview/users/user-edit/user-edit.component.html24 src/app/+admin/overview/users/user-edit/user-edit.component.html24 {VAR_PLURAL, plural, =1 {Channel} other {Channels} } - {VAR_PLURAL, plural, =1 {Channel} other {Channels} } + {VAR_PLURAL, plural, =1 {kanava} other {kanavaa} } src/app/+admin/overview/users/user-edit/user-edit.component.html30 src/app/+admin/overview/users/user-edit/user-edit.component.html30 {VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} } - {VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} } + {VAR_PLURAL, plural, =1 {tilaaja} other {tilaajaa} } src/app/+admin/overview/users/user-edit/user-edit.component.html36 src/app/+admin/overview/users/user-edit/user-edit.component.html36 @@ -5056,7 +4760,7 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {Comment} other {Comments} } - {VAR_PLURAL, plural, =1 {Comment} other {Comments} } + {VAR_PLURAL, plural, =1 {kommentti} other {kommenttia} } src/app/+admin/overview/users/user-edit/user-edit.component.html54 src/app/+admin/overview/users/user-edit/user-edit.component.html54 @@ -5099,7 +4803,7 @@ The link will expire within 1 hour. ⚠️ We don't recommend to enable this feature if you don't trust your users - ⚠️ We don't recommend to enable this feature if you don't trust your users + ⚠️ Emme suosittele ominaisuuden käyttöönottoa mikäli et luota käyttäjiisi src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 283 @@ -5122,7 +4826,7 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {channel} other {channels}} - {VAR_PLURAL, plural, =1 {channel} other {channels}} + {VAR_PLURAL, plural, =1 {kanava} other {kanavaa}} src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html327 @@ -5161,8 +4865,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html376 - 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. + 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.html378 @@ -5196,8 +4900,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html426 - Manage relations with other instances. - Manage relations with other instances. + Manage relations with other instances. + Manage relations with other instances. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html427 @@ -5233,8 +4937,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 - See the documentation for more information about the expected URL - See the documentation for more information about the expected URL + 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.html478 @@ -5283,8 +4987,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html559 - 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. + 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.html563 @@ -5322,18 +5026,18 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html33 - 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.html40 - Max simultaneous lives created per user (-1 for "unlimited") - Max simultaneous lives created per user (-1 for "unlimited") + 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.html53 {VAR_PLURAL, plural, =1 {live} other {lives}} - {VAR_PLURAL, plural, =1 {live} other {lives}} + {VAR_PLURAL, plural, =1 {live} other {liveä}} src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html46 src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 @@ -5472,8 +5176,8 @@ The link will expire within 1 hour. 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 + 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 @@ -5585,7 +5289,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 {välimuistissa oleva kuva} other {välimuistissa olevia kuvia}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 22 @@ -5636,25 +5340,19 @@ The link will expire within 1 hour. 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'); + 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.html77 - Write CSS code directly. Example:#custom-css -color: red; - - 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 color: red; + 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.html96 @@ -5671,8 +5369,8 @@ color: red; - There are errors in the form: - There are errors in the form: + There are errors in the form: + There are errors in the form: src/app/+admin/config/edit-custom-config/edit-custom-config.component.html71 @@ -5692,7 +5390,7 @@ color: red; INTERFACE - INTERFACE + KÄYTTÖLIITTYMÄ src/app/+my-account/my-account-settings/my-account-settings.component.html25 @@ -5748,13 +5446,13 @@ color: red; src/app/shared/shared-video-miniature/video-download.component.ts255 - Update your settings - Update your settings + Update your settings + Update your settings src/app/shared/shared-video-miniature/video-filters-header.component.html2 More filters - More filters + Lisää suodattimia src/app/shared/shared-video-miniature/video-filters-header.component.html 20 @@ -5762,47 +5460,47 @@ color: red; Hide filters - Hide filters + Piilota suodattimet src/app/shared/shared-video-miniature/video-filters-header.component.html 21 - Sort by "Recently Added" - Sort by "Recently Added" + Sort by "Recently Added" + Järjestä "Viimeksi lisätty" src/app/shared/shared-video-miniature/video-filters-header.component.html 46 - Sort by "Recent Views" - Sort by "Recent Views" + Sort by "Recent Views" + Järjestä "Viimeksi katseltu" src/app/shared/shared-video-miniature/video-filters-header.component.html 48 - Sort by "Hot" - Sort by "Hot" + Sort by "Hot" + Järjestä "Suosittu" src/app/shared/shared-video-miniature/video-filters-header.component.html 49 - Sort by "Best" - Sort by "Best" + Sort by "Best" + Järjestä "Paras" src/app/shared/shared-video-miniature/video-filters-header.component.html 50 - Sort by "Likes" - Sort by "Likes" + Sort by "Likes" + Järjestä "Tykkäykset" src/app/shared/shared-video-miniature/video-filters-header.component.html 51 @@ -5810,7 +5508,7 @@ color: red; Languages: - Languages: + Kielet: src/app/shared/shared-video-miniature/video-filters-header.component.html 59 @@ -5818,7 +5516,7 @@ color: red; Sensitive content: - Sensitive content: + Arkaluonteinen sisältö: src/app/shared/shared-video-miniature/video-filters-header.component.html 66 @@ -5826,7 +5524,7 @@ color: red; Scope: - Scope: + Laajuus: src/app/shared/shared-video-miniature/video-filters-header.component.html 81 @@ -5834,7 +5532,7 @@ color: red; Local videos (this instance) - Local videos (this instance) + Paikalliset videot (tämä instanssi) src/app/shared/shared-video-miniature/video-filters-header.component.html 85 @@ -5842,7 +5540,7 @@ color: red; Federated videos (this instance + followed instances) - Federated videos (this instance + followed instances) + Federoidut videot (tämä ja seuratut instanssit) src/app/shared/shared-video-miniature/video-filters-header.component.html 90 @@ -5850,7 +5548,7 @@ color: red; Type: - Type: + Tyyppi: src/app/shared/shared-video-miniature/video-filters-header.component.html 95 @@ -5858,7 +5556,7 @@ color: red; VOD & Live videos - VOD & Live videos + VOD ja live-videot src/app/shared/shared-video-miniature/video-filters-header.component.html 99 @@ -5866,7 +5564,7 @@ color: red; Categories: - Categories: + Kategoriat: src/app/shared/shared-video-miniature/video-filters-header.component.html 114 @@ -5887,7 +5585,7 @@ color: red; Interface settings - Interface settings + Käyttöliittymäasetukset src/app/modal/quick-settings-modal.component.html22 @@ -5914,12 +5612,12 @@ color: red; Default policy on videos containing sensitive content - Oletussäädäntö videoista, jotka sisältävät aikuisille tarkoitettua sisältöä + Oletuskäytäntö videoille, jotka sisältävät arkaluonteista sisältöä 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. + Piilota tai Sumenna pikkukuva vaihtoehdoilla ennen videota pyydetään vahvistusta. src/app/+admin/config/edit-custom-config/edit-instance-information.component.html110 src/app/shared/shared-user-settings/user-video-settings.component.html7 @@ -5947,12 +5645,7 @@ color: red; is awaiting email verification - - - - odottaa sähköpostin hyväksyntää - - + odottaa sähköpostin hyväksyntää src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html10 @@ -6033,12 +5726,7 @@ color: red; Created - - Luotiin - - - - + Luotiin src/app/+my-library/my-ownership/my-ownership.component.html21 @@ -6097,7 +5785,7 @@ color: red; Banner image of the channel - Banner image of the channel + Kanavan kansikuva src/app/+manage/video-channel-edit/video-channel-edit.component.html 13 @@ -6140,11 +5828,7 @@ color: red; Showing to of imports - Showing - to - of - imports - + Showing to of imports src/app/+my-library/my-video-imports/my-video-imports.component.html10 @@ -6161,9 +5845,7 @@ color: red; Created by - Luonut - - + Luonut src/app/+my-library/my-follows/my-subscriptions.component.html28 @@ -6178,7 +5860,7 @@ color: red; Delete from history - Delete from history + Poista historiasta src/app/+my-library/my-history/my-history.component.html 36 @@ -6197,8 +5879,8 @@ 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. + 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 @@ -6214,12 +5896,7 @@ color: red; Notification preferences - - - - Ilmoitusasetukset - - + Ilmoitusasetukset src/app/+my-account/my-account-notifications/my-account-notifications.component.html4 @@ -6300,12 +5977,7 @@ color: red; See the documentation for more information. - - See the - documentation - for more information. - - + See the documentation for more information. src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html31 @@ -6315,25 +5987,22 @@ color: red; If you need help to use PeerTube, you can have a look at the documentation. - If you need help to use PeerTube, you can have a look at the - documentation - . - + If you need help to use PeerTube, you can have a look at the documentation. src/app/+signup/shared/signup-success.component.html13 - 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.html17 Created - Created + Luotiin src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html2 {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} - {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} + {VAR_PLURAL, plural, =1 {1 soittolista} other { soittolistaa}} src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html 3 @@ -6380,7 +6049,7 @@ color: red; Send verification email - Lähetä vahvistus-sähköpostiviesti. + Lähetä vahvistussähköpostiviesti src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html17 @@ -6458,9 +6127,7 @@ color: red; {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} - {VAR_PLURAL, plural, =1 {1 subscriber} other { - subscribers} } - + {VAR_PLURAL, plural, =1 {1 tilaaja} other { tilaajaa}} src/app/+accounts/account-video-channels/account-video-channels.component.html26 src/app/+accounts/accounts.component.html36 src/app/+my-library/+my-video-channels/my-video-channels.component.html34 @@ -6469,7 +6136,7 @@ color: red; {VAR_PLURAL, plural, =1 {1 videos} other { videos}} - {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + {VAR_PLURAL, plural, =1 {1 video} other { videota}} src/app/+accounts/account-video-channels/account-video-channels.component.html29 src/app/+accounts/accounts.component.html39 src/app/+video-channels/video-channels.component.html78 @@ -6477,7 +6144,7 @@ color: red; - + src/app/+accounts/account-video-channels/account-video-channels.component.html28 src/app/+accounts/accounts.component.html38 src/app/+my-library/+my-video-channels/my-video-channels.component.html33 @@ -6493,19 +6160,13 @@ color: red; {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} - {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { - videos} } - + {VAR_PLURAL, plural, =0 {Ei videoita} =1 {1 video} other { videoita}} src/app/+my-library/+my-video-channels/my-video-channels.component.html37 src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 - 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 ()! - 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 ()! + 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 ()! + 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 ()! src/app/+my-library/+my-video-channels/my-video-channels.component.ts44 @@ -6536,8 +6197,8 @@ channel with the same name ()! src/app/+accounts/account-video-channels/account-video-channels.component.html41 - SHOW THIS CHANNEL > - SHOW THIS CHANNEL > + SHOW THIS CHANNEL > + SHOW THIS CHANNEL > src/app/+accounts/account-video-channels/account-video-channels.component.html49 @@ -6604,9 +6265,7 @@ channel with the same name ()! About - About - - + About src/app/+about/about-instance/about-instance.component.html5 @@ -6623,7 +6282,7 @@ channel with the same name ()! This instance is dedicated to sensitive/NSFW content. - This instance is dedicated to sensitive/NSFW content. + Tämä instanssi on omistettu arkaluonteiselle/NSFW sisällölle. src/app/+about/about-instance/about-instance.component.html19 @@ -6713,12 +6372,7 @@ channel with the same name ()! For more information, please visit joinpeertube.org. - - For more information, please visit - joinpeertube.org - . - - + For more information, please visit joinpeertube.org. src/app/+about/about-peertube/about-peertube.component.html18 @@ -6832,8 +6486,8 @@ channel with the same name ()! src/app/+about/about-peertube/about-peertube.component.html111 - 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.html115 @@ -6952,8 +6606,8 @@ channel with the same name ()! 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 @@ -7016,7 +6670,7 @@ channel with the same name ()! A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. - + A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. src/app/+signup/+register/register-step-channel.component.html4 @@ -7060,8 +6714,8 @@ channel with the same name ()! src/app/+signup/+register/register-step-channel.component.html50 - 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 @@ -7076,7 +6730,7 @@ channel with the same name ()! Signup is not enabled on this instance. - Signup is not enabled on this instance. + Rekisteröityminen ei ole käytössä tällä instanssilla. src/app/+signup/+register/register.component.html 4 @@ -7099,7 +6753,7 @@ channel with the same name ()! You already sent this form recently - Lähetit jo tämän lomakkeen vasta. + Olet äskettäin lähettänyt tämän lomakkeen src/app/+about/about-instance/contact-admin-modal.component.ts94 @@ -7140,12 +6794,12 @@ channel with the same name ()! Sensitive content - Sensitive content + Arkaluonteinen sisältö src/app/shared/shared-video-miniature/video-filters.model.ts116 Scope - Scope + Laajuus src/app/shared/shared-video-miniature/video-filters.model.ts123 @@ -7160,7 +6814,7 @@ channel with the same name ()! Categories - Categories + Kategoriat src/app/shared/shared-video-miniature/video-filters.model.ts142 @@ -7175,7 +6829,7 @@ channel with the same name ()! hidden - hidden + piilotettu src/app/shared/shared-video-miniature/video-filters.model.ts237 @@ -7202,7 +6856,7 @@ channel with the same name ()! Overview - Overview + Yleiskatsaus src/app/+admin/admin.component.ts 35 @@ -7237,13 +6891,13 @@ channel with the same name ()! src/app/+admin/config/edit-custom-config/edit-configuration.service.ts17 - A <code>.mp4</code> that keeps the original audio track, with no video - A <code>.mp4</code> that keeps the original audio track, with no video + A <code>.mp4</code> that keeps the original audio track, with no video + A <code>.mp4</code> that keeps the original audio track, with no video src/app/+admin/config/edit-custom-config/edit-configuration.service.ts18 144p - 144p + 144p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts 22 @@ -7677,9 +7331,7 @@ channel with the same name ()! Do you really want to unfollow ? - Do you really want to unfollow - ? - + Haluatko varmasti lopettaa seuraamisen? src/app/+admin/follows/following-list/following-list.component.ts46 @@ -7689,9 +7341,7 @@ channel with the same name ()! You are not following anymore. - Et seuraa - enään. - + Et seuraa enää. src/app/+admin/follows/following-list/following-list.component.ts54 @@ -7714,10 +7364,7 @@ channel with the same name ()! Redundancy for is - Redundancy for - is - - + Redundancy for is src/app/+admin/follows/shared/redundancy-checkbox.component.ts25 @@ -7737,23 +7384,17 @@ channel with the same name ()! Account unmuted by your instance. - Account - unmuted by your instance. - + Account unmuted by your instance. src/app/shared/shared-moderation/account-blocklist.component.ts43 Instance unmuted by your instance. - Instance - unmuted by your instance. - + Instance unmuted by your instance. src/app/shared/shared-moderation/server-blocklist.component.ts46 Instance muted by your instance. - Instance - muted by your instance. - + Instance muted by your instance. src/app/shared/shared-moderation/server-blocklist.component.ts69 @@ -7778,7 +7419,7 @@ channel with the same name ()! Privacy - Privacy + Näkyvyys 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.html112 @@ -7791,7 +7432,7 @@ channel with the same name ()! Copyright - Copyright + Copyright src/app/shared/shared-abuse-list/abuse-details.component.ts23 src/app/shared/shared-moderation/abuse.service.ts146 @@ -7824,12 +7465,12 @@ channel with the same name ()! Mark as accepted - Merkitse hyvätyksi. + Hyväksy src/app/shared/shared-abuse-list/abuse-list-table.component.ts260 Mark as rejected - Merkitse ei hyvätyksi. + Hylkää src/app/shared/shared-abuse-list/abuse-list-table.component.ts265 @@ -7900,9 +7541,7 @@ channel with the same name ()! Video switched to manual block. - Video - switched to manual block. - + Video switched to manual block. src/app/+admin/moderation/video-block-list/video-block-list.component.ts70 @@ -7920,9 +7559,7 @@ channel with the same name ()! Video unblocked. - Video - unblocked. - + Video unblocked. src/app/+admin/moderation/video-block-list/video-block-list.component.ts139 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts211 @@ -7957,9 +7594,7 @@ channel with the same name ()! Do you really want to uninstall ? - Haluatko varmasti poistaa lisäosan - ? - + Haluatko varmasti poistaa lisäosan ? src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 @@ -8021,9 +7656,7 @@ channel with the same name ()! Install ? - Asennetaanko - ? - + Asennetaanko ? src/app/+admin/plugins/plugin-search/plugin-search.component.ts130 @@ -8057,8 +7690,8 @@ channel with the same name ()! - 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 @@ -8105,16 +7738,16 @@ channel with the same name ()! - Check the trust_proxy configuration key - Check 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 @@ -8173,8 +7806,8 @@ channel with the same name ()! src/app/+admin/overview/videos/video-list.component.html42 - Published - Published + Published + Published src/app/+admin/overview/videos/video-list.component.html43 @@ -8200,9 +7833,7 @@ channel with the same name ()! User created. - Käyttäjä - luotiin. - + Käyttäjä luotu. src/app/+admin/overview/users/user-edit/user-create.component.ts78 @@ -8223,9 +7854,7 @@ channel with the same name ()! Password changed for user . - Salasana vaihdettu käyttäjälle - . - + Salasana vaihdettu käyttäjälle . src/app/+admin/overview/users/user-edit/user-password.component.ts41 @@ -8235,9 +7864,7 @@ channel with the same name ()! User updated. - User - updated. - + User updated. src/app/+admin/overview/users/user-edit/user-update.component.ts94 @@ -8247,9 +7874,7 @@ channel with the same name ()! An email asking for password reset has been sent to . - An email asking for password reset has been sent to - . - + Sähköpostia salasananpalautuksesta on lähetetty osoitteeseen . src/app/+admin/overview/users/user-edit/user-update.component.ts120 @@ -8274,7 +7899,7 @@ channel with the same name ()! VOD - VOD + VOD src/app/+admin/overview/videos/video-admin.service.ts49 @@ -8376,9 +8001,7 @@ channel with the same name ()! Do you really want to unban users? - Haluatko varmasti poistaa estot - käyttäjältä? - + Haluatko varmasti poistaa estot käyttäjältä? src/app/+admin/overview/users/user-list/user-list.component.ts186 @@ -8396,7 +8019,7 @@ channel with the same name ()! If you remove these users, you will not be able to create others with the same username! - Jos poistat kyseiset käyttäjät, et voi luoda uusia käyttäjiä samoilla käyttäjänimillä. + Jos poistat kyseiset käyttäjät, et voi luoda uusia käyttäjiä samoilla käyttäjänimillä! src/app/+admin/overview/users/user-list/user-list.component.ts208 @@ -8415,28 +8038,24 @@ channel with the same name ()! Account unmuted. - Account - unmuted. - + Account unmuted. src/app/shared/shared-moderation/account-blocklist.component.ts42 src/app/shared/shared-moderation/user-moderation-dropdown.component.ts148 Instance unmuted. - Instance - unmuted. - + Instance unmuted. src/app/shared/shared-moderation/server-blocklist.component.ts45 src/app/shared/shared-moderation/user-moderation-dropdown.component.ts176 Videos history is enabled - Videohistoria asetettu päälle. + Videohistoria käytössä src/app/+my-library/my-history/my-history.component.ts96 Videos history is disabled - Videohistoria poistettu päältä. + Videohistoria poissa käytöstä src/app/+my-library/my-history/my-history.component.ts97 @@ -8466,8 +8085,8 @@ channel with the same name ()! src/app/+my-library/my-history/my-history.component.html13 - Clear all history - Clear all history + Clear all history + Tyhjää koko historia src/app/+my-library/my-history/my-history.component.html 17,19 @@ -8489,8 +8108,8 @@ channel with the same name ()! 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.html4 @@ -8518,7 +8137,7 @@ channel with the same name ()! Are you sure you want to delete your account? - Are you sure you want to delete your account? + Haluatko varmasti poistaa tilisi? src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts 22 @@ -8573,7 +8192,7 @@ channel with the same name ()! An automatically blocked video is awaiting review - An automatically blocked video is awaiting review + Automaattisesti estetty video odottaa tarkistusta src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts 35 @@ -8655,7 +8274,7 @@ channel with the same name ()! Your videos - Your videos + Videosi src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts 60 @@ -8714,14 +8333,12 @@ channel with the same name ()! Display/Video settings updated. - Display/Video settings updated. + Näyttö/video asetukset päivitetty. src/app/shared/shared-user-settings/user-video-settings.component.ts130 Video channel created. - Videokanava - luotiin. - + Videokanava luotu. src/app/+manage/video-channel-edit/video-channel-create.component.ts66 @@ -8731,9 +8348,7 @@ channel with the same name ()! Video channel updated. - Videokanava - päivitetty. - + Videokanava päivitetty. src/app/+manage/video-channel-edit/video-channel-update.component.ts97 @@ -8753,9 +8368,7 @@ channel with the same name ()! Video channel deleted. - Video channel - deleted. - + Video channel deleted. src/app/+my-library/+my-video-channels/my-video-channels.component.ts60 @@ -8847,7 +8460,7 @@ channel with the same name ()! Reset password - Reset password + Palauta salasana src/app/+reset-password/reset-password-routing.module.ts 11 @@ -8863,9 +8476,7 @@ channel with the same name ()! Playlist created. - Luotiin soittolista - . - + Soittolista luotu. src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts77 @@ -8907,9 +8518,7 @@ channel with the same name ()! Playlist updated. - Playlist - updated. - + Playlist updated. src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts100 @@ -8920,9 +8529,7 @@ channel with the same name ()! Playlist deleted. - Playlist - deleted. - + Soittolista poistettu. src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts135 @@ -8935,9 +8542,7 @@ channel with the same name ()! Do you really want to delete videos? - Do you really want to delete - videos? - + Haluatko varmasti poistaa videota? src/app/+my-library/my-videos/my-videos.component.ts150 @@ -8957,9 +8562,7 @@ channel with the same name ()! Do you really want to delete ? - Do you really want to delete - ? - + Haluatko varmasti poistaa ? 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.ts177 @@ -8967,9 +8570,7 @@ channel with the same name ()! Video deleted. - Video - deleted. - + Video poistettu. src/app/+my-library/my-videos/my-videos.component.ts185 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts237 @@ -8992,7 +8593,7 @@ channel with the same name ()! Sort by - Sort by + Järjestä src/app/+my-library/my-videos/my-videos.component.html 26 @@ -9085,16 +8686,12 @@ channel with the same name ()! You are now logged in as ! - Olet nytten kirjautunut käyttäjälle - ! - + Olet kirjautunut käyttäjälle ! src/app/+signup/+register/register.component.ts145 An email with verification link will be sent to . - An email with verification link will be sent to - . - + Vahvistuslinkki lähetetään sähköpostitse osoitteeseen . src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts40 @@ -9156,7 +8753,7 @@ channel with the same name ()! ADD INTRO - ADD INTRO + LISÄÄ INTRO src/app/+video-editor/edit/video-editor-edit.component.html 24 @@ -9204,7 +8801,7 @@ channel with the same name ()! ADD WATERMARK - ADD WATERMARK + LISÄÄ VESILEIMA src/app/+video-editor/edit/video-editor-edit.component.html 52 @@ -9212,7 +8809,7 @@ channel with the same name ()! Add a watermark image to the video. - Add a watermark image to the video. + Lisää vesileimakuva videoon. src/app/+video-editor/edit/video-editor-edit.component.html 54 @@ -9220,7 +8817,7 @@ channel with the same name ()! Select watermark image file - Select watermark image file + Valitse kuvatiedosto vesileimaksi src/app/+video-editor/edit/video-editor-edit.component.html 58 @@ -9236,7 +8833,7 @@ channel with the same name ()! Video before edition - Video before edition + Video ennen muokkausta src/app/+video-editor/edit/video-editor-edit.component.html 75 @@ -9252,23 +8849,23 @@ channel with the same name ()! Are you sure you want to edit ""? - Are you sure you want to edit ""? + Haluatko varmasti muokata videota ""? src/app/+video-editor/edit/video-editor-edit.component.ts 72 - The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> - The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> + The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> + The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> src/app/+video-editor/edit/video-editor-edit.component.ts 76 - As a reminder, the following tasks will be executed: <ol></ol> - As a reminder, the following tasks will be executed: <ol></ol> + As a reminder, the following tasks will be executed: <ol></ol> + Muistutuksena, seuraavat tehtävät tullaan suorittamaan: <ol></ol> src/app/+video-editor/edit/video-editor-edit.component.ts 77 @@ -9330,10 +8927,8 @@ channel with the same name ()! src/app/core/auth/auth.service.ts73 - 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. + 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.ts100 @@ -9424,47 +9019,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Your password has been successfully reset! - Your password has been successfully reset! + Salasanasi on palautettu onnistuneesti! src/app/+reset-password/reset-password.component.ts47 Today Tänään - - - - src/app/+search/search-filters.component.ts40src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts134 + src/app/+search/search-filters.component.ts40 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts134 + Yesterday Yesterday - - src/app/shared/shared-video-miniature/videos-list.component.ts135 + src/app/shared/shared-video-miniature/videos-list.component.ts135 + This week - This week - - src/app/shared/shared-video-miniature/videos-list.component.ts136 + Tällä viikolla + src/app/shared/shared-video-miniature/videos-list.component.ts136 + This month This month - - src/app/shared/shared-video-miniature/videos-list.component.ts137 + src/app/shared/shared-video-miniature/videos-list.component.ts137 + Last month Last month - - src/app/shared/shared-video-miniature/videos-list.component.ts138 + src/app/shared/shared-video-miniature/videos-list.component.ts138 + Older Older - - src/app/shared/shared-video-miniature/videos-list.component.ts139 + src/app/shared/shared-video-miniature/videos-list.component.ts139 + Cannot load more videos. Try again later. Cannot load more videos. Try again later. - - - src/app/shared/shared-video-miniature/videos-list.component.ts246src/app/shared/shared-video-miniature/videos-selection.component.ts129 + src/app/shared/shared-video-miniature/videos-list.component.ts246 + src/app/shared/shared-video-miniature/videos-selection.component.ts129 + Last 7 days Viimeiset 7 päivää @@ -9482,7 +9077,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular VOD videos - VOD videos + VOD videot src/app/+search/search-filters.component.html34 src/app/shared/shared-video-miniature/video-filters-header.component.html109 src/app/shared/shared-video-miniature/video-filters.model.ts165 @@ -9505,8 +9100,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/+search/search-filters.component.ts63 - Long (> 10 min) - Pitkä (> 10 min) + Long (> 10 min) + Pitkä (> 10 min) src/app/+search/search-filters.component.ts67 @@ -9560,7 +9155,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - + src/app/+search/search.component.html 5 @@ -10197,8 +9792,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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. + 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. src/app/shared/shared-video-live/live-documentation-link.component.html1 @@ -10387,7 +9982,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular All categories - All categories + Kaikki kategoriat src/app/shared/shared-forms/select/select-categories.component.ts 24 @@ -10453,7 +10048,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Sun - Sun + su src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 20 @@ -10463,7 +10058,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mon - Mon + ma src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 21 @@ -10473,7 +10068,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Tue - Tue + ti src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 22 @@ -10483,7 +10078,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Wed - Wed + ke src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 23 @@ -10493,7 +10088,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Thu - Thu + to src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 24 @@ -10503,7 +10098,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Fri - Fri + pe src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 25 @@ -10513,7 +10108,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Sat - Sat + la src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 26 @@ -10523,7 +10118,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Su - Su + su src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 30 @@ -10533,7 +10128,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mo - Mo + ma src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 31 @@ -10543,7 +10138,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Tu - Tu + ti src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 32 @@ -10553,7 +10148,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular We - We + ke src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 33 @@ -10563,7 +10158,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Th - Th + to src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 34 @@ -10573,7 +10168,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Fr - Fr + pe src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 35 @@ -10583,7 +10178,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Sa - Sa + la src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 36 @@ -10653,7 +10248,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Jan - Jan + tammi src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 55 @@ -10663,7 +10258,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Feb - Feb + helmi src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 56 @@ -10673,7 +10268,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mar - Mar + maalis src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 57 @@ -10683,7 +10278,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Apr - Apr + huhti src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 58 @@ -10693,7 +10288,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular May - May + touko src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 59 @@ -10703,7 +10298,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Jun - Jun + kesä src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 60 @@ -10713,7 +10308,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Jul - Jul + heinä src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 61 @@ -10723,7 +10318,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Aug - Aug + elo src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 62 @@ -10733,7 +10328,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Sep - Sep + syys src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 63 @@ -10743,7 +10338,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Oct - Oct + loka src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 64 @@ -10753,7 +10348,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Nov - Nov + marras src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 65 @@ -10763,7 +10358,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Dec - Dec + joulu src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 66 @@ -10898,14 +10493,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular User banned. - User - banned. - + Käyttäjä estetty. src/app/shared/shared-moderation/user-ban-modal.component.ts68 Ban users - Ban users + Estä käyttäjää src/app/shared/shared-moderation/user-ban-modal.component.ts 82 @@ -10913,7 +10506,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Ban "" - Ban "" + Estä "" src/app/shared/shared-moderation/user-ban-modal.component.ts 84 @@ -10921,16 +10514,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to unban ? - Do you really want to unban - ? - + Haluatko varmasti postaa estot käyttäjältä ? src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 User unbanned. - User - unbanned. - + Käyttäjän estot poistettu. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts89 @@ -10940,45 +10529,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Delete - Delete + Poista src/app/shared/shared-moderation/user-moderation-dropdown.component.ts104 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts231 User deleted. - Käyttäjä - poistettu. - + Käyttäjä poistettu. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts110 User email set as verified - User - email set as verified - + Käyttäjän sähköpostiosoite vahvistettu src/app/shared/shared-moderation/user-moderation-dropdown.component.ts122 Account muted. - Account - muted. - + Tili hiljennetty. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts134 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts263 Instance muted. - Instance - muted. - + Instanssi hiljennetty. src/app/shared/shared-moderation/server-blocklist.component.ts68 src/app/shared/shared-moderation/user-moderation-dropdown.component.ts162 Account muted by the instance. - Account - muted by the instance. - + Tili instanssin hiljentämä. src/app/shared/shared-abuse-list/abuse-list-table.component.ts434 src/app/shared/shared-moderation/user-moderation-dropdown.component.ts190 @@ -10989,9 +10568,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Server muted by the instance. - Server - muted by the instance. - + Palvelin instanssin hiljentämä. src/app/shared/shared-abuse-list/abuse-list-table.component.ts446 @@ -11006,23 +10583,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. - Account - unmuted by the instance. - + Tilin hiljennys poistettu instanssilta. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts204 Instance muted by the instance. - Instance - muted by the instance. - + Instanssi hiljennetty instanssilla. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts218 Instance unmuted by the instance. - Instance - unmuted by the instance. - + Instance unmuted by the instance. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts232 @@ -11072,7 +10643,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mute this account - Mykistä tämä käyttäjä. + Mykistä tämä käyttäjä src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 src/app/shared/shared-moderation/user-moderation-dropdown.component.ts373 @@ -11165,7 +10736,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Block videos - Block videos + Estä videota src/app/shared/shared-moderation/video-block.component.html 4 @@ -11245,9 +10816,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Too many attempts, please try again after minutes. - Too many attempts, please try again after - minutes. - + Liian monta yritystä, yritä uudelleen minuutin jälkeen. src/app/core/rest/rest-extractor.service.ts66 @@ -11262,16 +10831,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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. - + Subscribed to all current channels of . You will be notified of all their new videos. src/app/shared/shared-user-subscription/subscribe-button.component.ts109 Subscribed to . You will be notified of all their new videos. - Subscribed to - . You will be notified of all their new videos. - + Tilataan kohdetta . Saat ilmoituksen heidän kaikista uusista videoista. src/app/shared/shared-user-subscription/subscribe-button.component.ts110 @@ -11321,7 +10886,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Search videos, playlists, channels… - Search videos, playlists, channels… + Hae videoita, soittolistoja, kanavia… src/app/header/search-typeahead.component.html 3 @@ -11337,10 +10902,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video added in at timestamps - Video added in - at timestamps - - + Video added in at timestamps src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts379 @@ -11432,7 +10994,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Copy - Copy + Kopioi src/app/shared/shared-forms/input-toggle-hidden.component.html15 src/app/shared/shared-forms/input-toggle-hidden.component.html15 @@ -11499,25 +11061,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Run HLS transcoding - Run HLS transcoding + Suorita HLS transkoodaaminen src/app/+admin/overview/videos/video-list.component.ts94 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts380 Run WebTorrent transcoding - Run WebTorrent transcoding + Suorita WebTorrent transkoodaaminen src/app/+admin/overview/videos/video-list.component.ts100 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts386 Delete HLS files - Delete HLS files + Poista HLS tiedostot src/app/+admin/overview/videos/video-list.component.ts106 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts392 Delete WebTorrent files - Delete WebTorrent files + Poista WebTorrent tiedostot src/app/+admin/overview/videos/video-list.component.ts112 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts398 @@ -11528,8 +11090,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts316 - 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. + 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 @@ -11565,7 +11127,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 {kommenttia} =1 {1 kommentti} other { kommenttia}} src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 @@ -11670,7 +11232,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Move to external storage failed - Move to external storage failed + Siirto ulkoiseen tallennustilaan epäonnistui src/app/shared/shared-video-miniature/video-miniature.component.ts 183 @@ -11822,7 +11384,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular (extensions: ) - (extensions: ) + (lisäosat: ) src/app/+video-editor/edit/video-editor-edit.component.ts 104 @@ -11834,7 +11396,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular "" will be added at the beggining of the video - "" will be added at the beggining of the video + "" lisätään videon alkuun src/app/+video-editor/edit/video-editor-edit.component.ts 120 @@ -11842,7 +11404,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular "" will be added at the end of the video - "" will be added at the end of the video + "" lisätään videon loppuun src/app/+video-editor/edit/video-editor-edit.component.ts 124 @@ -11850,7 +11412,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular "" image watermark will be added to the video - "" image watermark will be added to the video + "" kuva-vesileima lisätään videoon src/app/+video-editor/edit/video-editor-edit.component.ts 128 @@ -11858,7 +11420,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video will begin at and stop at - Video will begin at and stop at + Video alkaa kohdasta ja loppuu kohtaan src/app/+video-editor/edit/video-editor-edit.component.ts 135 @@ -11866,7 +11428,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video will begin at - Video will begin at + Video alkaa kohdasta src/app/+video-editor/edit/video-editor-edit.component.ts 139 @@ -11874,7 +11436,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video will stop at - Video will stop at + Video pysähtyy kohdassa src/app/+video-editor/edit/video-editor-edit.component.ts 143 @@ -11882,7 +11444,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Edit video - Edit video + Muokkaa videota src/app/+video-editor/video-editor-routing.module.ts 15 @@ -11890,7 +11452,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Report comment - Report comment + Raportoi kommentti src/app/shared/shared-moderation/report-modals/comment-report.component.ts51 @@ -11942,8 +11504,8 @@ 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>? + 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.ts301 @@ -11963,12 +11525,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Up Next - Up Next + Seuraavaksi src/app/+videos/+video-watch/video-watch.component.ts424 Cancel - Cancel + Peruuta 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.html125 @@ -11998,67 +11560,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Enter/exit fullscreen - Enter/exit fullscreen + Siirry tai poistu koko ruudun tilasta src/app/+videos/+video-watch/video-watch.component.ts716 Play/Pause the video - Play/Pause the video + Toista tai pysäytä video src/app/+videos/+video-watch/video-watch.component.ts717 Mute/unmute the video - Mute/unmute the video + Mykistä tai poista mykistys src/app/+videos/+video-watch/video-watch.component.ts718 Skip to a percentage of the video: 0 is 0% and 9 is 90% - Skip to a percentage of the video: 0 is 0% and 9 is 90% + Hyppää prosenttiin videosta: 0 on 0% ja 9 on 90% src/app/+videos/+video-watch/video-watch.component.ts720 Increase the volume - Increase the volume + Lisää äänenvoimakkuutta src/app/+videos/+video-watch/video-watch.component.ts722 Decrease the volume - Decrease the volume + Alenna äänenvoimakkuutta src/app/+videos/+video-watch/video-watch.component.ts723 Seek the video forward - Seek the video forward + Kelaa videota eteenpäin src/app/+videos/+video-watch/video-watch.component.ts725 Seek the video backward - Seek the video backward + Kelaa videota taaksepäin src/app/+videos/+video-watch/video-watch.component.ts726 Increase playback rate - Increase playback rate + Nopeuta videontoistoa src/app/+videos/+video-watch/video-watch.component.ts728 Decrease playback rate - Decrease playback rate + Hidasta videontoistoa src/app/+videos/+video-watch/video-watch.component.ts729 Navigate in the video to the previous frame - Navigate in the video to the previous frame + Siirry aikaisempaan kehykseen src/app/+videos/+video-watch/video-watch.component.ts731 Navigate in the video to the next frame - Navigate in the video to the next frame + Siirry seuraavaan kehykseen src/app/+videos/+video-watch/video-watch.component.ts732 Toggle theater mode - Toggle theater mode + Teatteritila src/app/+videos/+video-watch/video-watch.component.ts737 @@ -12073,12 +11635,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular When active, the next video is automatically played after the current one. - When active, the next video is automatically played after the current one. + Kun aktiivinen, seuraava video toistetaan automaattisesti nykyisen jälkeen. src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts50 Recently added - Recently added + Viimeksi lisätty src/app/+videos/video-list/videos-list-common-page.component.ts195 src/app/core/menu/menu.service.ts137 @@ -12089,7 +11651,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Subscriptions - Subscriptions + Tilaukset src/app/+my-library/my-library.component.ts67 src/app/+videos/video-list/video-user-subscriptions.component.ts25 src/app/+videos/videos-routing.module.ts56 @@ -12097,13 +11659,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular History - History + Historia src/app/+my-library/my-library.component.ts80 src/app/core/menu/menu.service.ts97 Open actions - Open actions + Avaa toiminnot src/app/shared/shared-main/buttons/action-dropdown.component.html 4 @@ -12111,7 +11673,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos - Local videos + Paikalliset videot src/app/+admin/overview/videos/video-admin.service.ts89 src/app/+videos/video-list/videos-list-common-page.component.ts189 src/app/core/menu/menu.service.ts142 @@ -12119,7 +11681,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Exclude - Exclude + Poissulje src/app/+admin/overview/videos/video-admin.service.ts95 @@ -12153,28 +11715,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Discover videos - Discover videos + Löydä videoita src/app/+videos/videos-routing.module.ts17 src/app/core/menu/menu.service.ts124 Trending videos - Trending videos + Trendaavat videot src/app/core/menu/menu.service.ts130 Recently added videos - Recently added videos + Viimeksi lisätyt videot src/app/core/menu/menu.service.ts136 Upload a video - Upload a video + Lataa video src/app/app-routing.module.ts101 Edit a video - Edit a video + Muokkaa videota src/app/app-routing.module.ts110 diff --git a/client/src/locale/angular.fr.xlf b/client/src/locale/angular.fr.xlf index f3533bb99..1260fad06 100644 --- a/client/src/locale/angular.fr.xlf +++ b/client/src/locale/angular.fr.xlf @@ -180,7 +180,7 @@ You enabled user registration on your instance but did not configure the following fields: - Vous avez activé l'enregistrement des utilisateurs sur votre instance mais n'avez pas configuré les champs suivants : + Vous avez activé l’enregistrement des utilisateurs sur votre instance mais n’avez pas configuré les champs suivants : src/app/modal/instance-config-warning-modal.component.html 10 @@ -188,7 +188,7 @@ Please consider configuring these fields to help people to choose the appropriate instance. Without them, your instance may not be referenced on the JoinPeerTube website. - Veuillez ne pas oublier de configurer ces champs pour aider des gens à choisir l'instance appropriée. Sans eux, votre instance pourrait ne pas être référencée sur le site web de JoinPeerTube. + Veuillez ne pas oublier de configurer ces champs pour aider des gens à choisir l’instance appropriée. Sans eux, votre instance pourrait ne pas être référencée sur le site web de JoinPeerTube. src/app/modal/instance-config-warning-modal.component.html 25,27 @@ -224,7 +224,7 @@ Instance name - Nom de l'instance + Nom de l’instance src/app/modal/instance-config-warning-modal.component.html 13 @@ -232,7 +232,7 @@ Instance short description - Courte description de l'instance + Courte description de l’instance src/app/modal/instance-config-warning-modal.component.html 14 @@ -272,7 +272,7 @@ Instance terms - Conditions de l'instance + Conditions de l’instance src/app/modal/instance-config-warning-modal.component.html 21 @@ -292,7 +292,7 @@ These settings apply only to your session on this instance. - Ces paramètres s'appliquent seulement à votre session sur cette instance. + Ces paramètres s’appliquent seulement à votre session sur cette instance. src/app/modal/quick-settings-modal.component.html 8 @@ -300,7 +300,7 @@ Display settings - Paramètres d'affichage + Paramètres d’affichage src/app/modal/quick-settings-modal.component.html 10 @@ -308,7 +308,7 @@ Interface settings - Paramètres de l'interface + Paramètres de l’interface src/app/modal/quick-settings-modal.component.html 22 @@ -340,7 +340,7 @@ Upload or import videos, parse logs, prune storage directories, reset user password... - Téléverser ou importer des vidéos, parcourir les logs, nettoyer les dossier de stockage, réinitialiser les mots de passe des utilisateurs... + Téléverser ou importer des vidéos, parcourir les logs, nettoyer les dossier de stockage, réinitialiser les mots de passe des utilisateurs… src/app/modal/welcome-modal.component.html 15 @@ -348,7 +348,7 @@ Administer documentation - Documentation sur l'administration + Documentation sur l’administration src/app/modal/welcome-modal.component.html 19,20 @@ -356,7 +356,7 @@ Managing users, following other instances, dealing with spammers... - Gérer les utilisateurs, s'abonner à d'autres instances, gérer les spammeurs... + Gérer les utilisateurs, s’abonner à d’autres instances, gérer les spammeurs… src/app/modal/welcome-modal.component.html 22 @@ -364,7 +364,7 @@ Use documentation - Documentation d'utilisation + Documentation d’utilisation src/app/modal/welcome-modal.component.html 26,27 @@ -372,7 +372,7 @@ Setup your account, managing video playlists, discover third-party applications... - Paramétrer votre compte, gérer vos listes de lecture, découvrir des applications tierces... + Paramétrer votre compte, gérer vos listes de lecture, découvrir des applications tierces… src/app/modal/welcome-modal.component.html 29 @@ -388,7 +388,7 @@ Official PeerTube website (news, support, contribute...): https://joinpeertube.org - Site web officiel de PeerTube (infos, aide, contribuer...) : https://joinpeertube.org + Site web officiel de PeerTube (infos, aide, contribuer…) : https://joinpeertube.org src/app/modal/welcome-modal.component.html 42,43 @@ -396,7 +396,7 @@ Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances - Ajoutez votre instance à l'index PeerTube public : https://instances.joinpeertube.org/instances + Ajoutez votre instance à l’index PeerTube public : https://instances.joinpeertube.org/instances src/app/modal/welcome-modal.component.html 45 @@ -404,7 +404,7 @@ It's time to configure your instance! - C'est le moment de configurer votre instance ! + C’est le moment de configurer votre instance ! src/app/modal/welcome-modal.component.html 55 @@ -412,7 +412,7 @@ 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. - Choisir le nom de votre instance, rédiger une description, renseigner qui vous êtes, pourquoi vous avez créé votre instance et combien de temps vous prévoyez de la maintenir est très important pour que les visiteurs comprennent sur quel type d'instance ils se trouvent. + Choisir le nom de votre instance, rédiger une description, renseigner qui vous êtes, pourquoi vous avez créé votre instance et combien de temps vous prévoyez de la maintenir est très important pour que les visiteurs comprennent sur quel type d’instance ils se trouvent. src/app/modal/welcome-modal.component.html 58,61 @@ -420,7 +420,7 @@ 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. - Si vous souhaitez ouvrir les inscriptions, veuillez décider quelles sont vos règles de modération et conditions d'utilisation, ainsi que les spécificités des catégories et langues que parlent vos modérateurs. Ainsi, vous aiderez vos utilisateurs à s'inscrire sur l'instance PeerTube appropriée. + Si vous souhaitez ouvrir les inscriptions, veuillez décider quelles sont vos règles de modération et conditions d’utilisation, ainsi que les spécificités des catégories et langues que parlent vos modérateurs. Ainsi, vous aiderez vos utilisateurs à s’inscrire sur l’instance PeerTube appropriée. src/app/modal/welcome-modal.component.html 64,67 @@ -572,7 +572,7 @@ Get help using PeerTube - Obtenez de l'aide en utilisant PeerTube + Obtenez de l’aide en utilisant PeerTube src/app/menu/menu.component.html 174 @@ -612,7 +612,7 @@ API documentation - Documentation de l'API + Documentation de l’API src/app/menu/menu.component.html 177 @@ -656,7 +656,7 @@ Interface: - Interface : + Interface : src/app/menu/menu.component.html 30 @@ -664,7 +664,7 @@ Videos: - Vidéos : + Vidéos : src/app/menu/menu.component.html 37 @@ -672,7 +672,7 @@ Sensitive: - Sensible : + Sensible : src/app/menu/menu.component.html 46 @@ -792,7 +792,7 @@ Interface: - Interface : + Interface : src/app/menu/menu.component.html 169 @@ -808,7 +808,7 @@ Interface settings updated. - Paramètres d'interface mis à jour. + Paramètres d’interface mis à jour. src/app/shared/shared-user-settings/user-interface-settings.component.ts 74 @@ -876,7 +876,7 @@ Keyboard Shortcuts: - Raccourcis clavier : + Raccourcis clavier : src/app/core/hotkeys/hotkeys.component.ts 11 @@ -972,7 +972,7 @@ Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent. - Les résultats seront complétés par ceux d'un index tiers. Seules les données nécessaires à la recherche seront envoyées. + Les résultats seront complétés par ceux d’un index tiers. Seules les données nécessaires à la recherche seront envoyées. src/app/header/search-typeahead.component.html 32 @@ -1032,7 +1032,7 @@ any instance - n'importe quelle instance + n’importe quelle instance src/app/header/search-typeahead.component.html 41 @@ -1092,7 +1092,7 @@ Display/Video settings updated. - Paramètres d'affichage et de vidéo mis à jour. + Paramètres d’affichage et de vidéo mis à jour. src/app/shared/shared-user-settings/user-video-settings.component.ts 140 @@ -1188,7 +1188,7 @@ 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. - Le système de partage implique que certaines informations techniques sur votre système (comme une adresse IP publique) peuvent être envoyées à d'autres pairs, mais contribue grandement à réduire la charge du serveur. + Le système de partage implique que certaines informations techniques sur votre système (comme une adresse IP publique) peuvent être envoyées à d’autres pairs, mais contribue grandement à réduire la charge du serveur. src/app/shared/shared-user-settings/user-video-settings.component.html 50 @@ -1204,7 +1204,7 @@ When on a video page, directly start playing the video. - Sur la page d'une vidéo, démarrer immédiatement la lecture. + Sur la page d’une vidéo, démarrer immédiatement la lecture. src/app/shared/shared-user-settings/user-video-settings.component.html 61 @@ -1260,7 +1260,7 @@ Your file couldn't be transferred before the set timeout (usually 10min) - Votre fichier n'a pas pu être transféré avant le délai fixé (généralement 10min) + Votre fichier n’a pas pu être transféré avant le délai fixé (généralement 10 min) src/app/helpers/utils.ts 192 @@ -1268,7 +1268,7 @@ Your file was too large (max. size: ) - Votre fichier est trop volumineux (taille max. : ) + Votre fichier est trop volumineux (taille max. : ) src/app/helpers/utils.ts 196 @@ -1276,7 +1276,7 @@ Get help - Obtenir de l'aide + Obtenir de l’aide src/app/shared/shared-main/misc/help.component.ts 16 @@ -1284,7 +1284,7 @@ <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: - <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible qui supporte : + <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible qui supporte : src/app/shared/shared-main/misc/help.component.ts 75 @@ -1360,7 +1360,7 @@ Maximize editor - Agrandir l'éditeur + Agrandir l’éditeur src/app/shared/shared-forms/markdown-textarea.component.ts 38 @@ -1368,7 +1368,7 @@ Exit maximized editor - Sortir de l'éditeur agrandi + Sortir de l’éditeur agrandi src/app/shared/shared-forms/markdown-textarea.component.ts 39 @@ -1537,7 +1537,7 @@ Select year - Sélectionner l'année + Sélectionner l’année node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts 59,63 @@ -1773,7 +1773,7 @@ Cannot retrieve OAuth Client credentials: . Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section. - Impossible de récupérer les identifiants du Client OAuth : . Assurez-vous d'avoir correctement configuré PeerTube (dossier config/), en particulier la section "serveur web". + Impossible de récupérer les identifiants du Client OAuth : . Assurez-vous d’avoir correctement configuré PeerTube (dossier config/), en particulier la section « serveur web ». src/app/core/auth/auth.service.ts 99,100 @@ -1921,7 +1921,7 @@ Too many attempts, please try again later. - Trop d'essais. Merci de réessayer plus tard. + Trop d’essais. Merci de réessayer plus tard. src/app/core/rest/rest-extractor.service.ts 69 @@ -2041,7 +2041,7 @@ just now - à l'instant + à l’instant src/app/shared/shared-main/angular/from-now.pipe.ts 34 @@ -2185,7 +2185,7 @@ You don't have notifications. - Vous n'avez pas de notifications. + Vous n’avez pas de notifications. src/app/shared/shared-main/users/user-notifications.component.html 1 @@ -2193,7 +2193,7 @@ published a new video: - a publié une nouvelle vidéo : + a publié une nouvelle vidéo : src/app/shared/shared-main/users/user-notifications.component.html 15,16 @@ -2305,7 +2305,7 @@ Your video import succeeded - L'import de votre vidéo a réussi + L’import de votre vidéo a réussi src/app/shared/shared-main/users/user-notifications.component.html 126,127 @@ -2313,7 +2313,7 @@ Your video import failed - L'import de votre vidéo a échoué + L’import de votre vidéo a échoué src/app/shared/shared-main/users/user-notifications.component.html 134,135 @@ -2321,7 +2321,7 @@ User registered on your instance - L'utilisateur enregistré sur votre instance + L’utilisateur enregistré sur votre instance src/app/shared/shared-main/users/user-notifications.component.html 142,143 @@ -2421,7 +2421,7 @@ Remove avatar - Enlever l'avatar + Enlever l’avatar src/app/shared/shared-main/account/actor-avatar-info.component.html 41 @@ -2429,7 +2429,7 @@ Loading instance statistics... - Chargement des statistiques de l'instance... + Chargement des statistiques de l’instance… src/app/shared/shared-instance/instance-statistics.component.html 1 @@ -2613,7 +2613,7 @@ User registration allowed - Enregistrement d'utilisateur autorisé + Enregistrement d’utilisateur autorisé src/app/shared/shared-instance/instance-features-table.component.html 21 @@ -2677,7 +2677,7 @@ Transcode live video in multiple resolutions - Transcoder les vidéos d'un direct en de multiples résolutions + Transcoder les vidéos d’un direct en de multiples résolutions src/app/shared/shared-instance/instance-features-table.component.html 78 @@ -2717,7 +2717,7 @@ HTTP import (YouTube, Vimeo, direct URL...) - Importation HTTP (YouTube, Vimeo, URL...) + Importation HTTP (YouTube, Vimeo, URL…) src/app/shared/shared-instance/instance-features-table.component.html 96 @@ -2793,7 +2793,7 @@ Terms - Conditions d'utilisation + Conditions d’utilisation src/app/shared/shared-instance/instance-about-accordion.component.html 35 @@ -2949,7 +2949,7 @@ That's an error. - C'est une erreur. + C’est une erreur. src/app/+page-not-found/page-not-found.component.html 4 @@ -2957,7 +2957,7 @@ We couldn't find any ressource tied to the URL you were looking for. - Nous n'avons trouvé aucune ressource liée à l'URL que vous cherchiez. + Nous n'avons trouvé aucune ressource liée à l’URL que vous cherchiez. src/app/+page-not-found/page-not-found.component.html 6,8 @@ -2965,7 +2965,7 @@ Possible reasons: - Les raisons possibles : + Les raisons possibles : src/app/+page-not-found/page-not-found.component.html 11 @@ -2990,7 +2990,7 @@ You may have typed the address or URL incorrectly - Vous avez peut-être mal saisi l'adresse ou l'URL + Vous avez peut-être mal saisi l'adresse ou l’URL src/app/+page-not-found/page-not-found.component.html 16 @@ -2998,7 +2998,7 @@ The requested entity body blends sweet bits with a mellow earthiness. - Le corps de l'entité sollicitée allie la douceur à la douceur terrestre. + Le corps de l’entité sollicitée allie la douceur à la douceur terrestre. src/app/+page-not-found/page-not-found.component.html 26,27 @@ -3032,7 +3032,7 @@ Cannot access to the remote resource - Impossible d'accéder à la ressource distante + Impossible d’accéder à la ressource distante src/app/+remote-interaction/remote-interaction.component.ts 48 @@ -3048,7 +3048,7 @@ Search index is unavailable. Retrying with instance results instead. - L'index de recherche n'est pas disponible. Essayez plutôt avec les résultats de l'instance. + L’index de recherche n’est pas disponible. Essayez plutôt avec les résultats de l’instance. src/app/+search/search.component.ts 171 @@ -3144,7 +3144,7 @@ Today - Aujourd'hui + Aujourd’hui src/app/+search/search-filters.component.ts 42 @@ -3280,7 +3280,7 @@ After... - Après... + Après… src/app/+search/search-filters.component.html 66 @@ -3288,7 +3288,7 @@ Before... - Avant... + Avant… src/app/+search/search-filters.component.html 76 @@ -3508,7 +3508,7 @@ Incorrect username or password. - Nom d'utilisateur ou mot de passe incorrects. + Nom d’utilisateur ou mot de passe incorrects. src/app/+login/login.component.ts 164 @@ -3524,7 +3524,7 @@ Login - Nom d'utilisateur + Nom d’utilisateur src/app/+login/login.component.html 3,4 @@ -3624,7 +3624,7 @@ 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. - Cette instance permet l'enregistrement. Toutefois, il faut veiller à vérifier la TermsTerms avant de créer un compte. Vous pouvez également rechercher une autre instance correspondant exactement à vos besoins sur : https://joinpeertube.org/instances. + Cette instance permet l’enregistrement. Toutefois, il faut veiller à vérifier la TermsTerms avant de créer un compte. Vous pouvez également rechercher une autre instance correspondant exactement à vos besoins sur : https://joinpeertube.org/instances. src/app/+login/login.component.html 60,62 @@ -3632,7 +3632,7 @@ 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. - Actuellement, cette instance ne permet pas l'enregistrement des utilisateurs, vous pouvez vérifier les conditions d'utilisation pour plus de détails ou trouvez une instance qui vous donne la possibilité de créer un compte et d'y télécharger vos vidéos. Trouvez la vôtre parmi plusieurs instances à l'adresse suivante : https://joinpeertube.org/instances. + Actuellement, cette instance ne permet pas l’enregistrement des utilisateurs, vous pouvez vérifier les conditions d’utilisation pour plus de détails ou trouvez une instance qui vous donne la possibilité de créer un compte et d’y télécharger vos vidéos. Trouvez la vôtre parmi plusieurs instances à l’adresse suivante : https://joinpeertube.org/instances. src/app/+login/login.component.html 65,67 @@ -3709,7 +3709,7 @@ We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. - Nous sommes désolés, vous ne pouvez pas réinitialiser votre mot de passe car l'administrateur de votre instance n'a pas configuré le système de courrier électronique de PeerTube. + Nous sommes désolés, vous ne pouvez pas réinitialiser votre mot de passe car l’administrateur de votre instance n’a pas configuré le système de courrier électronique de PeerTube. src/app/+login/login.component.html 99,100 @@ -3725,7 +3725,7 @@ Login - S'identifier + Nom d’utilisateur src/app/+login/login-routing.module.ts 14 @@ -3733,7 +3733,7 @@ Unable to find user id or verification string. - Impossible de trouver l'identifiant utilisateur ou le texte de vérification. + Impossible de trouver l’identifiant utilisateur ou le texte de vérification. src/app/+reset-password/reset-password.component.ts 38 @@ -3803,7 +3803,7 @@ Signup - S'enregistrer + S’enregistrer src/app/+signup/+register/register.component.ts 64 @@ -3893,7 +3893,7 @@ PeerTube is creating your account... - PeerTube est en train de créer votre compte... + PeerTube est en train de créer votre compte… src/app/+signup/+register/register.component.html 46 @@ -3953,7 +3953,7 @@ e.g. jane_doe - exemple : joel_dove + exemple : joel_dove src/app/+signup/+register/register-step-user.component.html 27 @@ -3962,7 +3962,7 @@ The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. - Le nom d'utilisateur est l'identifiant unique de votre compte sur cette instance et toutes les autres. C'est aussi unique qu'une adresse de courriel, et donc facile pour les autres personnes d’interagir avec. + Le nom d’utilisateur est l’identifiant unique de votre compte sur cette instance et toutes les autres. C’est aussi unique qu’une adresse de courriel, et donc facile pour les autres personnes d’interagir avec. src/app/+signup/+register/register-step-user.component.html 36,37 @@ -3978,7 +3978,7 @@ I am at least 16 years old and agree to the Terms and to the Code of Conduct of this instance - Je suis agé d'au mois 16 ans et j'accepte les termes et le code de conduite de cette instance + Je suis âgé d’au mois 16 ans et j’accepte les termes et le code de conduite de cette instance src/app/+signup/+register/register-step-terms.component.html 6,10 @@ -3986,7 +3986,7 @@ A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. - Une chaîne est une entité dans laquelle vous téléchargez vos vidéos. En créer plusieurs vous permet d'organiser et de séparer vos contenus. Par exemple, vous pourriez décider d'avoir une chaîne pour publier vos concerts de piano, et une autre chaîne dans laquelle vous publiez vos vidéos parlant d'écologie. + Une chaîne est une entité dans laquelle vous téléchargez vos vidéos. En créer plusieurs vous permet d’organiser et de séparer vos contenus. Par exemple, vous pourriez décider d’avoir une chaîne pour publier vos concerts de piano, et une autre chaîne dans laquelle vous publiez vos vidéos parlant d’écologie. src/app/+signup/+register/register-step-channel.component.html 5,7 @@ -3994,7 +3994,7 @@ Other users can decide to subscribe any channel they want, to be notified when you publish a new video. - Les autres utilisateurs peuvent s'abonner aux chaînes voulues, pour être alertés lorsque vous postez une nouvelle vidéo. + Les autres utilisateurs peuvent s’abonner aux chaînes voulues, pour être alertés lorsque vous postez une nouvelle vidéo. src/app/+signup/+register/register-step-channel.component.html 10,11 @@ -4002,7 +4002,7 @@ Channel display name - Nom d'affichage de la chaîne + Nom d’affichage de la chaîne src/app/+signup/+register/register-step-channel.component.html 15 @@ -4026,7 +4026,7 @@ Example: my_super_channel - Exemple : ma_super_chaîne + Exemple : ma_super_chaîne src/app/+signup/+register/register-step-channel.component.html 34 @@ -4034,7 +4034,7 @@ The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. - Le nom de la chaîne est un identifiant unique sur cette instance et toutes les autres. C'est aussi unique qu'une adresse e-mail, et donc facile pour les autres personnes d’interagir avec. + Le nom de la chaîne est un identifiant unique sur cette instance et toutes les autres. C’est aussi unique qu’une adresse e-mail, et donc facile pour les autres personnes d’interagir avec. src/app/+signup/+register/register-step-channel.component.html 43,44 @@ -4066,7 +4066,7 @@ Subscribe to the account - S'abonner à ce compte + S’abonner à ce compte src/app/+video-channels/video-channels.component.ts 64 @@ -4110,7 +4110,7 @@ Username copied - Nom d'utilisateur copié + Nom d’utilisateur copié src/app/+video-channels/video-channels.component.ts 96 @@ -4162,7 +4162,7 @@ Video channel videos - Contenus d'une chaîne de vidéos + Contenus d’une chaîne de vidéos src/app/+video-channels/video-channels-routing.module.ts 25 @@ -4170,7 +4170,7 @@ Video channel playlists - Listes de lecture d'une chaîne de vidéos + Listes de lecture d’une chaîne de vidéos src/app/+video-channels/video-channels-routing.module.ts 38 @@ -4178,7 +4178,7 @@ About video channel - À propos d'une chaîne vidéos + À propos d’une chaîne vidéos src/app/+video-channels/video-channels-routing.module.ts 47 @@ -4454,7 +4454,7 @@ This channel does not have playlists. - Cette chaîne n'a aucune liste de lecture. + Cette chaîne n’a aucune liste de lecture. src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html 6 @@ -4774,7 +4774,7 @@ Multiple ways to subscribe to the current channel - Plusieurs façons de s'abonner à la chaîne actuelle + Plusieurs façons de s’abonner à la chaîne actuelle src/app/shared/shared-user-subscription/subscribe-button.component.html 44 @@ -4782,7 +4782,7 @@ Open subscription dropdown - Ouvrir le menu d'abonnement + Ouvrir le menu d’abonnement src/app/shared/shared-user-subscription/subscribe-button.component.html 46 @@ -4798,7 +4798,7 @@ Subscribe with a remote account: - Souscrivez avec un compte à distance : + Souscrivez avec un compte à distance : src/app/shared/shared-user-subscription/subscribe-button.component.html 62 @@ -4806,7 +4806,7 @@ Using a syndication feed - Utilisation d'un flux de syndication + Utilisation d’un flux de syndication src/app/shared/shared-user-subscription/subscribe-button.component.html 68 @@ -4814,7 +4814,7 @@ Subscribe via RSS - S'abonner par RSS + S’abonner par RSS src/app/shared/shared-user-subscription/subscribe-button.component.html 69 @@ -4822,7 +4822,7 @@ Subscribe - S'abonner + S’abonner src/app/shared/shared-user-subscription/subscribe-button.component.html 9 @@ -4830,7 +4830,7 @@ Subscribe to all channels - S'abonner à toutes les chaînes + S’abonner à toutes les chaînes src/app/shared/shared-user-subscription/subscribe-button.component.html 11 @@ -4862,7 +4862,7 @@ Subscribe with your local account - S'abonner avec un compte local + S’abonner avec un compte local src/app/shared/shared-user-subscription/subscribe-button.component.html 58 @@ -4886,7 +4886,7 @@ This account does not have channels. - Ce compte n'a pas de chaîne vidéo. + Ce compte n’a pas de chaîne vidéo. src/app/+accounts/account-video-channels/account-video-channels.component.html 4 @@ -5702,7 +5702,7 @@ See the error - Consultez l'erreur + Consultez l’erreur src/app/+my-library/my-video-imports/my-video-imports.component.html 26 @@ -5734,7 +5734,7 @@ You don't have any subscription yet. - Vous n'avez pas encore d'abonnement. + Vous n’avez pas encore d'abonnement. src/app/+my-library/my-subscriptions/my-subscriptions.component.html 18 @@ -5894,7 +5894,7 @@ No ownership change request found. - Aucune demande de changement de propriétaire n'a été trouvée. + Aucune demande de changement de propriétaire n’a été trouvée. src/app/+my-library/my-ownership/my-ownership.component.html 83 @@ -5958,7 +5958,7 @@ Delete videos history - Supprimer l'historique de vidéos + Supprimer l’historique de vidéos src/app/+my-library/my-history/my-history.component.ts 119 @@ -6006,7 +6006,7 @@ Delete history - Supprimer l'historique + Supprimer l’historique src/app/+my-library/my-history/my-history.component.html 24,26 @@ -6014,7 +6014,7 @@ You don't have any video in your watch history yet. - Vous n'avez pas encore de vidéo dans votre historique de lecture. + Vous n’avez pas encore de vidéo dans votre historique de lecture. src/app/+my-library/my-history/my-history.component.html 30 @@ -6030,7 +6030,7 @@ If you need help to use PeerTube, you can have a look at the documentation. - Si vous souhaitez de l'aide pour utiliser PeerTube, allez voir du côté de la documentation. + Si vous souhaitez de l’aide pour utiliser PeerTube, allez voir du côté de la documentation. src/app/+signup/shared/signup-success.component.html 14,15 @@ -6070,7 +6070,7 @@ Please describe the issue... - Décrivez le problème... + Décrivez le problème… src/app/shared/shared-moderation/report-modals/report.component.html 42 @@ -6098,7 +6098,7 @@ You cannot ban root. - Vous ne pouvez pas bannir l'utilisateur root. + Vous ne pouvez pas bannir l’utilisateur root. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 58 @@ -6142,7 +6142,7 @@ You cannot delete root. - Vous ne pouvez pas supprimer l'utilisateur root. + Vous ne pouvez pas supprimer l’utilisateur root. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 86 @@ -6170,7 +6170,7 @@ User email set as verified - Le courriel de l'utilisateur a été vérifié + Le courriel de l’utilisateur a été vérifié src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 107 @@ -6214,7 +6214,7 @@ Instance unmuted. - Son de l'instance rétabli. + Son de l’instance rétabli. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 161 @@ -6226,7 +6226,7 @@ Account muted by the instance. - Le compte a été mis en sourdine par l'instance. + Le compte a été mis en sourdine par l’instance. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 175 @@ -6238,7 +6238,7 @@ Account unmuted by the instance. - Le son du compte a été rétabli par l'instance. + Le son du compte a été rétabli par l’instance. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 189 @@ -6246,7 +6246,7 @@ Instance muted by the instance. - L'instance a été mise en sourdine par l'instance. + L’instance a été mise en sourdine par l’instance. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 203 @@ -6254,7 +6254,7 @@ Instance unmuted by the instance. - Le son de l'instance a été rétabli par l'instance. + Le son de l’instance a été rétabli par l’instance. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 217 @@ -6334,7 +6334,7 @@ User won't be able to login anymore, but videos and comments will be kept as is. - L'utilisateur ne pourra plus se connecter, mais les vidéos et commentaires seront gardés tels quels. + L’utilisateur ne pourra plus se connecter, mais les vidéos et commentaires seront gardés tels quels. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 274 @@ -6346,7 +6346,7 @@ Unban user - Lever l'interdiction pour l’utilisateur + Lever l’interdiction pour l’utilisateur src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 279 @@ -6354,7 +6354,7 @@ Allow the user to login and create videos/comments again - Permettre à l'utilisateur de se connecter à nouveau et ajouter des vidéos/commentaires + Permettre à l’utilisateur de se connecter à nouveau et ajouter des vidéos/commentaires src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 280 @@ -6362,7 +6362,7 @@ Set Email as Verified - Définir l'adresse de courriel comme vérifiée + Définir l’adresse de courriel comme vérifiée src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 285 @@ -6762,7 +6762,7 @@ Cannot fetch information of this remote account - Impossible d'obtenir des informations sur ce compte à distance + Impossible d’obtenir des informations sur ce compte à distance src/app/shared/shared-user-subscription/remote-subscribe.component.ts 60 @@ -6778,7 +6778,7 @@ You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). - Vous pouvez vous abonner à la chaîne via n'importe quelle instance fediverse compatible avec ActivityPub (PeerTube, Mastodon ou Pleroma par exemple). + Vous pouvez vous abonner à la chaîne via n’importe quelle instance fediverse compatible avec ActivityPub (PeerTube, Mastodon ou Pleroma par exemple). src/app/shared/shared-user-subscription/remote-subscribe.component.html 18,19 @@ -6786,7 +6786,7 @@ You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). - Vous pouvez interagir via n'importe quelle instance fediverse compatible avec ActivityPub (PeerTube, Mastodon ou Pleroma par exemple). + Vous pouvez interagir via n’importe quelle instance fediverse compatible avec ActivityPub (PeerTube, Mastodon ou Pleroma par exemple). src/app/shared/shared-user-subscription/remote-subscribe.component.html 26,27 @@ -6974,7 +6974,7 @@ The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites). - L’URL n'est pas sécurisée (pas de HTTPS), donc la vidéo intégrée ne fonctionnera pas sur les sites HTTPS (les navigateurs web bloquent les requêtes HTTP non sécurisées sur les sites HTTPS). + L’URL n’est pas sécurisée (pas de HTTPS), donc la vidéo intégrée ne fonctionnera pas sur les sites HTTPS (les navigateurs web bloquent les requêtes HTTP non sécurisées sur les sites HTTPS). src/app/shared/shared-share-modal/video-share.component.html 44,45 @@ -7026,7 +7026,7 @@ Use origin instance URL - Utiliser l'URL d'origine de l'instance + Utiliser l’URL d'origine de l’instance src/app/shared/shared-share-modal/video-share.component.html 180 @@ -7042,7 +7042,7 @@ Display privacy warning - Afficher l'avertissement de confidentialité + Afficher l’avertissement de confidentialité src/app/shared/shared-share-modal/video-share.component.html 196 @@ -7250,7 +7250,7 @@ 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). - Contient des informations personnelles qui pourraient être utilisées pour suivre, identifier, contacter ou se faire passer pour quelqu'un (par exemple, le nom, l'adresse, le numéro de téléphone, le courriel ou les détails de la carte de crédit). + Contient des informations personnelles qui pourraient être utilisées pour suivre, identifier, contacter ou se faire passer pour quelqu’un (par exemple, le nom, l’adresse, le numéro de téléphone, le courriel ou les détails de la carte de crédit). src/app/shared/shared-moderation/abuse.service.ts 155 @@ -7258,7 +7258,7 @@ Copyright - Droit d'auteur + Droit d’auteur src/app/shared/shared-moderation/abuse.service.ts 159 @@ -7270,7 +7270,7 @@ Infringes your copyright wrt. the regional laws with which the server must comply. - enfreint votre droit d'auteur ou les lois régionales auxquelles le serveur doit se conformer. + enfreint votre droit d’auteur ou les lois locales auxquelles le serveur doit se conformer. src/app/shared/shared-moderation/abuse.service.ts 160 @@ -7286,7 +7286,7 @@ Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server. - Tout ce qui n'est pas inclus dans ce qui précède et qui enfreint les conditions de service, le code de conduite ou les règles générales en vigueur sur le serveur. + Tout ce qui n’est pas inclus dans ce qui précède et qui enfreint les conditions de service, le code de conduite ou les règles générales en vigueur sur le serveur. src/app/shared/shared-moderation/abuse.service.ts 165 @@ -7522,7 +7522,7 @@ Please describe the reason... - Veuillez décrire la raison... + Veuillez décrire la raison… src/app/shared/shared-moderation/video-block.component.html 13 @@ -7594,7 +7594,7 @@ Username is required. - Le nom d'utilisateur est requis. + Le nom d’utilisateur est requis. src/app/shared/form-validators/user-validators.ts 12 @@ -7606,7 +7606,7 @@ Username must be at least 1 character long. - Votre nom d'utilisateur doit contenir au moins un caractère. + Votre nom d’utilisateur doit contenir au moins un caractère. src/app/shared/form-validators/user-validators.ts 13 @@ -7614,7 +7614,7 @@ Username cannot be more than 50 characters long. - Votre nom d'utilisateur ne peut pas contenir plus de 50 caractères. + Votre nom d’utilisateur ne peut pas contenir plus de 50 caractères. src/app/shared/form-validators/user-validators.ts 14 @@ -7622,7 +7622,7 @@ Username should be lowercase alphanumeric; dots and underscores are allowed. - Le nom d'utilisateur peut contenir des minuscules, des chiffres, des points et des tirets bas. + Le nom d’utilisateur peut contenir des minuscules, des chiffres, des points et des tirets bas. src/app/shared/form-validators/user-validators.ts 15 @@ -7718,7 +7718,7 @@ Password must be at least 6 characters long. - Le mot de passe doit être composé d'au moins 6 caractères. + Le mot de passe doit être composé d’au moins 6 caractères. src/app/shared/form-validators/user-validators.ts 70 @@ -7790,7 +7790,7 @@ Description must be at least 3 characters long. - La description doit être composée d'au moins 3 caractères. + La description doit être composée d’au moins 3 caractères. src/app/shared/form-validators/user-validators.ts 123 @@ -7822,7 +7822,7 @@ You must agree with the instance terms in order to register on it. - Vous devez être d'accord avec les conditions de l'instance pour pouvoir vous inscrire. + Vous devez être d’accord avec les conditions de l’instance pour pouvoir vous inscrire. src/app/shared/form-validators/user-validators.ts 131 @@ -7846,7 +7846,7 @@ Display name is required. - Le nom d'affichage est requis. + Le nom d’affichage est requis. src/app/shared/form-validators/user-validators.ts 153 @@ -7978,7 +7978,7 @@ Average frame rate - Fréquence d'images moyenne + Fréquence d’images moyenne src/app/shared/shared-video-miniature/video-download.component.ts 181 @@ -7994,7 +7994,7 @@ Sample rate - Fréquence d'échantillonnage + Fréquence d’échantillonnage src/app/shared/shared-video-miniature/video-download.component.ts 186 @@ -8110,7 +8110,7 @@ Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed? - Le renouvellement du jeton empêchera les clients précédemment configurés de récupérer le flux tant qu'ils n'auront pas utilisé le nouveau jeton. Poursuivre ? + Le renouvellement du jeton empêchera les clients précédemment configurés de récupérer le flux tant qu'ils n’auront pas utilisé le nouveau jeton. Poursuivre ? src/app/+my-account/my-account-applications/my-account-applications.component.ts 41 @@ -8142,7 +8142,7 @@ SUBSCRIPTION FEED - FLUX D'ABONNEMENT + FLUX D’ABONNEMENT src/app/+my-account/my-account-applications/my-account-applications.component.html 8 @@ -8490,7 +8490,7 @@ 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. - Court texte décrivant les moyens de soutien à disposition (plateforme de dons, médias...).<br /><br /> Quand vous mettrez en ligne une vidéo dans cette chaîne, son champ de support sera automatiquement rempli par celui-ci. + Court texte décrivant les moyens de soutien à disposition (plateforme de dons, médias…).<br /><br /> Quand vous mettrez en ligne une vidéo dans cette chaîne, son champ de support sera automatiquement rempli par celui-ci. src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html 77,78 @@ -8542,7 +8542,7 @@ Example: my_channel - Exemple : ma_chaîne + Exemple : ma_chaîne src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html 35 @@ -8622,7 +8622,7 @@ Support text must be at least 3 characters long. - Le texte de soutien doit être composé d'au moins 3 caractères. + Le texte de soutien doit être composé d’au moins 3 caractères. src/app/shared/form-validators/video-channel-validators.ts 49 @@ -8654,7 +8654,7 @@ Unread first - Non lu d'abord + Non lu d’abord src/app/+my-account/my-account-notifications/my-account-notifications.component.html 12 @@ -8774,7 +8774,7 @@ Filter... - Filtrage... + Filtrage… src/app/shared/shared-moderation/server-blocklist.component.html 23 @@ -8858,7 +8858,7 @@ Open instance in a new tab - Ouvrir l'instance dans une nouvelle fenêtre + Ouvrir l’instance dans une nouvelle fenêtre src/app/shared/shared-moderation/server-blocklist.component.html 46 @@ -9542,7 +9542,7 @@ Search... - Chercher... + Chercher… src/app/+admin/plugins/plugin-search/plugin-search.component.html 6 @@ -10819,7 +10819,7 @@ Comment: - Commentaire : + Commentaire : src/app/shared/shared-abuse-list/abuse-details.component.html 105 @@ -11019,7 +11019,7 @@ In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because: - En théorie, une personne ayant suffisamment de compétences techniques pourrait créer un script qui suit quelle IP télécharge quelle vidéo. En pratique, c'est beaucoup plus difficile car : + En théorie, une personne ayant suffisamment de compétences techniques pourrait créer un script qui suit quelle IP télécharge quelle vidéo. En pratique, c'est beaucoup plus difficile car : src/app/+about/about-peertube/about-peertube.component.html 88,90 @@ -11059,7 +11059,7 @@ The IP address is a vague information: usually, it regularly changes and can represent many persons or entities - L’adresse IP est une information vague : en général, elle change régulièrement et peut représenter de nombreuses personnes ou entités + L’adresse IP est une information vague : en général, elle change régulièrement et peut représenter de nombreuses personnes ou entités src/app/+about/about-peertube/about-peertube.component.html 114,115 @@ -11067,7 +11067,7 @@ 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 - Les pairs du Web ne sont pas accessibles publiquement : parce que nous utilisons le transport websocket, ce protocole est différent d'un tracker BitTorrent classique. Quand vous êtes dans un navigateur, vous envoyez un signal contenant votre adresse IP au tracker qui va choisir aléatoirement d'autres pairs à qui transmettre l'information. Voir ce document pour plus d'information + Les pairs du Web ne sont pas accessibles publiquement : parce que nous utilisons le transport websocket, ce protocole est différent d'un tracker BitTorrent classique. Quand vous êtes dans un navigateur, vous envoyez un signal contenant votre adresse IP au tracker qui va choisir aléatoirement d'autres pairs à qui transmettre l'information. Voir ce document pour plus d'information src/app/+about/about-peertube/about-peertube.component.html 118,122 @@ -11107,7 +11107,7 @@ 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. - Votre adresse IP est publique, donc chaque fois que vous consultez un site web, un certain nombre d’acteurs (en plus du site final) voient votre IP dans leurs journaux de connexion : FAI/routeurs/trackers/CDN et plus encore. PeerTube est transparent à ce sujet : nous vous avertissons que si vous voulez garder votre IP privée, vous devez utiliser un VPN ou le navigateur Tor. Penser que supprimer le P2P de PeerTube vous rendra l’anonymat n’a pas de sens. + Votre adresse IP est publique, donc chaque fois que vous consultez un site web, un certain nombre d’acteurs (en plus du site final) voient votre IP dans leurs journaux de connexion : FAI/routeurs/trackers/CDN et plus encore. PeerTube est transparent à ce sujet : nous vous avertissons que si vous voulez garder votre IP privée, vous devez utiliser un VPN ou le navigateur Tor. Penser que supprimer le P2P de PeerTube vous rendra l’anonymat n’a pas de sens. src/app/+about/about-peertube/about-peertube.component.html 141,145 @@ -11123,7 +11123,7 @@ 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 veut offrir les meilleures contre-mesures possibles, pour vous donner plus de choix et rendre les attaques moins probables. Voici ce que nous avons mis en place jusqu’à présent : + PeerTube veut offrir les meilleures contre-mesures possibles, pour vous donner plus de choix et rendre les attaques moins probables. Voici ce que nous avons mis en place jusqu’à présent : src/app/+about/about-peertube/about-peertube.component.html 150,152 @@ -11799,7 +11799,7 @@ This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? - Cette vidéo n'est pas disponible sur cette instance. Voulez-vous être redirigé vers l'instance d'origine : <a href=""></a> ? + Cette vidéo n'est pas disponible sur cette instance. Voulez-vous être redirigé vers l'instance d'origine : <a href=""></a> ? src/app/+videos/+video-watch/video-watch.component.ts 415 @@ -11879,7 +11879,7 @@ Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) - Sauter à un pourcentage de la vidéo : 0 est 0 % et 9 est 90 % (nécessite le focus sur le lecteur) + Sauter à un pourcentage de la vidéo : 0 est 0 % et 9 est 90 % (nécessite le focus sur le lecteur) src/app/+videos/+video-watch/video-watch.component.ts 924 @@ -12123,7 +12123,7 @@ Friendly Reminder: - Rappel : + Rappel : src/app/+videos/+video-watch/video-watch.component.html 299 @@ -12283,7 +12283,7 @@ Add comment... - Ajouter un commentaire... + Ajouter un commentaire… src/app/+videos/+video-watch/comment/video-comment-add.component.html 6 @@ -12299,7 +12299,7 @@ Markdown compatible that supports: - Compatible Markdown qui supporte : + Compatible Markdown qui supporte : src/app/+videos/+video-watch/comment/video-comment-add.component.html 15 @@ -12687,7 +12687,7 @@ You can import any URL supported by youtube-dl or URL 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. - Vous pouvez importer toute URL gérée par youtube-dl ou pointant sur un fichier audio/vidéo. Vous devez vous assurer d'avoir les droits de diffusion sur cette vidéo, sans quoi vous et votre instance risqueriez des poursuites juridiques. + Vous pouvez importer toute URL gérée par youtube-dl ou pointant sur un fichier audio/vidéo. Vous devez vous assurer d’avoir les droits de diffusion sur cette vidéo, sans quoi vous et votre instance risqueriez des poursuites juridiques. src/app/+videos/+video-edit/video-add-components/video-import-url.component.html 11,14 @@ -12799,7 +12799,7 @@ Your video quota is exceeded with this video ( video size: , used: , quota: ) - Votre quota vidéo est dépassé avec cette vidéo ( taille de la vidéo : , utilisé : , quota : ) + Votre quota vidéo 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.ts 289,290 @@ -13742,7 +13742,7 @@ Short text to tell people how they can support you (membership platform...). - Un court texte pour dire aux gens comment ils peuvent vous soutenir (plateforme d'adhésion...). + Un court texte pour dire aux gens comment ils peuvent vous soutenir (plateforme d'adhésion…). src/app/+videos/+video-edit/shared/video-edit.component.html 280,281 @@ -13934,7 +13934,7 @@ Block reason: - Raison du blocage : + Raison du blocage : src/app/+admin/moderation/video-block-list/video-block-list.component.html 104 @@ -14046,7 +14046,7 @@ Loading... - Chargement... + Chargement… src/app/+admin/system/logs/logs.component.html 38 @@ -14206,7 +14206,7 @@ You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below. - Vous avez activé l'inscription : nous avons automatiquement activé la case à cocher "Bloquer automatiquement les nouvelles vidéos" de la section "Vidéos" juste en dessous. + Vous avez activé l'inscription : nous avons automatiquement activé la case à cocher « Bloquer automatiquement les nouvelles vidéos » de la section « Vidéos » immédiatement en dessous. src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts 473 @@ -14902,7 +14902,7 @@ 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/videos/watch/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. - Si votre instance est explicitement autorisée par Twitter, un lecteur vidéo sera intégré au fil Twitter sur votre partage de vidéo PeerTube. Si l'instance ne l'est pas, nous utilisons une fiche lien image qui redirige vers votre instance PeerTube. Cochez cette case, enregistrez la configuration et testez avec l'URL d'une vidéo de votre instance (https://exemple.com/videos/regarder/blabla) on https://cards-dev.twitter.com/validator pour voir si votre instance est autorisée. + Si votre instance est explicitement autorisée par Twitter, un lecteur vidéo sera intégré au fil Twitter sur votre partage de vidéo PeerTube. Si l’instance ne l’est pas, nous utilisons une fiche lien image qui redirige vers votre instance PeerTube. Cochez cette case, enregistrez la configuration et testez avec l’URL d’une vidéo de votre instance (https://exemple.com/videos/regarder/blabla) on https://cards-dev.twitter.com/validator pour voir si votre instance est autorisée. src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 682,687 @@ -15066,7 +15066,7 @@ 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 - Nécessite ffmpeg >= 4.1Génère des listes de lecture HLS et des fichiers MP4 fragmentés, ce qui permet une meilleure lecture qu'avec le WebTorrent classique :Le changement de résolution se fait plus en douceurLecture plus rapide, surtout pour les vidéos longuesLecture plus stable (moins de bogues/charge infinie)Si vous avez également activé la prise en charge de WebTorrent, le stockage des vidéos sera multiplié par 2 + Nécessite ffmpeg >= 4.1Génère des listes de lecture HLS et des fichiers MP4 fragmentés, ce qui permet une meilleure lecture qu'avec le WebTorrent classique :Le changement de résolution se fait plus en douceurLecture plus rapide, surtout pour les vidéos longuesLecture plus stable (moins de bogues/charge infinie)Si vous avez également activé la prise en charge de WebTorrent, le stockage des vidéos sera multiplié par 2 src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 805,814 @@ -15310,7 +15310,7 @@ Write JavaScript code directly.Example: console.log('my instance is amazing'); - Écrivez votre code JavaScript directement.Exemple : console.log('mon instance est formidable'); + Écrivez votre code JavaScript directement.Exemple : console.log('mon instance est formidable'); src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 1077 @@ -15318,7 +15318,7 @@ Write CSS code directly. Example: #custom-css color: red; Prepend with #custom-css to override styles. Example: #custom-css .logged-in-email color: red; - Écrivez directement le code CSS. Exemple : #custom-css couleur : rouge ; Précisez avec #custom-css pour passer outre les styles. Exemple : #custom-css .logged-in-email color : red; + Écrivez directement le code CSS. Exemple : #custom-css couleur : rouge ; Précisez avec #custom-css pour passer outre les styles. Exemple : #custom-css .logged-in-email color : red; src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 1096,1107 diff --git a/client/src/locale/angular.gl-ES.xlf b/client/src/locale/angular.gl-ES.xlf index 8d1e2d26d..f52c2d9ea 100644 --- a/client/src/locale/angular.gl-ES.xlf +++ b/client/src/locale/angular.gl-ES.xlf @@ -5,8 +5,8 @@ Close Pechar - - node_modules/src/alert/alert.ts79 + node_modules/src/alert/alert.ts79 + Slide of Páxina de @@ -27,8 +27,8 @@ Next Seguinte - - node_modules/src/carousel/carousel.ts197 + node_modules/src/carousel/carousel.ts197 + Select month Elexir mes @@ -80,98 +80,98 @@ «« «« - - node_modules/src/pagination/pagination.ts247 + node_modules/src/pagination/pagination.ts247 + « « - - node_modules/src/pagination/pagination.ts266 + node_modules/src/pagination/pagination.ts266 + » » - - node_modules/src/pagination/pagination.ts285 + node_modules/src/pagination/pagination.ts285 + »» »» - - node_modules/src/pagination/pagination.ts305 + node_modules/src/pagination/pagination.ts305 + First Primeiro - - node_modules/src/pagination/pagination.ts320 + node_modules/src/pagination/pagination.ts320 + Previous Anterior - - node_modules/src/pagination/pagination.ts335 + node_modules/src/pagination/pagination.ts335 + Next Seguinte - - node_modules/src/pagination/pagination.ts347 + node_modules/src/pagination/pagination.ts347 + Last Último - - node_modules/src/pagination/pagination.ts357 + node_modules/src/pagination/pagination.ts357 + - - node_modules/src/progressbar/progressbar.ts60 + node_modules/src/progressbar/progressbar.ts60 + HH HH - - node_modules/src/timepicker/timepicker.ts133 + node_modules/src/timepicker/timepicker.ts133 + Hours Horas - - node_modules/src/timepicker/timepicker.ts155 + node_modules/src/timepicker/timepicker.ts155 + MM MM - - node_modules/src/timepicker/timepicker.ts173 + node_modules/src/timepicker/timepicker.ts173 + Minutes Minutos - - node_modules/src/timepicker/timepicker.ts188 + node_modules/src/timepicker/timepicker.ts188 + Increment hours Aumentar horas - - node_modules/src/timepicker/timepicker.ts201 + node_modules/src/timepicker/timepicker.ts201 + Decrement hours Diminuír horas - - node_modules/src/timepicker/timepicker.ts223 + node_modules/src/timepicker/timepicker.ts223 + Increment minutes Aumentar minutos - - node_modules/src/timepicker/timepicker.ts243 + node_modules/src/timepicker/timepicker.ts243 + Decrement minutes Diminuír minutos - - node_modules/src/timepicker/timepicker.ts264 + node_modules/src/timepicker/timepicker.ts264 + SS SS - - node_modules/src/timepicker/timepicker.ts283 + node_modules/src/timepicker/timepicker.ts283 + Seconds Segundos - - node_modules/src/timepicker/timepicker.ts295 + node_modules/src/timepicker/timepicker.ts295 + Increment seconds Aumentar segundos @@ -207,8 +207,8 @@ Close Pechar - - node_modules/src/toast/toast.ts108 + node_modules/src/toast/toast.ts108 + Close the left menu Pechar o menú da esquerda @@ -316,8 +316,8 @@ src/app/shared/shared-main/users/user-notifications.component.html150 - mentioned you on video - mencionoute en vídeo + mentioned you on video + mencionoute en vídeo src/app/shared/shared-main/users/user-notifications.component.html 164 @@ -334,16 +334,16 @@ src/app/shared/shared-main/users/user-notifications.component.html189 - A new version of the plugin/theme is available: - Unha nova versión do complemento/decorado está dispoñible: + A new version of the plugin/theme is available: + Unha nova versión do complemento/decorado está dispoñible: src/app/shared/shared-main/users/user-notifications.component.html 198,199 - A new version of PeerTube is available: - Nova versión de PeerTube dispoñible: + A new version of PeerTube is available: + Nova versión de PeerTube dispoñible: src/app/shared/shared-main/users/user-notifications.component.html 206,207 @@ -367,13 +367,13 @@ Account muted Conta acalada - - src/app/+admin/overview/videos/video-list.component.html79 + src/app/+admin/overview/videos/video-list.component.html79 + Server muted Servidor acalado - - src/app/+admin/overview/videos/video-list.component.html80 + src/app/+admin/overview/videos/video-list.component.html80 + Save to Gardar en @@ -434,9 +434,8 @@ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71 - Short text to tell people how they can support the channel (membership platform...).<br /><br /> - When a video is uploaded in this channel, the video support field will be automatically filled by this text. - Texto curto para dicirlle á audiencia de que xeito poden apoiar a canle (plataforma de membresía...).<br /><br /> Cando se sube un vídeo a esta canle, o campo de apoio completarase automáticamente con este texto. + Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text. + Texto curto para dicirlle á audiencia de que xeito poden apoiar a canle (plataforma de membresía...).<br /><br /> Cando se sube un vídeo a esta canle, o campo de apoio completarase automáticamente con este texto. src/app/+manage/video-channel-edit/video-channel-edit.component.html 67,68 @@ -510,9 +509,11 @@ Reason... Razón... - - src/app/shared/shared-moderation/user-ban-modal.component.html16 - Mute to also hide videos/commentsMute to also hide videos/comments + src/app/shared/shared-moderation/user-ban-modal.component.html16 + + + Mute to also hide videos/comments + Acalar para agochar tamén vídeos/comentarios src/app/shared/shared-moderation/user-ban-modal.component.html 27 @@ -594,9 +595,9 @@ Blocked Bloqueado - - - src/app/+admin/overview/videos/video-list.component.html82src/app/shared/shared-video-miniature/video-miniature.component.html59 + src/app/+admin/overview/videos/video-list.component.html82 + src/app/shared/shared-video-miniature/video-miniature.component.html59 + Are you sure you want to delete these videos? Tes a certeza de querer eliminar estos vídeos? @@ -655,8 +656,8 @@ Sensible - - src/app/shared/shared-video-miniature/video-miniature.component.html63 + src/app/shared/shared-video-miniature/video-miniature.component.html63 + @@ -718,15 +719,16 @@ Edit Editar - - - - - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html11src/app/+admin/overview/users/user-edit/user-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.html189src/app/+videos/+video-edit/shared/video-edit.component.html310src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + src/app/+admin/overview/users/user-edit/user-edit.component.html11 + src/app/+admin/overview/users/user-edit/user-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.html189 + src/app/+videos/+video-edit/shared/video-edit.component.html310 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + Truncated preview Vista previa recortada @@ -738,8 +740,8 @@ src/app/shared/shared-forms/markdown-textarea.component.html20 - <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: - <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible que soporta: + <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: + <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible que soporta: src/app/shared/shared-main/misc/help.component.ts75 @@ -773,33 +775,33 @@ The live stream will be automatically terminated. A retransmisión en directo rematará automáticamente. - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts228 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts228 + will be duplicated by your instance. vaise duplicar na túa instancia. - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts249 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts249 + Do you really want to remove "" files? Queres eliminar "" ficheiros? - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + Remove "" files Eliminar "" ficheiros - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts274 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts274 + Removed files of . Eliminados os ficheiros de . - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts280 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts280 + Transcoding jobs created for . Traballos de transcodificación creados para . - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts292 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts292 + Using a syndication feed Utilizando unha fonte sindicada @@ -889,11 +891,11 @@ Video quota Cota de vídeo - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html151src/app/+admin/overview/users/user-edit/user-edit.component.html151src/app/+admin/overview/users/user-list/user-list.component.ts128src/app/shared/shared-instance/instance-features-table.component.html47 + src/app/+admin/overview/users/user-edit/user-edit.component.html151 + src/app/+admin/overview/users/user-edit/user-edit.component.html151 + src/app/+admin/overview/users/user-list/user-list.component.ts128 + src/app/shared/shared-instance/instance-features-table.component.html47 + Unlimited ( per day) Sen límite ( diario) @@ -935,8 +937,10 @@ Loading instance statistics... Cargando estatísticas da instancia... src/app/shared/shared-instance/instance-statistics.component.html1 - - By users on this instanceBy users on this instance + + + By users on this instance + Por usuarias nesta instancia src/app/shared/shared-instance/instance-statistics.component.html 4 @@ -945,9 +949,8 @@ Local Local - - - src/app/shared/shared-video-miniature/video-filters.model.ts126 + src/app/shared/shared-video-miniature/video-filters.model.ts126 + users usuarias @@ -958,14 +961,18 @@ vídeos src/app/shared/shared-instance/instance-statistics.component.html21 src/app/shared/shared-instance/instance-statistics.component.html65 - - viewsviews + + + views + visualizacións src/app/shared/shared-instance/instance-statistics.component.html 31 - - commentscomments + + + comments + comentarios src/app/shared/shared-instance/instance-statistics.component.html 41 @@ -974,36 +981,37 @@ src/app/shared/shared-instance/instance-statistics.component.html 75 - - hosted videohosted video + + + hosted video + vídeo hospedado src/app/shared/shared-instance/instance-statistics.component.html 51 - - In this instance federationIn this instance federation + + + In this instance federation + Na federación desta instancia src/app/shared/shared-instance/instance-statistics.component.html 58 - - - Following Seguindo - - - - src/app/+admin/admin.component.ts75src/app/+admin/follows/following-list/following-list.component.html31src/app/+admin/follows/follows.routes.ts26 + src/app/+admin/admin.component.ts75 + src/app/+admin/follows/following-list/following-list.component.html31 + src/app/+admin/follows/follows.routes.ts26 + Followers Seguidoras - - - - src/app/+admin/admin.component.ts80src/app/+admin/follows/follows.routes.ts35src/app/+my-library/my-library.component.ts72 + src/app/+admin/admin.component.ts80 + src/app/+admin/follows/follows.routes.ts35 + src/app/+my-library/my-library.component.ts72 + followers seguidoras @@ -1042,10 +1050,8 @@ A banned user will no longer be able to login. Unha usuaria vetada non pode acceder. - - src/app/shared/shared-moderation/user-ban-modal.component.html9 - - + src/app/shared/shared-moderation/user-ban-modal.component.html9 + Block video "" Bloquear vídeo "" @@ -1142,13 +1148,13 @@ 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. - Esta instancia ten o rexistro aberto. Non obstante, pon tino en comprobar TermosOs Termos antes de crear unha conta. Podes atopar outra instancia máis acorde ás túas necesidades en: 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. + Esta instancia ten o rexistro aberto. Non obstante, pon tino en comprobar TermosOs Termos antes de crear unha conta. Podes atopar outra instancia máis acorde ás túas necesidades en: 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. - Actualmente esta instancia non permite abrir unha conta, podes ler os Termos para saber máis ou atopar outra instancia co rexistro aberto e poder subir alí os teus vídeos. Atopa a túa entre varias opcións en: 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. + Actualmente esta instancia non permite abrir unha conta, podes ler os Termos para saber máis ou atopar outra instancia co rexistro aberto e poder subir alí os teus vídeos. Atopa a túa entre varias opcións en: https://joinpeertube.org/instances. src/app/+login/login.component.html69 @@ -1216,23 +1222,22 @@ src/app/+login/login.component.html110 - 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. Enviaremos un email con instruccións para o restablecemento a . A ligazón caduca nunha hora. src/app/+login/login.component.ts122 Email Correo electrónico - - - - - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html105src/app/+admin/overview/users/user-edit/user-edit.component.html105src/app/+admin/overview/users/user-list/user-list.component.ts127src/app/+login/login.component.html115src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html6src/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/overview/users/user-edit/user-edit.component.html105 + src/app/+admin/overview/users/user-edit/user-edit.component.html105 + src/app/+admin/overview/users/user-list/user-list.component.ts127 + src/app/+login/login.component.html115 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html6 + 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 Enderezo de correo electrónico @@ -1256,8 +1261,8 @@ The link will expire within 1 hour. src/app/+search/search.component.html8 - for - para + for + para src/app/+search/search.component.html 10 @@ -1605,8 +1610,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html269 - ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server - ⚠️ Se está activo, recomendamos utilizar un proxy HTTP para o acceso privado a URL desde o teu servidor PeerTube + ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server + ⚠️ Se está activo, recomendamos utilizar un proxy HTTP para o acceso privado a URL desde o teu servidor PeerTube src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 272 @@ -1670,18 +1675,18 @@ The link will expire within 1 hour. 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: + 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 + Uploading an avatar + Subindo un avatar src/app/modal/account-setup-warning-modal.component.html15 - Writing a description - Escribindo unha descrición + Writing a description + Escribindo unha descrición src/app/modal/account-setup-warning-modal.component.html16 @@ -2035,20 +2040,26 @@ The link will expire within 1 hour. Add this caption Engadir este subtítulo src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html42 - - Edit captionEdit caption + + + Edit caption + Editar lenda src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html 5 - - CaptionCaption + + + Caption + Lenda src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html 10 - - Edit this captionEdit this caption + + + Edit this caption + Editar esta lenda src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html 31 @@ -2118,8 +2129,8 @@ The link will expire within 1 hour. 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 + Markdown compatible that also supports custom PeerTube HTML tags + Compatible con markdown e con soporte tamén para etiquetas HTML personalizadas de PeerTube src/app/shared/shared-custom-markup/custom-markup-help.component.html 2 @@ -2165,12 +2176,12 @@ The link will expire within 1 hour. Advanced filters Filtros avanzados - - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts30src/app/+admin/overview/comments/video-comment-list.component.ts47src/app/+admin/overview/users/user-list/user-list.component.ts41src/app/+my-library/my-videos/my-videos.component.ts92src/app/shared/shared-abuse-list/abuse-list-table.component.ts39 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts30 + src/app/+admin/overview/comments/video-comment-list.component.ts47 + src/app/+admin/overview/users/user-list/user-list.component.ts41 + src/app/+my-library/my-videos/my-videos.component.ts92 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts39 + No items found Sen resultados @@ -2194,8 +2205,8 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/shared/video-edit.component.html48 - Choose the appropriate licence for your work. - Elixe a licenza axeitada para o teu traballo. + Choose the appropriate licence for your work. + Elixe a licenza axeitada para o teu traballo. src/app/+videos/+video-edit/shared/video-edit.component.html85 @@ -2271,27 +2282,31 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/shared/video-edit.component.html183 - Already uploaded ✔ + Already uploaded ✔ Xa subido ✔ src/app/+videos/+video-edit/shared/video-edit.component.html187 Will be created on update Será creado tras a subida - - src/app/+videos/+video-edit/shared/video-edit.component.html196 + src/app/+videos/+video-edit/shared/video-edit.component.html196 + Cancel create Cancelar a creación - - src/app/+videos/+video-edit/shared/video-edit.component.html198 - Will be edited on updateWill be edited on update + src/app/+videos/+video-edit/shared/video-edit.component.html198 + + + Will be edited on update + Vaise editar ao actualizar src/app/+videos/+video-edit/shared/video-edit.component.html 204 - - Cancel editionCancel edition + + + Cancel edition + Desbotar edición src/app/+videos/+video-edit/shared/video-edit.component.html 206 @@ -2300,46 +2315,46 @@ The link will expire within 1 hour. Will be deleted on update Será borrado tras actualizar - - src/app/+videos/+video-edit/shared/video-edit.component.html212 + src/app/+videos/+video-edit/shared/video-edit.component.html212 + Cancel deletion Deter a eliminación - - src/app/+videos/+video-edit/shared/video-edit.component.html214 + src/app/+videos/+video-edit/shared/video-edit.component.html214 + No captions for now. Sen subtítulos ata o momento. - - src/app/+videos/+video-edit/shared/video-edit.component.html226 + src/app/+videos/+video-edit/shared/video-edit.component.html226 + Live settings Axustes do Directo - - src/app/+videos/+video-edit/shared/video-edit.component.html235 + src/app/+videos/+video-edit/shared/video-edit.component.html235 + ⚠️ If you enable this option, your live will be terminated if you exceed your video quota ⚠️ Se activas esta opción, o teu directo rematará se excediches a túa cota de vídeo - - src/app/+videos/+video-edit/shared/video-edit.component.html288 + src/app/+videos/+video-edit/shared/video-edit.component.html288 + Automatically publish a replay when your live ends Publicar automáticamente unha repetición cando remata o directo - - src/app/+videos/+video-edit/shared/video-edit.component.html284 + src/app/+videos/+video-edit/shared/video-edit.component.html284 + Video preview Vista previa - - src/app/+videos/+video-edit/shared/video-edit.component.html307 + src/app/+videos/+video-edit/shared/video-edit.component.html307 + Support Axuda - - - src/app/+video-channels/video-channels.component.html17src/app/+videos/+video-edit/shared/video-edit.component.html316 + src/app/+video-channels/video-channels.component.html17 + src/app/+videos/+video-edit/shared/video-edit.component.html316 + View account Ver conta @@ -2373,44 +2388,44 @@ The link will expire within 1 hour. Short text to tell people how they can support you (membership platform...). Texto curto para dicirlle á xente como pode axudarche (plataformas de doazón...). - - src/app/+videos/+video-edit/shared/video-edit.component.html319 + src/app/+videos/+video-edit/shared/video-edit.component.html319 + Original publication date Data da publicación orixinal - - src/app/+videos/+video-edit/shared/video-edit.component.html336 + src/app/+videos/+video-edit/shared/video-edit.component.html336 + This is the date when the content was originally published (e.g. the release date for a film) Esta é a data na que foi publicado orixinalmente o contido (ex. a data de lanzamento da película) - - src/app/+videos/+video-edit/shared/video-edit.component.html339 + src/app/+videos/+video-edit/shared/video-edit.component.html339 + Plugin settings Axustes do Plugin - - src/app/+videos/+video-edit/shared/video-edit.component.html370 + src/app/+videos/+video-edit/shared/video-edit.component.html370 + Other Outro - - - src/app/+videos/+video-edit/shared/video-edit.component.ts190src/app/shared/shared-forms/select/select-languages.component.ts50 + src/app/+videos/+video-edit/shared/video-edit.component.ts190 + src/app/shared/shared-forms/select/select-languages.component.ts50 + Enable video comments Activar comentarios ao vídeo - - src/app/+videos/+video-edit/shared/video-edit.component.html357 + src/app/+videos/+video-edit/shared/video-edit.component.html357 + Enable download Activar descarga - - src/app/+videos/+video-edit/shared/video-edit.component.html362 + src/app/+videos/+video-edit/shared/video-edit.component.html362 + Advanced settings Axustes avanzados - - src/app/+videos/+video-edit/shared/video-edit.component.html300 + src/app/+videos/+video-edit/shared/video-edit.component.html300 + URL URL @@ -2445,13 +2460,13 @@ The link will expire within 1 hour. Scheduled Programado - - src/app/+videos/+video-edit/shared/video-edit.component.ts209 + src/app/+videos/+video-edit/shared/video-edit.component.ts209 + Hide the video until a specific date Agochar o vídeo ata unha data concreta - - src/app/+videos/+video-edit/shared/video-edit.component.ts210 + src/app/+videos/+video-edit/shared/video-edit.component.ts210 + Normal live Directo normal @@ -2497,9 +2512,9 @@ The link will expire within 1 hour. Total video quota Cota total de vídeo - - - src/app/+admin/overview/users/user-list/user-list.component.html131src/app/shared/shared-main/users/user-quota.component.html3 + src/app/+admin/overview/users/user-list/user-list.component.html131 + src/app/shared/shared-main/users/user-quota.component.html3 + Congratulations! Your video is now available in your private library. Parabéns! O vídeo xa está dispoñible na túa biblioteca privada. @@ -2799,9 +2814,10 @@ The link will expire within 1 hour. Muted Acalado - - - src/app/+admin/overview/users/user-list/user-list.component.html104src/app/shared/shared-moderation/account-block-badges.component.html1src/app/shared/shared-share-modal/video-share.component.html192 + src/app/+admin/overview/users/user-list/user-list.component.html104 + src/app/shared/shared-moderation/account-block-badges.component.html1 + src/app/shared/shared-share-modal/video-share.component.html192 + Loop Bucle @@ -2848,13 +2864,13 @@ The link will expire within 1 hour. This video is blocked. Vídeo bloqueado. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html38 + src/app/+videos/+video-watch/shared/information/video-alert.component.html38 + Published Publicado - - src/app/+videos/+video-watch/video-watch.component.html27 + src/app/+videos/+video-watch/video-watch.component.html27 + SUPPORT APOIAR @@ -2888,13 +2904,13 @@ The link will expire within 1 hour. Support options for this video Xeitos de axudar a este vídeo - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + By Por - - src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+videos/+video-watch/video-watch.component.html67 + Subscribe Subscríbete @@ -2966,9 +2982,9 @@ The link will expire within 1 hour. NSFW NSFW - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html56src/app/+admin/overview/videos/video-list.component.html75 + src/app/+admin/moderation/video-block-list/video-block-list.component.html56 + src/app/+admin/overview/videos/video-list.component.html75 + Get more information Máis información @@ -3004,10 +3020,10 @@ The link will expire within 1 hour. The video is being transcoded, it may not work properly. Estase transcodificando o vídeo, podería non funcionar ben. src/app/+videos/+video-watch/shared/information/video-alert.component.html13 - - The video is being edited, it may not work properly. - The video is being edited, it may not work properly. - + + + The video is being edited, it may not work properly. + Este vídeo está a ser editado, podería non verse ben. src/app/+videos/+video-watch/shared/information/video-alert.component.html 17,19 @@ -3016,23 +3032,23 @@ The link will expire within 1 hour. The video is being moved to an external server, it may not work properly. Moveuse o vídeo a un servidor externo, podería non reproducirse correctamente. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html21 + src/app/+videos/+video-watch/shared/information/video-alert.component.html21 + This video will be published on . O vídeo vai ser publicado o . - - src/app/+videos/+video-watch/shared/information/video-alert.component.html25 + src/app/+videos/+video-watch/shared/information/video-alert.component.html25 + This live has not started yet. Aínda non comezou este directo. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html29 + src/app/+videos/+video-watch/shared/information/video-alert.component.html29 + This live has ended. O directo xa rematou. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html33 + src/app/+videos/+video-watch/shared/information/video-alert.component.html33 + SORT BY ORDE POR @@ -3189,8 +3205,8 @@ The link will expire within 1 hour. Video redundancies Redundancias do vídeo - - src/app/+admin/admin.component.ts85 + src/app/+admin/admin.component.ts85 + 1 host (without "http://") per line 1 host (sen "http://") á vez @@ -3409,12 +3425,12 @@ The link will expire within 1 hour. Username Nome de usuaria - - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html83src/app/+admin/overview/users/user-edit/user-edit.component.html83src/app/+admin/overview/users/user-list/user-list.component.ts125src/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/overview/users/user-edit/user-edit.component.html83 + src/app/+admin/overview/users/user-edit/user-edit.component.html83 + src/app/+admin/overview/users/user-list/user-list.component.ts125 + 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 ex. ugio_ben @@ -3442,10 +3458,10 @@ The link will expire within 1 hour. Role Rol - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html136src/app/+admin/overview/users/user-edit/user-edit.component.html136src/app/+admin/overview/users/user-list/user-list.component.ts126 + src/app/+admin/overview/users/user-edit/user-edit.component.html136 + src/app/+admin/overview/users/user-edit/user-edit.component.html136 + src/app/+admin/overview/users/user-list/user-list.component.ts126 + Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . Recodificación activada. A cota de vídeo só ten en conta o tamaño orixinal do vídeo. Como moito, esta usuaria podería subir ~ . @@ -3462,10 +3478,10 @@ The link will expire within 1 hour. Auth plugin Complemento Auth - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html188src/app/+admin/overview/users/user-edit/user-edit.component.html188src/app/+admin/overview/users/user-list/user-list.component.ts135 + src/app/+admin/overview/users/user-edit/user-edit.component.html188 + src/app/+admin/overview/users/user-edit/user-edit.component.html188 + src/app/+admin/overview/users/user-list/user-list.component.ts135 + None (local authentication) Ningún (autenticación local) @@ -3514,25 +3530,25 @@ The link will expire within 1 hour. Batch actions Accións en grupo - - - - src/app/+admin/overview/comments/video-comment-list.component.html22src/app/+admin/overview/users/user-list/user-list.component.html18src/app/+admin/overview/videos/video-list.component.html18 + src/app/+admin/overview/comments/video-comment-list.component.html22 + src/app/+admin/overview/users/user-list/user-list.component.html18 + src/app/+admin/overview/videos/video-list.component.html18 + The user was banned Esta usuaria foi bloqueada - - src/app/+admin/overview/users/user-list/user-list.component.html109 + src/app/+admin/overview/users/user-list/user-list.component.html109 + Open account in a new tab Abrir conta nunha nova lapela - - - - - - - src/app/+admin/overview/comments/video-comment-list.component.html69src/app/+admin/overview/users/user-list/user-list.component.html94src/app/+my-library/my-ownership/my-ownership.component.html38src/app/shared/shared-abuse-list/abuse-list-table.component.html44src/app/shared/shared-moderation/account-blocklist.component.html34src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/+admin/overview/comments/video-comment-list.component.html69 + src/app/+admin/overview/users/user-list/user-list.component.html94 + src/app/+my-library/my-ownership/my-ownership.component.html38 + src/app/shared/shared-abuse-list/abuse-list-table.component.html44 + src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/shared/shared-moderation/account-blocklist.component.html34 + Deleted account Conta eliminada @@ -3541,28 +3557,28 @@ The link will expire within 1 hour. User's email must be verified to login O email da usuaria debe ser verificado para entrar - - src/app/+admin/overview/users/user-list/user-list.component.html120 + src/app/+admin/overview/users/user-list/user-list.component.html120 + User's email is verified / User can login without email verification Email da usuaria verificado / A usuaria pode acceder sen verificar o email - - src/app/+admin/overview/users/user-list/user-list.component.html124 + src/app/+admin/overview/users/user-list/user-list.component.html124 + Total daily video quota Cota diaria total de vídeo - - src/app/+admin/overview/users/user-list/user-list.component.html141 + src/app/+admin/overview/users/user-list/user-list.component.html141 + Ban reason: Razón do bloqueo: - - src/app/+admin/overview/users/user-list/user-list.component.html163 + src/app/+admin/overview/users/user-list/user-list.component.html163 + Banned users Usuarias bloqueadas - - src/app/+admin/overview/users/user-list/user-list.component.ts45 + src/app/+admin/overview/users/user-list/user-list.component.ts45 + Showing to of users Mostrando a de usuarias @@ -3571,26 +3587,26 @@ The link will expire within 1 hour. Moderation Moderación - - - - src/app/+admin/admin.component.ts95src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts70src/app/+my-account/my-account.component.ts28 + src/app/+admin/admin.component.ts95 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts70 + src/app/+my-account/my-account.component.ts28 + Video blocks Bloqueo de vídeos - - - src/app/+admin/admin.component.ts109src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + src/app/+admin/admin.component.ts109 + src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + Muted accounts Contas acaladas - - - - - - - src/app/+admin/admin.component.ts117src/app/+admin/moderation/moderation.routes.ts90src/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.ts117 + src/app/+admin/moderation/moderation.routes.ts90 + 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 Servidores acalados @@ -3666,30 +3682,30 @@ The link will expire within 1 hour. Date Data - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html29src/app/+admin/overview/comments/video-comment-list.component.html46 + src/app/+admin/moderation/video-block-list/video-block-list.component.html29 + src/app/+admin/overview/comments/video-comment-list.component.html46 + Select this row Escoller esta fila - - - - src/app/+admin/overview/comments/video-comment-list.component.html54src/app/+admin/overview/users/user-list/user-list.component.html79src/app/+admin/overview/videos/video-list.component.html51 + src/app/+admin/overview/comments/video-comment-list.component.html54 + src/app/+admin/overview/users/user-list/user-list.component.html79 + src/app/+admin/overview/videos/video-list.component.html51 + See full comment Ver comentario completo - - src/app/+admin/overview/comments/video-comment-list.component.html58 + src/app/+admin/overview/comments/video-comment-list.component.html58 + Actions Accións - - - - - - src/app/+admin/follows/followers-list/followers-list.component.html23src/app/+admin/moderation/video-block-list/video-block-list.component.html43src/app/+admin/overview/comments/video-comment-list.component.html64src/app/+my-library/my-ownership/my-ownership.component.html18src/app/shared/shared-abuse-list/abuse-list-table.component.html39 + src/app/+admin/follows/followers-list/followers-list.component.html23 + src/app/+admin/moderation/video-block-list/video-block-list.component.html43 + src/app/+admin/overview/comments/video-comment-list.component.html64 + src/app/+my-library/my-ownership/my-ownership.component.html18 + src/app/shared/shared-abuse-list/abuse-list-table.component.html39 + Follower Seguidora @@ -3701,28 +3717,28 @@ The link will expire within 1 hour. Commented video Vídeo comentado - - src/app/+admin/overview/comments/video-comment-list.component.html81 + src/app/+admin/overview/comments/video-comment-list.component.html81 + No comments found matching current filters. Sen comentarios que cumpran cos filtros actuais. - - src/app/+admin/overview/comments/video-comment-list.component.html106 + src/app/+admin/overview/comments/video-comment-list.component.html106 + No comments found. Non hai comentarios. - - src/app/+admin/overview/comments/video-comment-list.component.html107 + src/app/+admin/overview/comments/video-comment-list.component.html107 + Local comments Comentarios locais - - src/app/+admin/overview/comments/video-comment-list.component.ts51 + src/app/+admin/overview/comments/video-comment-list.component.ts51 + Remote comments Comentarios remotos - - src/app/+admin/overview/comments/video-comment-list.component.ts55 + src/app/+admin/overview/comments/video-comment-list.component.ts55 + No abuses found matching current filters. Non se atoparon abusos concordantes cos filtros establecidos. @@ -3791,11 +3807,11 @@ The link will expire within 1 hour. Reports Denuncias - - - - - src/app/+admin/admin.component.ts101src/app/+admin/moderation/abuse-list/abuse-list.component.html3src/app/+admin/moderation/moderation.routes.ts34src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + src/app/+admin/admin.component.ts101 + src/app/+admin/moderation/abuse-list/abuse-list.component.html3 + src/app/+admin/moderation/moderation.routes.ts34 + src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + Moderation comment Comentario da Moderación @@ -3820,18 +3836,18 @@ The link will expire within 1 hour. Video Vídeo - - - - - - src/app/+admin/overview/comments/video-comment-list.component.html44src/app/+admin/overview/videos/video-list.component.html40src/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/overview/comments/video-comment-list.component.html44 + src/app/+admin/overview/videos/video-list.component.html40 + 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 Comentar - - - src/app/+admin/overview/comments/video-comment-list.component.html45src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/overview/comments/video-comment-list.component.html45 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + This video has been reported multiple times. Este vídeo foi denunciado en múltiples ocasións. @@ -3895,8 +3911,8 @@ The link will expire within 1 hour. src/app/shared/shared-abuse-list/abuse-details.component.html28 - - + + src/app/shared/shared-abuse-list/abuse-details.component.html21 src/app/shared/shared-abuse-list/abuse-details.component.html41 @@ -3973,10 +3989,10 @@ The link will expire within 1 hour. Account Conta - - - - src/app/+admin/overview/comments/video-comment-list.component.html43src/app/shared/shared-moderation/account-blocklist.component.html23src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/+admin/overview/comments/video-comment-list.component.html43 + src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/shared/shared-moderation/account-blocklist.component.html23 + No account found matching current filters. Sen contas que cumpran cos filtros establecidos. @@ -4164,34 +4180,36 @@ The link will expire within 1 hour. Delete this comment Elimina este comentario - - src/app/+admin/overview/comments/video-comment-list.component.ts80 + src/app/+admin/overview/comments/video-comment-list.component.ts80 + Delete all comments of this account Elimina tódolos comentarios desta conta - - src/app/+admin/overview/comments/video-comment-list.component.ts86 + src/app/+admin/overview/comments/video-comment-list.component.ts86 + Comments are deleted after a few minutes Os comentarios son eliminados após poucos minutos - - src/app/+admin/overview/comments/video-comment-list.component.ts87 + src/app/+admin/overview/comments/video-comment-list.component.ts87 + comments deleted. comentarios eliminados. - - src/app/+admin/overview/comments/video-comment-list.component.ts148 + src/app/+admin/overview/comments/video-comment-list.component.ts148 + Do you really want to delete all comments of ? Queres eliminar tódolos comentarios de ? - - src/app/+admin/overview/comments/video-comment-list.component.ts168 + src/app/+admin/overview/comments/video-comment-list.component.ts168 + Comments of will be deleted in a few minutes Os comentarios de eliminaranse nuns minutos - - src/app/+admin/overview/comments/video-comment-list.component.ts180 - Comments listComments list + src/app/+admin/overview/comments/video-comment-list.component.ts180 + + + Comments list + Lista de comentarios src/app/+admin/overview/comments/video-comment.routes.ts 24 @@ -4200,27 +4218,25 @@ The link will expire within 1 hour. Video comments Comentarios do vídeo - - - - src/app/+admin/overview/comments/video-comment-list.component.html3 + src/app/+admin/overview/comments/video-comment-list.component.html3 + This view also shows comments from muted accounts. Esta vista tamén mostra comentarios de contas acaladas. - - src/app/+admin/overview/comments/video-comment-list.component.html8 + src/app/+admin/overview/comments/video-comment-list.component.html8 + Showing to of comments Mostrando a de comentarios - - src/app/+admin/overview/comments/video-comment-list.component.html15 + src/app/+admin/overview/comments/video-comment-list.component.html15 + Select all rows Escoller tódalas filas - - - - src/app/+admin/overview/comments/video-comment-list.component.html39src/app/+admin/overview/users/user-list/user-list.component.html39src/app/+admin/overview/videos/video-list.component.html36 + src/app/+admin/overview/comments/video-comment-list.component.html39 + src/app/+admin/overview/users/user-list/user-list.component.html39 + src/app/+admin/overview/videos/video-list.component.html36 + Job type Tipo de tarefa @@ -4251,8 +4267,8 @@ The link will expire within 1 hour. src/app/+admin/system/jobs/jobs.component.html46 - Priority (1 = highest priority) - Prioridade (1 = a prioridade máis alta) + Priority (1 = highest priority) + Prioridade (1 = a prioridade máis alta) src/app/+admin/system/jobs/jobs.component.html 47 @@ -4272,8 +4288,8 @@ The link will expire within 1 hour. src/app/+admin/system/jobs/jobs.component.html105 - No jobs found. - Non se atoparon tarefas. + No jobs found. + Non se atoparon tarefas. src/app/+admin/system/jobs/jobs.component.html106 @@ -4289,10 +4305,11 @@ The link will expire within 1 hour. Refresh Actualizar - - - - src/app/+admin/overview/comments/video-comment-list.component.html31src/app/+admin/overview/videos/video-list.component.html27src/app/+admin/system/jobs/jobs.component.html30src/app/+admin/system/logs/logs.component.html33 + src/app/+admin/overview/comments/video-comment-list.component.html31 + src/app/+admin/overview/videos/video-list.component.html27 + src/app/+admin/system/jobs/jobs.component.html30 + src/app/+admin/system/logs/logs.component.html33 + now agora @@ -4320,8 +4337,8 @@ The link will expire within 1 hour. - By -> - Por -> + By -> + Por -> src/app/+admin/system/logs/logs.component.html47 @@ -4393,8 +4410,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-instance-information.component.html82 - Manage users to build a moderation team. - Xestionar usuarias para crear equipo de moderación. + Manage users to build a moderation team. + Xestionar usuarias para crear equipo de moderación. src/app/+admin/config/edit-custom-config/edit-instance-information.component.html83 @@ -4403,8 +4420,8 @@ The link will expire within 1 hour. 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. - Activándoo permitirás que outras administradoras saiban que principalmente federas contido sensible. Ademáis, incluirá automáticamente a marca NSFW na subida do vídeo. + 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. + Activándoo permitirás que outras administradoras saiban que principalmente federas contido sensible. Ademáis, incluirá automáticamente a marca NSFW na subida do vídeo. src/app/+admin/config/edit-custom-config/edit-instance-information.component.html97 @@ -4523,8 +4540,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html4 - Use plugins & themes for more involved changes, or add slight customizations. - Usa complementos & decorados para cambios máis relevantes, ou engade pequenas personalizacións. + Use plugins & themes for more involved changes, or add slight customizations. + Usa complementos & decorados para cambios máis relevantes, ou engade pequenas personalizacións. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html5 @@ -4630,8 +4647,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html150 - Manage users to set their quota individually. - Xestionar usuarias para establecer a súa cota individualmente. + Manage users to set their quota individually. + Xestionar usuarias para establecer a súa cota individualmente. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html151 @@ -4676,8 +4693,10 @@ The link will expire within 1 hour. src/app/+admin/overview/users/user-edit/user-edit.component.html4 src/app/+admin/overview/users/user-edit/user-edit.component.html4 src/app/+admin/overview/users/user-list/user-list.component.html3 - - CommentsComments + + + Comments + Comentarios src/app/+admin/admin.component.ts 57 @@ -4820,8 +4839,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html376 - You should only use moderated search indexes in production, or host your own. - Só deberías usar índices de busca moderados en produción, ou hospedar o teu propio. + You should only use moderated search indexes in production, or host your own. + Só deberías usar índices de busca moderados en produción, ou hospedar o teu propio. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html378 @@ -4855,8 +4874,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html426 - Manage relations with other instances. - Xestionar relacións con outras instancias. + Manage relations with other instances. + Xestionar relacións con outras instancias. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html427 @@ -4892,8 +4911,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 - See the documentation for more information about the expected URL - Le a documentación para saber máis acerca do URL agardado. + See the documentation for more information about the expected URL + Le a documentación para saber máis acerca do URL agardado. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html478 @@ -4942,8 +4961,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html559 - 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. - Se a túa instancia está explícitamente autorizada por Twitter, incluirase un reprodutor de vídeo de PeerTube na cronoloxía de Twitter. Se non o está, usamos unha tarxeta con imaxe que redirixirá á túa instancia PeerTube. Marca esta opción, garda a configuración e proba cun vídeo da túa instancia (https://example.com/w/blabla) en https://cards-dev.twitter.com/validator para comprobar se a túa instancia está permitida. + 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. + Se a túa instancia está explícitamente autorizada por Twitter, incluirase un reprodutor de vídeo de PeerTube na cronoloxía de Twitter. Se non o está, usamos unha tarxeta con imaxe que redirixirá á túa instancia PeerTube. Marca esta opción, garda a configuración e proba cun vídeo da túa instancia (https://example.com/w/blabla) en https://cards-dev.twitter.com/validator para comprobar se a túa instancia está permitida. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html563 @@ -4981,13 +5000,13 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html33 - Max simultaneous lives created on your instance (-1 for "unlimited") - Número máximo de directos simultáneos permitidos na túa instancia (-1 para "sen límite") + Max simultaneous lives created on your instance (-1 for "unlimited") + Número máximo de directos simultáneos permitidos na túa instancia (-1 para "sen límite") src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html40 - Max simultaneous lives created per user (-1 for "unlimited") - Número máximo de directos simultáneos por usuaria (-1 para "sen límite") + Max simultaneous lives created per user (-1 for "unlimited") + Número máximo de directos simultáneos por usuaria (-1 para "sen límite") src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html53 @@ -5131,8 +5150,8 @@ The link will expire within 1 hour. 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 - Require ffmpeg >= 4.1Crear listas HLS e ficheiros MP4 fragmentados resultando nunha mellor reprodución que con WebTorrent plano:O cambio de resolución é máis suaveReprodución máis rápida especialmente cos vídeos longosReprodución máis estable (menos fallos/carga infinita)Se tamén activaches o soporte WebTorrent, multiplicarás a almacenaxe dos vídeos por 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 + Require ffmpeg >= 4.1Crear listas HLS e ficheiros MP4 fragmentados resultando nunha mellor reprodución que con WebTorrent plano:O cambio de resolución é máis suaveReprodución máis rápida especialmente cos vídeos longosReprodución máis estable (menos fallos/carga infinita)Se tamén activaches o soporte WebTorrent, multiplicarás a almacenaxe dos vídeos por 2 src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 99,108 @@ -5194,26 +5213,34 @@ The link will expire within 1 hour. new transcoding profiles can be added by PeerTube plugins pódense engadir novos perfís de transcodificación con complementos PeerTube src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html179 - - VIDEO EDITORVIDEO EDITOR + + + VIDEO EDITOR + EDITOR DE VÍDEO src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 198 - - Allows your users to edit their video (cut, add intro/outro, add a watermark etc) Allows your users to edit their video (cut, add intro/outro, add a watermark etc) + + + Allows your users to edit their video (cut, add intro/outro, add a watermark etc) + Permítelle ás usuarias editar os vídeos (cortar, engadir intro/coda, engadir marca de auga, etc) src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 199,201 - - Enable video editorEnable video editor + + + Enable video editor + Activar editor de vídeo src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 210 - - ⚠️ You need to enable transcoding first to enable video editor⚠️ You need to enable transcoding first to enable video editor + + + ⚠️ You need to enable transcoding first to enable video editor + ⚠️ Primeiro tes que activar a transcodificación para activar o editor src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 213 @@ -5287,19 +5314,13 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html74 - Write JavaScript code directly.Example: console.log('my instance is amazing'); - Escribir código JavaScript directamente.Examplo: console.log('teño unha instancia que é un primor'); + Write JavaScript code directly.Example: console.log('my instance is amazing'); + Escribir código JavaScript directamente.Examplo: console.log('teño unha instancia que é un primor'); src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html77 - Write CSS code directly. Example:#custom-css -color: red; - - Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email -color: red; - - - Escribir código CSS directamente. Examplo:#custom-css color: red; Anteceder con #custom-css para sobrescribir estilos. Exemplo:#custom-css .logged-in-email 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; + Escribir código CSS directamente. Examplo:#custom-css color: red; Anteceder con #custom-css para sobrescribir estilos. Exemplo:#custom-css .logged-in-email color: red; src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html96 @@ -5316,8 +5337,8 @@ color: red; - There are errors in the form: - Hai erros no formulario: + There are errors in the form: + Hai erros no formulario: src/app/+admin/config/edit-custom-config/edit-custom-config.component.html71 @@ -5393,8 +5414,8 @@ color: red; src/app/shared/shared-video-miniature/video-download.component.ts255 - Update your settings - Actualiza os axustes + Update your settings + Actualiza os axustes src/app/shared/shared-video-miniature/video-filters-header.component.html2 @@ -5414,40 +5435,40 @@ color: red; - Sort by "Recently Added" - Orde por "Engadido recentemente" + Sort by "Recently Added" + Orde por "Engadido recentemente" src/app/shared/shared-video-miniature/video-filters-header.component.html 46 - Sort by "Recent Views" - Orde por "Visto recentemente" + Sort by "Recent Views" + Orde por "Visto recentemente" src/app/shared/shared-video-miniature/video-filters-header.component.html 48 - Sort by "Hot" - Orde por "Popularidade" + Sort by "Hot" + Orde por "Popularidade" src/app/shared/shared-video-miniature/video-filters-header.component.html 49 - Sort by "Best" - Orde por "Mellor" + Sort by "Best" + Orde por "Mellor" src/app/shared/shared-video-miniature/video-filters-header.component.html 50 - Sort by "Likes" - Orde por "Gústame" + Sort by "Likes" + Orde por "Gústame" src/app/shared/shared-video-miniature/video-filters-header.component.html 51 @@ -5563,8 +5584,8 @@ color: red; 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. - Con Agochar ou Difuminar miniaturas, pedirase confirmación para ver o vídeo. + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + Con Agochar ou Difuminar miniaturas, pedirase confirmación para ver o vídeo. src/app/+admin/config/edit-custom-config/edit-instance-information.component.html110 src/app/shared/shared-user-settings/user-video-settings.component.html7 @@ -5684,9 +5705,9 @@ color: red; Account page Páxina da conta - - - src/app/+videos/+video-watch/video-watch.component.html66src/app/+videos/+video-watch/video-watch.component.html72 + src/app/+videos/+video-watch/video-watch.component.html66 + src/app/+videos/+video-watch/video-watch.component.html72 + No ownership change request found. Non se atopan solicitudes de cambio de propiedade. @@ -5784,10 +5805,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-follows/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html63 + src/app/+my-library/+my-video-channels/my-video-channels.component.html25 + src/app/+my-library/my-follows/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html63 + Created by Creada por @@ -5824,8 +5845,8 @@ 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. - 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. + 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 @@ -5934,8 +5955,8 @@ color: red; src/app/+signup/shared/signup-success.component.html13 - 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. + 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.html17 @@ -6009,8 +6030,9 @@ color: red; Banned Prohibido - - src/app/+accounts/accounts.component.html21src/app/+admin/overview/users/user-list/user-list.component.html105 + src/app/+accounts/accounts.component.html21 + src/app/+admin/overview/users/user-list/user-list.component.html105 + Instance muted Instancia acalada @@ -6066,36 +6088,36 @@ 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.html26src/app/+accounts/accounts.component.html36src/app/+my-library/+my-video-channels/my-video-channels.component.html34src/app/+video-channels/video-channels.component.html75src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html36 + src/app/+my-library/+my-video-channels/my-video-channels.component.html34 + src/app/+video-channels/video-channels.component.html75 + 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}} - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html29src/app/+accounts/accounts.component.html39src/app/+video-channels/video-channels.component.html78src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/+accounts/account-video-channels/account-video-channels.component.html29 + src/app/+accounts/accounts.component.html39 + src/app/+video-channels/video-channels.component.html78 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + - - - - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html28src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html33src/app/+video-channels/video-channels.component.html77src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html15src/app/shared/shared-video/video-views-counter.component.html2src/app/shared/shared-video/video-views-counter.component.html6 + src/app/+accounts/account-video-channels/account-video-channels.component.html28 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html33 + src/app/+video-channels/video-channels.component.html77 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html15 + src/app/shared/shared-video/video-views-counter.component.html2 + src/app/shared/shared-video/video-views-counter.component.html6 + Show this channel Mostrar esta canle - - src/app/+accounts/account-video-channels/account-video-channels.component.html38 + src/app/+accounts/account-video-channels/account-video-channels.component.html38 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {Sen vídeos} =1 {1 vídeo} other { vídeos}} @@ -6103,9 +6125,7 @@ color: red; src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 - 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 ()! + 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 ()! Desexas eliminar ? Así eliminarás vídeos subidos a esta canle, e non poderás volver a crear outra canle co mesmo nome ()! src/app/+my-library/+my-video-channels/my-video-channels.component.ts44 @@ -6126,21 +6146,21 @@ channel with the same name ()! See this video channel Ver esta canle de vídeo - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html15src/app/+accounts/account-video-channels/account-video-channels.component.html20src/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.html15 + src/app/+accounts/account-video-channels/account-video-channels.component.html20 + 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. Esta canle non ten vídeos. - - src/app/+accounts/account-video-channels/account-video-channels.component.html41 + src/app/+accounts/account-video-channels/account-video-channels.component.html41 + - SHOW THIS CHANNEL > - MOSTRAR ESTA CANLE > - - src/app/+accounts/account-video-channels/account-video-channels.component.html49 + SHOW THIS CHANNEL > + MOSTRAR ESTA CANLE > + src/app/+accounts/account-video-channels/account-video-channels.component.html49 + Stats Estatísticas @@ -6386,8 +6406,8 @@ channel with the same name ()!src/app/+about/about-peertube/about-peertube.component.html111 - 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 - Os parceiros da web non son públicamente accesibles: porque usamos websocket transport, o protocolo é diferente ó clásico rastrexador BitTorrent. Cando usas un navegador web, envías ó rastrexador un sinal que contén o teu enderezo IP que escollerá aleatoriamente outros parceiros ós que enviar a información. Le este documento para ter máis información + 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 + Os parceiros da web non son públicamente accesibles: porque usamos websocket transport, o protocolo é diferente ó clásico rastrexador BitTorrent. Cando usas un navegador web, envías ó rastrexador un sinal que contén o teu enderezo IP que escollerá aleatoriamente outros parceiros ós que enviar a información. Le este documento para ter máis información src/app/+about/about-peertube/about-peertube.component.html115 @@ -6488,8 +6508,8 @@ channel with the same name ()!src/app/+about/about-instance/about-instance.component.ts98 - Contact the administrator(s) - Contacta coa administración + Contact the administrator(s) + Contacta coa administración src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -6592,8 +6612,8 @@ channel with the same name ()!src/app/+signup/+register/register-step-channel.component.html50 - I am at least years old and agree to the Terms and to the Code of Conduct of this instance - Teño polo menos anos de idade e acepto os Termos e o Código de conduta desta instancia + I am at least years old and agree to the Terms and to the Code of Conduct of this instance + Teño polo menos anos de idade e acepto os Termos e o Código de conduta desta instancia src/app/+signup/+register/register-step-terms.component.html 5,10 @@ -6746,9 +6766,9 @@ channel with the same name ()! Username copied Nome de usuaria copiado - - - src/app/+accounts/accounts.component.ts121src/app/+video-channels/video-channels.component.ts115 + src/app/+accounts/accounts.component.ts121 + src/app/+video-channels/video-channels.component.ts115 + 1 subscriber 1 subscritora @@ -6765,8 +6785,8 @@ channel with the same name ()!src/app/+admin/config/edit-custom-config/edit-configuration.service.ts17 - A <code>.mp4</code> that keeps the original audio track, with no video - Un <code>.mp4</code> que mantén o audio orixinal, sen vídeo + A <code>.mp4</code> that keeps the original audio track, with no video + Un <code>.mp4</code> que mantén o audio orixinal, sen vídeo src/app/+admin/config/edit-custom-config/edit-configuration.service.ts18 @@ -6914,8 +6934,8 @@ channel with the same name ()! Configuration updated. Configuración actualizada. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts309 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts309 + INSTANCE HOMEPAGE INICIO DA INSTANCIA @@ -7118,42 +7138,42 @@ channel with the same name ()! Delete Eliminar - - - - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/+admin/moderation/video-block-list/video-block-list.component.ts95src/app/+admin/overview/comments/video-comment-list.component.ts100src/app/+admin/overview/comments/video-comment-list.component.ts169src/app/+admin/overview/users/user-list/user-list.component.ts95src/app/+admin/overview/users/user-list/user-list.component.ts209src/app/+admin/overview/videos/video-list.component.ts74src/app/+admin/overview/videos/video-list.component.ts198src/app/+admin/overview/videos/video-list.component.ts229src/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.ts151src/app/+my-library/my-videos/my-videos.component.ts178src/app/+my-library/my-videos/my-videos.component.ts225src/app/+videos/+video-edit/shared/video-edit.component.html190src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts134src/app/shared/shared-abuse-list/abuse-list-table.component.ts376src/app/shared/shared-abuse-list/abuse-list-table.component.ts411src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts366 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts95 + src/app/+admin/overview/comments/video-comment-list.component.ts100 + src/app/+admin/overview/comments/video-comment-list.component.ts169 + src/app/+admin/overview/users/user-list/user-list.component.ts95 + src/app/+admin/overview/users/user-list/user-list.component.ts209 + src/app/+admin/overview/videos/video-list.component.ts74 + src/app/+admin/overview/videos/video-list.component.ts198 + src/app/+admin/overview/videos/video-list.component.ts229 + 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.ts151 + src/app/+my-library/my-videos/my-videos.component.ts178 + src/app/+my-library/my-videos/my-videos.component.ts225 + src/app/+videos/+video-edit/shared/video-edit.component.html190 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts134 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts376 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts411 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts366 + viewers espectadoras - - src/app/shared/shared-main/video/video.model.ts266 + src/app/shared/shared-main/video/video.model.ts266 + views visualizacións - - src/app/shared/shared-main/video/video.model.ts269 + src/app/shared/shared-main/video/video.model.ts269 + removed from instance followers eliminada das seguidoras da instancia @@ -7425,17 +7445,17 @@ channel with the same name ()! Unblock Desbloquear - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts86src/app/+admin/moderation/video-block-list/video-block-list.component.ts133src/app/+admin/overview/videos/video-list.component.ts86src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts354 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts86 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts133 + src/app/+admin/overview/videos/video-list.component.ts86 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts354 + Video unblocked. Vídeo desbloqueado. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts139src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts211 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts139 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts211 + yes si @@ -7555,8 +7575,8 @@ channel with the same name ()! - PeerTube thinks your web browser public IP is . - PeerTube cre que o IP do teu navegador é . + PeerTube thinks your web browser public IP is . + PeerTube cre que o IP do teu navegador é . src/app/+admin/system/debug/debug.component.html 4 @@ -7603,16 +7623,16 @@ channel with the same name ()! - Check the trust_proxy configuration key - Comproba a chave de configuración do trust_proxy + Check the trust_proxy configuration key + Comproba a chave de configuración do trust_proxy 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) - Se instalaches PeerTube usando Docker, executa o reverse-proxy con network_mode: "host" (ler issue 1643) + If you run PeerTube using Docker, check you run the reverse-proxy with network_mode: "host" (see issue 1643) + Se instalaches PeerTube usando Docker, executa o reverse-proxy con network_mode: "host" (ler issue 1643) src/app/+admin/system/debug/debug.component.html 16,17 @@ -7662,19 +7682,19 @@ channel with the same name ()! Info Info - - - src/app/+admin/overview/videos/video-list.component.html41src/app/core/notification/notifier.service.ts11 + src/app/+admin/overview/videos/video-list.component.html41 + src/app/core/notification/notifier.service.ts11 + Files Ficheiros - - src/app/+admin/overview/videos/video-list.component.html42 + src/app/+admin/overview/videos/video-list.component.html42 + - Published - Publicado - - src/app/+admin/overview/videos/video-list.component.html43 + Published + Publicado + src/app/+admin/overview/videos/video-list.component.html43 + Warning Aviso @@ -7710,13 +7730,13 @@ channel with the same name ()! Blocked videos Vídeos bloqueados - - src/app/+admin/moderation/moderation.routes.ts66 + src/app/+admin/moderation/moderation.routes.ts66 + Muted instances Instancias acaladas - - src/app/+admin/moderation/moderation.routes.ts101 + src/app/+admin/moderation/moderation.routes.ts101 + Password changed for user . Cambiado o contrasinal da usuaria . @@ -7810,105 +7830,103 @@ channel with the same name ()! Federation Federación - - - src/app/+admin/admin.component.ts72 + src/app/+admin/admin.component.ts72 + Videos will be deleted, comments will be tombstoned. Os vídeos serán eliminados, os comentarios serán soterrados. - - - src/app/+admin/overview/users/user-list/user-list.component.ts96src/app/shared/shared-moderation/user-moderation-dropdown.component.ts345 + src/app/+admin/overview/users/user-list/user-list.component.ts96 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts345 + Ban Vetar - - - - src/app/+admin/overview/users/user-list/user-list.component.ts101src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + src/app/+admin/overview/users/user-list/user-list.component.ts101 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + User won't be able to login anymore, but videos and comments will be kept as is. A usuaria non poderá entrar, pero os vídeos e comentarios permanecerán visibles. - - - src/app/+admin/overview/users/user-list/user-list.component.ts102src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351 + src/app/+admin/overview/users/user-list/user-list.component.ts102 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351 + Unban Levantar veto - - - - src/app/+admin/overview/users/user-list/user-list.component.ts107src/app/+admin/overview/users/user-list/user-list.component.ts186src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + src/app/+admin/overview/users/user-list/user-list.component.ts107 + src/app/+admin/overview/users/user-list/user-list.component.ts186 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + Set Email as Verified Establecer email como Verificado - - - src/app/+admin/overview/users/user-list/user-list.component.ts114src/app/shared/shared-moderation/user-moderation-dropdown.component.ts362 + src/app/+admin/overview/users/user-list/user-list.component.ts114 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts362 + Created Creado - - src/app/+admin/overview/users/user-list/user-list.component.ts129 + src/app/+admin/overview/users/user-list/user-list.component.ts129 + Daily quota Cota diaria - - src/app/+admin/overview/users/user-list/user-list.component.ts134 + src/app/+admin/overview/users/user-list/user-list.component.ts134 + Last login Última conexión - - src/app/+admin/overview/users/user-list/user-list.component.ts136 + src/app/+admin/overview/users/user-list/user-list.component.ts136 + You cannot ban root. Non podes vetar a root. - - - src/app/+admin/overview/users/user-list/user-list.component.ts173src/app/shared/shared-moderation/user-moderation-dropdown.component.ts71 + src/app/+admin/overview/users/user-list/user-list.component.ts173 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts71 + Do you really want to unban users? Quéreslle levantar o veto a usuarias? - - src/app/+admin/overview/users/user-list/user-list.component.ts186 + src/app/+admin/overview/users/user-list/user-list.component.ts186 + users unbanned. usuarias sen veto. - - src/app/+admin/overview/users/user-list/user-list.component.ts192 + src/app/+admin/overview/users/user-list/user-list.component.ts192 + You cannot delete root. Non podes eliminar a root. - - - src/app/+admin/overview/users/user-list/user-list.component.ts203src/app/shared/shared-moderation/user-moderation-dropdown.component.ts99 + src/app/+admin/overview/users/user-list/user-list.component.ts203 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts99 + If you remove these users, you will not be able to create others with the same username! Se eliminas estas usuarias, non poderás crear outras co mesmo nome de usuaria! - - src/app/+admin/overview/users/user-list/user-list.component.ts208 + src/app/+admin/overview/users/user-list/user-list.component.ts208 + users deleted. usuarias eliminadas. - - src/app/+admin/overview/users/user-list/user-list.component.ts215 + src/app/+admin/overview/users/user-list/user-list.component.ts215 + users email set as verified. email de usuaria marcado como verificado. - - src/app/+admin/overview/users/user-list/user-list.component.ts227 + src/app/+admin/overview/users/user-list/user-list.component.ts227 + Account unmuted. Conta xa non está acalada. - - - src/app/shared/shared-moderation/account-blocklist.component.ts42src/app/shared/shared-moderation/user-moderation-dropdown.component.ts148 + src/app/shared/shared-moderation/account-blocklist.component.ts42 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts148 + Instance unmuted. Instancia xa non está acalada. - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts176 + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts176 + Videos history is enabled O historial dos vídeos está activado @@ -7946,8 +7964,8 @@ channel with the same name ()!src/app/+my-library/my-history/my-history.component.html13 - Clear all history - Limpar historial + Clear all history + Limpar historial src/app/+my-library/my-history/my-history.component.html 17,19 @@ -7969,8 +7987,8 @@ channel with the same name ()!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. - O teu email actual . Non se mostra públicamente. + Your current email is . It is never shown to the public. + O teu email actual . Non se mostra públicamente. src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html4 @@ -7984,31 +8002,36 @@ channel with the same name ()!Contrasinal actualizado. src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts53 - Type your username to confirm Escribe o teu nome de usuaria para confirmar - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts29 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts29 + Delete your account Elimina a túa conta - - - 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.ts31 - Are you sure you want to delete your account?Are you sure you want to delete your account? + 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.ts31 + + + Are you sure you want to delete your account? + Tes certeza de querer eliminar a túa conta? src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts 22 - - This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "" username.This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "" username. + + + This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "" username. + Esto vai eliminar tódolos teus datos, incluíndo canles, vídeos, comentarios e non poderás crear outra usuaria nesta instancia usando como identificador. src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts 25 - - Content cached by other servers and other third-parties might make longer to be deleted.Content cached by other servers and other third-parties might make longer to be deleted. + + + Content cached by other servers and other third-parties might make longer to be deleted. + 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.ts 27 @@ -8017,13 +8040,13 @@ channel with the same name ()! Delete my account Eliminar a miña conta - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts32 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts32 + Your account is deleted. A túa conta foi eliminada. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts39 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts39 + Interface settings updated. Actualizados os axustes da interface. @@ -8379,9 +8402,9 @@ channel with the same name ()! Change ownership Cambiar a propiedade - - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts220 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts220 + Playlist deleted. Lista eliminada. @@ -8416,18 +8439,20 @@ 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.ts177src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts226 + 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.ts177 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts226 + Video deleted. Vídeo eliminado. - - - src/app/+my-library/my-videos/my-videos.component.ts185src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts237 - EditorEditor + src/app/+my-library/my-videos/my-videos.component.ts185 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts237 + + + Editor + Editor src/app/+my-library/my-videos/my-videos.component.ts 208 @@ -8561,122 +8586,162 @@ channel with the same name ()!PLAYLISTS LISTAXES src/app/+video-channels/video-channels.component.ts82 - - Edit Edit + + + Edit + Edit src/app/+video-editor/edit/video-editor-edit.component.html 2 - - CUT VIDEOCUT VIDEO + + + CUT VIDEO + CUT VIDEO src/app/+video-editor/edit/video-editor-edit.component.html 8 - - Set a new start/end.Set a new start/end. + + + Set a new start/end. + Set a new start/end. src/app/+video-editor/edit/video-editor-edit.component.html 10 - - New startNew start + + + New start + New start src/app/+video-editor/edit/video-editor-edit.component.html 13 - - New endNew end + + + New end + New end src/app/+video-editor/edit/video-editor-edit.component.html 18 - - ADD INTROADD INTRO + + + ADD INTRO + ADD INTRO src/app/+video-editor/edit/video-editor-edit.component.html 24 - - Concatenate a file at the beginning of the video.Concatenate a file at the beginning of the video. + + + Concatenate a file at the beginning of the video. + Concatenate a file at the beginning of the video. src/app/+video-editor/edit/video-editor-edit.component.html 26 - - Select the intro video fileSelect the intro video file + + + Select the intro video file + Select the intro video file src/app/+video-editor/edit/video-editor-edit.component.html 30 - - ADD OUTROADD OUTRO + + + ADD OUTRO + ADD OUTRO src/app/+video-editor/edit/video-editor-edit.component.html 38 - - Concatenate a file at the end of the video.Concatenate a file at the end of the video. + + + Concatenate a file at the end of the video. + Concatenate a file at the end of the video. src/app/+video-editor/edit/video-editor-edit.component.html 40 - - Select the outro video fileSelect the outro video file + + + Select the outro video file + Select the outro video file src/app/+video-editor/edit/video-editor-edit.component.html 44 - - ADD WATERMARKADD WATERMARK + + + ADD WATERMARK + ADD WATERMARK src/app/+video-editor/edit/video-editor-edit.component.html 52 - - Add a watermark image to the video.Add a watermark image to the video. + + + Add a watermark image to the video. + Add a watermark image to the video. src/app/+video-editor/edit/video-editor-edit.component.html 54 - - Select watermark image fileSelect watermark image file + + + Select watermark image file + Select watermark image file src/app/+video-editor/edit/video-editor-edit.component.html 58 - - Run video editionRun video edition + + + Run video edition + Run video edition src/app/+video-editor/edit/video-editor-edit.component.html 66 - - Video before editionVideo before edition + + + Video before edition + Video before edition src/app/+video-editor/edit/video-editor-edit.component.html 75 - - Edition tasks:Edition tasks: + + + Edition tasks: + Edition tasks: src/app/+video-editor/edit/video-editor-edit.component.html 80 - - Are you sure you want to edit ""?Are you sure you want to edit ""? + + + Are you sure you want to edit ""? + Are you sure you want to edit ""? src/app/+video-editor/edit/video-editor-edit.component.ts 72 - - The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br />The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> + + + The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> + The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> src/app/+video-editor/edit/video-editor-edit.component.ts 76 - - As a reminder, the following tasks will be executed: <ol></ol>As a reminder, the following tasks will be executed: <ol></ol> + + + As a reminder, the following tasks will be executed: <ol></ol> + As a reminder, the following tasks will be executed: <ol></ol> src/app/+video-editor/edit/video-editor-edit.component.ts 77 @@ -8738,8 +8803,7 @@ channel with the same name ()!src/app/core/auth/auth.service.ts73 - 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. Non se poden obter as credenciais OAuth Client: . Asegúrate de ter configurado correctamente PeerTube (config/ directory), en particular a sección "webserver". src/app/core/auth/auth.service.ts100 @@ -8837,41 +8901,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Today Hoxe - - - - src/app/+search/search-filters.component.ts40src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts134 + src/app/+search/search-filters.component.ts40 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts134 + Yesterday Onte - - src/app/shared/shared-video-miniature/videos-list.component.ts135 + src/app/shared/shared-video-miniature/videos-list.component.ts135 + This week Nesta semana - - src/app/shared/shared-video-miniature/videos-list.component.ts136 + src/app/shared/shared-video-miniature/videos-list.component.ts136 + This month Neste mes - - src/app/shared/shared-video-miniature/videos-list.component.ts137 + src/app/shared/shared-video-miniature/videos-list.component.ts137 + Last month Último mes - - src/app/shared/shared-video-miniature/videos-list.component.ts138 + src/app/shared/shared-video-miniature/videos-list.component.ts138 + Older Máis antigo - - src/app/shared/shared-video-miniature/videos-list.component.ts139 + src/app/shared/shared-video-miniature/videos-list.component.ts139 + 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.ts246src/app/shared/shared-video-miniature/videos-selection.component.ts129 + src/app/shared/shared-video-miniature/videos-list.component.ts246 + src/app/shared/shared-video-miniature/videos-selection.component.ts129 + Last 7 days Últimos 7 días @@ -8912,8 +8976,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/+search/search-filters.component.ts63 - Long (> 10 min) - Longo (> 10 min) + Long (> 10 min) + Longo (> 10 min) src/app/+search/search-filters.component.ts67 @@ -9077,8 +9141,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Confirm Confirmar - - src/app/modal/confirm.component.ts40 + src/app/modal/confirm.component.ts40 + Instance name is required. Requírese un nome para a instancia. @@ -9540,8 +9604,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video caption file is required. Requírese un ficheiro para os subtítulos. src/app/shared/form-validators/video-captions-validators.ts14 - - Caption content is required.Caption content is required. + + + Caption content is required. + Caption content is required. src/app/shared/form-validators/video-captions-validators.ts 21 @@ -9588,8 +9654,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/shared/form-validators/video-channel-validators.ts48 - See the documentation to learn how to use the PeerTube live streaming feature. - Le a documentación para saber cómo utilizar a función de retransmisión en directo de PeerTube. + See the documentation to learn how to use the PeerTube live streaming feature. + Le a documentación para saber cómo utilizar a función de retransmisión en directo de PeerTube. src/app/shared/shared-video-live/live-documentation-link.component.html1 @@ -9638,47 +9704,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Live RTMP Url URL RTMP do Directo - - - src/app/+videos/+video-edit/shared/video-edit.component.html245src/app/shared/shared-video-live/live-stream-information.component.html19 + src/app/+videos/+video-edit/shared/video-edit.component.html245 + src/app/shared/shared-video-live/live-stream-information.component.html19 + Live RTMPS Url Url RTMPS do Directo - - - src/app/+videos/+video-edit/shared/video-edit.component.html250src/app/shared/shared-video-live/live-stream-information.component.html24 + src/app/+videos/+video-edit/shared/video-edit.component.html250 + src/app/shared/shared-video-live/live-stream-information.component.html24 + Live stream key Chave da emisión en directo - - - src/app/+videos/+video-edit/shared/video-edit.component.html255src/app/shared/shared-video-live/live-stream-information.component.html29 + src/app/+videos/+video-edit/shared/video-edit.component.html255 + src/app/shared/shared-video-live/live-stream-information.component.html29 + ⚠️ Never share your stream key with anyone. ⚠️ Non compartas nunca con ninguén a chave do directo. - - - src/app/+videos/+video-edit/shared/video-edit.component.html258src/app/shared/shared-video-live/live-stream-information.component.html32 + src/app/+videos/+video-edit/shared/video-edit.component.html258 + src/app/shared/shared-video-live/live-stream-information.component.html32 + This is a normal live Este é un directo normal - - src/app/+videos/+video-edit/shared/video-edit.component.html264 + src/app/+videos/+video-edit/shared/video-edit.component.html264 + You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL Non podes emitir varias veces nun directo normal, pero podes gardar unha repetición del que utilizará o mesmo URL - - src/app/+videos/+video-edit/shared/video-edit.component.html266 + src/app/+videos/+video-edit/shared/video-edit.component.html266 + This is a permanent/recurring live Este é un directo permanente/recurrente - - src/app/+videos/+video-edit/shared/video-edit.component.html273 + src/app/+videos/+video-edit/shared/video-edit.component.html273 + You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives Podes emitir varias veces nun directo permanente/recurrente. O URL para as espectadoras non cambiará pero non podes gardar repeticións dos teus directos - - src/app/+videos/+video-edit/shared/video-edit.component.html275 + src/app/+videos/+video-edit/shared/video-edit.component.html275 + Replay will be saved Gardarase a repetición @@ -10175,14 +10241,14 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Instance languages Idiomas da instancia - - src/app/+videos/+video-edit/shared/video-edit.component.ts193 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 + All languages Tódolos idiomas - - - src/app/+videos/+video-edit/shared/video-edit.component.ts194src/app/shared/shared-forms/select/select-languages.component.ts25 + src/app/+videos/+video-edit/shared/video-edit.component.ts194 + src/app/shared/shared-forms/select/select-languages.component.ts25 + Hidden Agochado @@ -10272,20 +10338,24 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular users banned. usuarias vetadas. - - src/app/shared/shared-moderation/user-ban-modal.component.ts67 + src/app/shared/shared-moderation/user-ban-modal.component.ts67 + User banned. Usuaria vetada. - - src/app/shared/shared-moderation/user-ban-modal.component.ts68 - Ban usersBan users + src/app/shared/shared-moderation/user-ban-modal.component.ts68 + + + Ban users + Ban users src/app/shared/shared-moderation/user-ban-modal.component.ts 82 - - Ban ""Ban "" + + + Ban "" + Ban "" src/app/shared/shared-moderation/user-ban-modal.component.ts 84 @@ -10294,52 +10364,52 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to unban ? Desexas retirarlle o veto a ? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + User unbanned. Usuaria sen veto. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts89 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts89 + If you remove user , you won't be able to create another with the same username! Se eliminas a usuaria , non poderás crear outra co mesmo nome de usuaria! - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + Delete Eliminar - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts104src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts231 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts104 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts231 + User deleted. Usuaria eliminada. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts110 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts110 + User email set as verified Email da usuaria marcado como verificado - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts122 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts122 + Account muted. Conta acalada. - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts134src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts263 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts134 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts263 + Instance muted. Instancia acalada. - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts162 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts162 + Account muted by the instance. Conta acalada pola instancia. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts434src/app/shared/shared-moderation/user-moderation-dropdown.component.ts190 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts434 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts190 + Mute server Acalar servidor @@ -10363,156 +10433,156 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. Conta restablecida pola instancia. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts204 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts204 + Instance muted by the instance. Instancia acalada pola instancia. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts218 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts218 + Instance unmuted by the instance. Instancia restablecida pola instancia. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts232 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts232 + Are you sure you want to remove all the comments of this account? Tes a certeza de querer eliminar tódolos comentarios desta conta? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts243 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts243 + Delete account comments Eliminar tódolos comentarios - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts244 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts244 + Will remove comments of this account (may take several minutes). Eliminará tódolos comentarios desta conta (podería tomar uns minutos). - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts250 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts250 + My account moderation Moderando a miña conta - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts290 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts290 + Edit user Editar usuaria - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339 + Change quota, role, and more. Cambiar cota, rol, e máis. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts340 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts340 + Delete user Eliminar usuaria - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts344 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts344 + Unban user Restablecer usuaria - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + Allow the user to login and create videos/comments again Permitirlle á usuaria acceder e que publique vídeos/comentarios de novo - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts357 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts357 + Mute this account Acalar esta conta - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295src/app/shared/shared-moderation/user-moderation-dropdown.component.ts373 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts373 + Hide any content from that user from you. Agocharche calquera contido desta usuaria. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts296 + Unmute this account Restablecer esta conta - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301src/app/shared/shared-moderation/user-moderation-dropdown.component.ts379 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts379 + Show back content from that user for you. Volver a mostrar para ti contido desta conta. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts302 + Mute the instance Acalar a instancia - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307src/app/shared/shared-moderation/user-moderation-dropdown.component.ts391 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts391 + Hide any content from that instance for you. Agochar para ti calquera contido desta instancia. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts308 + Unmute the instance Restablecer instancia - - 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. Volver a mostrarche contido desta instancia. - - 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 Eliminar comentarios dos teus vídeos - - 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. Eliminar os comentarios feitos por esta conta nos teus vídeos. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts320 + Hide any content from that user from you, your instance and its users. Agochar para ti, a túa instancia e as súas usuarias, calquera contido desta usuaria. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts374 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts374 + Show this user's content to the users of this instance again. Volver a mostrar os contidos desta usuaria ás usuarias da túa instancia. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts380 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts380 + Hide any content from that instance from you, your instance and its users. Agochar para ti, a túa instancia e as túas usuarias, calquera contido desta instancia. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts392 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts392 + Unmute the instance by your instance Restablecer esta instancia pola túa instancia - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts397 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts397 + Show back content from that instance for you, your instance and its users. Volver a mostrar os contidos desta usuaria para ti, a túa instancia e as súas usuarias. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts398 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts398 + Remove comments from your instance Eliminar comentarios da túa instancia - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts408 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts408 + Remove comments made by this account from your instance. Eliminar da túa instancia os comentarios feitos por esta conta. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts409 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts409 + Instance moderation Moderación da instancia - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts418 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts418 + Block videos Bloqueados vídeos @@ -10670,25 +10740,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video removed from Vídeo eliminado de - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts309src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts97 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts309 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts97 + Video added in at timestamps Vídeo engadido a con marca de tempo - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts379 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts379 + Video added in Vídeo engadido a - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts380 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts380 + Timestamps updated Marcas de tempo actualizadas - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts277src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts116 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts277 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts116 + Starts at Inicia en @@ -10799,77 +10869,77 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Download Descargar - - - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts324src/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.ts324 + src/app/shared/shared-video-miniature/video-download.component.html4 + src/app/shared/shared-video-miniature/video-download.component.html156 + Display live information Mostrar información do directo - - - src/app/+my-library/my-videos/my-videos.component.ts214src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts330 + src/app/+my-library/my-videos/my-videos.component.ts214 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts330 + Update Actualizar - - - - - - - - - - - src/app/+manage/video-channel-edit/video-channel-update.component.ts181src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115src/app/+videos/+video-edit/video-add-components/video-go-live.component.html62src/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.html20src/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.ts336 + src/app/+manage/video-channel-edit/video-channel-update.component.ts181 + 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.html62 + 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.html20 + 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.ts336 + Block Bloquear - - - - src/app/+admin/overview/videos/video-list.component.ts80src/app/shared/shared-moderation/video-block.component.html50src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts348 + src/app/+admin/overview/videos/video-list.component.ts80 + src/app/shared/shared-moderation/video-block.component.html50 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts348 + Run HLS transcoding Executar transcodificación HLS - - - src/app/+admin/overview/videos/video-list.component.ts94src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts380 + src/app/+admin/overview/videos/video-list.component.ts94 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts380 + Run WebTorrent transcoding Executar transcodificación WebTorrent - - - src/app/+admin/overview/videos/video-list.component.ts100src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts386 + src/app/+admin/overview/videos/video-list.component.ts100 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts386 + Delete HLS files Eliminar ficheiros HLS - - - src/app/+admin/overview/videos/video-list.component.ts106src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts392 + src/app/+admin/overview/videos/video-list.component.ts106 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts392 + Delete WebTorrent files Eliminar ficheiros WebTorrent - - - src/app/+admin/overview/videos/video-list.component.ts112src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts398 + src/app/+admin/overview/videos/video-list.component.ts112 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts398 + Save to playlist Gardar en lista - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts58src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts316 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts58 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts316 + - You need to be <a href="/login">logged in</a> to rate this video. - Tes que estar <a href="/login">conectada</a> para valorar este vídeo. + You need to be <a href="/login">logged in</a> to rate this video. + Tes que estar <a href="/login">conectada</a> para valorar este vídeo. src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 Mirror Replicar - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts360 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts360 + Subtitles Subtítulos @@ -10904,9 +10974,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mute account Acalar conta - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts292src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts406 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts292 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts406 + Open video actions Abrir accións para o vídeo @@ -10922,13 +10992,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to unblock ? It will be available again in the videos list. Tes a certeza de querer retirar o bloqueo a ? Estará dispoñible de volta na lista de vídeos. - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + Unblock Desbloquear - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205 + Mute server account Acalar conta do servidor @@ -10937,10 +11007,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Report Denunciar - - - - src/app/+accounts/accounts.component.ts198src/app/shared/shared-abuse-list/abuse-details.component.html55src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts372 + src/app/+accounts/accounts.component.ts198 + src/app/shared/shared-abuse-list/abuse-details.component.html55 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts372 + Reported part Parte da denuncia @@ -11021,8 +11091,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular To import Importar src/app/shared/shared-video-miniature/video-miniature.component.ts195 - - To editTo edit + + + To edit + To edit src/app/shared/shared-video-miniature/video-miniature.component.ts 199 @@ -11039,21 +11111,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - - - - - - - - - - - - - - - src/app/+admin/overview/videos/video-list.component.html77src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4src/app/+videos/+video-edit/video-add-components/video-go-live.component.html31src/app/+videos/+video-watch/video-watch.component.html73src/app/menu/menu.component.html110src/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-moderation/user-ban-modal.component.html3src/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/+admin/overview/videos/video-list.component.html77 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html31 + src/app/+videos/+video-watch/video-watch.component.html73 + src/app/menu/menu.component.html110 + 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-moderation/user-ban-modal.component.html3 + 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 + Add to watch later Engadir a Ver máis tarde @@ -11133,9 +11206,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video updated. Vídeo actualizado. - - src/app/+video-editor/edit/video-editor-edit.component.ts90src/app/+videos/+video-edit/video-update.component.ts146 - (extensions: )(extensions: ) + src/app/+video-editor/edit/video-editor-edit.component.ts90 + src/app/+videos/+video-edit/video-update.component.ts146 + + + (extensions: ) + (extensions: ) src/app/+video-editor/edit/video-editor-edit.component.ts 104 @@ -11144,44 +11220,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/+video-editor/edit/video-editor-edit.component.ts 108 - - "" will be added at the beggining of the video"" will be added at the beggining of the video + + + "" will be added at the beggining of the video + "" will be added at the beggining of the video src/app/+video-editor/edit/video-editor-edit.component.ts 120 - - "" will be added at the end of the video"" will be added at the end of the video + + + "" will be added at the end of the video + "" will be added at the end of the video src/app/+video-editor/edit/video-editor-edit.component.ts 124 - - "" image watermark will be added to the video"" image watermark will be added to the video + + + "" image watermark will be added to the video + "" image watermark will be added to the video src/app/+video-editor/edit/video-editor-edit.component.ts 128 - - Video will begin at and stop at Video will begin at and stop at + + + Video will begin at and stop at + Video will begin at and stop at src/app/+video-editor/edit/video-editor-edit.component.ts 135 - - Video will begin at Video will begin at + + + Video will begin at + Video will begin at src/app/+video-editor/edit/video-editor-edit.component.ts 139 - - Video will stop at Video will stop at + + + Video will stop at + Video will stop at src/app/+video-editor/edit/video-editor-edit.component.ts 143 - - Edit videoEdit video + + + Edit video + Edit video src/app/+video-editor/video-editor-routing.module.ts 15 @@ -11195,23 +11285,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Stop autoplaying next video Non reproducir automáticamente o seguinte vídeo - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts234 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts234 + Autoplay next video Reprodución automática do seg. vídeo - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts235 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts235 + Stop looping playlist videos Deter a reprodución en bucle - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts240 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts240 + Loop playlist videos Reproduce en bucle a lista - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts241 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts241 + Placeholder image Imaxe como marcador @@ -11221,8 +11311,8 @@ 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>? - Este vídeo non está dispoñible na túa instancia. Queres ser redirixida á instancia orixinal: <a href="">/a>? + This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? + Este vídeo non está dispoñible na túa instancia. Queres ser redirixida á instancia orixinal: <a href="">/a>? src/app/+videos/+video-watch/video-watch.component.ts301 @@ -11248,27 +11338,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Cancel Cancelar - - - - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+admin/follows/following-list/follow-modal.component.html33src/app/+login/login.component.html125src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-video-imports/my-video-imports.component.html31src/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/shared/video-caption-edit-modal/video-caption-edit-modal.component.html26src/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.ts425src/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.html90src/app/shared/shared-moderation/user-ban-modal.component.html34src/app/shared/shared-moderation/video-block.component.html46src/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.html125 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-video-imports/my-video-imports.component.html31 + 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/shared/video-caption-edit-modal/video-caption-edit-modal.component.html26 + 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.ts425 + 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.html90 + src/app/shared/shared-moderation/user-ban-modal.component.html34 + src/app/shared/shared-moderation/video-block.component.html46 + src/app/shared/shared-video-miniature/video-download.component.html152 + Autoplay is suspended Reprodución automática suspendida diff --git a/client/src/locale/angular.ko-KR.xlf b/client/src/locale/angular.ko-KR.xlf index 2936c91cd..3bea60e4f 100644 --- a/client/src/locale/angular.ko-KR.xlf +++ b/client/src/locale/angular.ko-KR.xlf @@ -1,29 +1,37 @@ - - - + + - CloseClose - - node_modules/src/alert/alert.ts79 - Slide of Slide of + Close + 닫기 + node_modules/src/alert/alert.ts79 + + + Slide of + 슬라이드 개 중 번째 node_modules/src/carousel/carousel.ts 147,157 Currently selected slide number read by screen reader - - PreviousPrevious + + + Previous + 이전 node_modules/src/carousel/carousel.ts 174 - - NextNext - - node_modules/src/carousel/carousel.ts197 - Select monthSelect month + + + Next + 다음 + node_modules/src/carousel/carousel.ts197 + + + Select month + 달 선택 node_modules/src/datepicker/datepicker-navigation-select.ts 74 @@ -32,8 +40,10 @@ node_modules/src/datepicker/datepicker-navigation-select.ts 74 - - Select yearSelect year + + + Select year + 연도 선택 node_modules/src/datepicker/datepicker-navigation-select.ts 74 @@ -42,8 +52,10 @@ node_modules/src/datepicker/datepicker-navigation-select.ts 74 - - Previous monthPrevious month + + + Previous month + 이전달 node_modules/src/datepicker/datepicker-navigation.ts 69 @@ -52,8 +64,10 @@ node_modules/src/datepicker/datepicker-navigation.ts 69 - - Next monthNext month + + + Next month + 다음달 node_modules/src/datepicker/datepicker-navigation.ts 69 @@ -62,104 +76,149 @@ node_modules/src/datepicker/datepicker-navigation.ts 69 - - «««« - - node_modules/src/pagination/pagination.ts247 - «« - - node_modules/src/pagination/pagination.ts266 - »» - - node_modules/src/pagination/pagination.ts285 - »»»» - - node_modules/src/pagination/pagination.ts305 - FirstFirst - - node_modules/src/pagination/pagination.ts320 - PreviousPrevious - - node_modules/src/pagination/pagination.ts335 - NextNext - - node_modules/src/pagination/pagination.ts347 - LastLast - - node_modules/src/pagination/pagination.ts357 - - - node_modules/src/progressbar/progressbar.ts60 - HHHH - - node_modules/src/timepicker/timepicker.ts133 - HoursHours - - node_modules/src/timepicker/timepicker.ts155 - MMMM - - node_modules/src/timepicker/timepicker.ts173 - MinutesMinutes - - node_modules/src/timepicker/timepicker.ts188 - Increment hoursIncrement hours - - node_modules/src/timepicker/timepicker.ts201 - Decrement hoursDecrement hours - - node_modules/src/timepicker/timepicker.ts223 - Increment minutesIncrement minutes - - node_modules/src/timepicker/timepicker.ts243 - Decrement minutesDecrement minutes - - node_modules/src/timepicker/timepicker.ts264 - SSSS - - node_modules/src/timepicker/timepicker.ts283 - SecondsSeconds - - node_modules/src/timepicker/timepicker.ts295 - Increment secondsIncrement seconds + + + «« + «« + node_modules/src/pagination/pagination.ts247 + + + « + « + node_modules/src/pagination/pagination.ts266 + + + » + » + node_modules/src/pagination/pagination.ts285 + + + »» + »» + node_modules/src/pagination/pagination.ts305 + + + First + 처음 + node_modules/src/pagination/pagination.ts320 + + + Previous + 이전 + node_modules/src/pagination/pagination.ts335 + + + Next + 다음 + node_modules/src/pagination/pagination.ts347 + + + Last + 마지막 + node_modules/src/pagination/pagination.ts357 + + + + + node_modules/src/progressbar/progressbar.ts60 + + + HH + HH + node_modules/src/timepicker/timepicker.ts133 + + + Hours + 시간 + node_modules/src/timepicker/timepicker.ts155 + + + MM + MM + node_modules/src/timepicker/timepicker.ts173 + + + Minutes + + node_modules/src/timepicker/timepicker.ts188 + + + Increment hours + 시간 늘리기 + node_modules/src/timepicker/timepicker.ts201 + + + Decrement hours + 시간 줄이기 + node_modules/src/timepicker/timepicker.ts223 + + + Increment minutes + 분 늘리기 + node_modules/src/timepicker/timepicker.ts243 + + + Decrement minutes + 분 줄이기 + node_modules/src/timepicker/timepicker.ts264 + + + SS + SS + node_modules/src/timepicker/timepicker.ts283 + + + Seconds + + node_modules/src/timepicker/timepicker.ts295 + + + Increment seconds + 초 늘리기 node_modules/src/timepicker/timepicker.ts 295 - - Decrement secondsDecrement seconds + + + Decrement seconds + 초 줄이기 node_modules/src/timepicker/timepicker.ts 295 - - + + + + node_modules/src/timepicker/timepicker.ts 295 - - + + + + node_modules/src/timepicker/timepicker.ts 295 - - CloseClose - - node_modules/src/toast/toast.ts108 + + + Close + 닫기 + node_modules/src/toast/toast.ts108 + + Close the left menu 왼쪽 메뉴 닫기 - - src/app/app.component.ts137 + src/app/app.component.ts137 + Open the left menu 왼쪽 메뉴 열기 - - src/app/app.component.ts139 - - + src/app/app.component.ts139 + You don't have notifications. 알림이 없습니다. @@ -169,212 +228,127 @@ published a new video: 님이 새 동영상을 게시했습니다: - + - + src/app/shared/shared-main/users/user-notifications.component.html15 The notification concerns a video now unavailable 이 알림은 이제 동영상을 사용할 수 없다는 내용입니다 - - src/app/shared/shared-main/users/user-notifications.component.html23 + src/app/shared/shared-main/users/user-notifications.component.html23 + Your video has been unblocked - 당신의 비디오 가 블럭 해제 되었습니다 - - src/app/shared/shared-main/users/user-notifications.component.html32 + 당신의 비디오 가 블럭 해제 되었습니다 + src/app/shared/shared-main/users/user-notifications.component.html32 + Your video has been blocked - 당신의 비디오 가 블럭 되었습니다 - - src/app/shared/shared-main/users/user-notifications.component.html40 + 당신의 비디오 가 블럭 되었습니다 + src/app/shared/shared-main/users/user-notifications.component.html40 + A new video abuse has been created on video - - A new video abuse - has been created on video - - - - + 새로운 영상 오남용 신고가 영상 에서 만들어졌습니다. src/app/shared/shared-main/users/user-notifications.component.html49 A new comment abuse has been created on video - - A new comment abuse - has been created on video - - - - + 새로운 댓글 오남용 신고가 영상 에서 생성되었습니다. src/app/shared/shared-main/users/user-notifications.component.html53 A new account abuse has been created on account - - A new account abuse - has been created on account - - - - + 새로운 계정 오남용 신고가 계정 에 대해서 생성되었습니다. src/app/shared/shared-main/users/user-notifications.component.html57 A new abuse has been created - - A new abuse - has been created - - + 새로운 오남용 신고 가 생성되었습니다 src/app/shared/shared-main/users/user-notifications.component.html62 Your abuse has been acceptedrejected - - Your abuse - - has been - - accepted - - rejected - - + 신고하셨던 오남용 신고 승인되었습니다반려되었습니다 src/app/shared/shared-main/users/user-notifications.component.html70 Abuse has a new message - - Abuse - - has a new message - - + 오남용 신고 에 메시지가 있습니다 src/app/shared/shared-main/users/user-notifications.component.html80 The recently added video has been automatically blocked - 최근에 추가된 비디오 has been automatically blocked - - src/app/shared/shared-main/users/user-notifications.component.html87 + 최근에 추가된 비디오 has been automatically blocked + src/app/shared/shared-main/users/user-notifications.component.html87 + commented your video - - - - commented your video - - - - - - 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 - - The notification concerns a comment now unavailable - - - src/app/shared/shared-main/users/user-notifications.component.html106src/app/shared/shared-main/users/user-notifications.component.html171 + 이 알림은 현재 사용할 수 없는 댓글에 관한 것입니다 + src/app/shared/shared-main/users/user-notifications.component.html106 + src/app/shared/shared-main/users/user-notifications.component.html171 + Your video has been published - - Your video - - - has been published - - - - src/app/shared/shared-main/users/user-notifications.component.html115 + 회원님의 동영상 이 게시되었습니다 + src/app/shared/shared-main/users/user-notifications.component.html115 + Your video import succeeded - - Your video import - - succeeded - - - - src/app/shared/shared-main/users/user-notifications.component.html124 + 회원님의 동영상 가져오기 가 성공했습니다 + src/app/shared/shared-main/users/user-notifications.component.html124 + Your video import failed - - Your video import - - failed - - - - 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 - - User - - - registered on your instance - - - - src/app/shared/shared-main/users/user-notifications.component.html139 + 사용자 가 회원님의 인스턴스에 등록했습니다 + src/app/shared/shared-main/users/user-notifications.component.html139 + is following your channel your account - - - - is following - - - your channel - - - your 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 + 님이 영상 에서 회원님을 언급했습니다. src/app/shared/shared-main/users/user-notifications.component.html 164 - Your instance has a new follower () awaiting your approval - - Your instance has - a new follower - ( - ) - - awaiting your approval - - - - src/app/shared/shared-main/users/user-notifications.component.html180 + 회원님의 인스턴스에 새 팔로워 () 가 승인을 기다리고 있습니다 + src/app/shared/shared-main/users/user-notifications.component.html180 + Your instance automatically followed - - Your instance automatically followed - - - - - - src/app/shared/shared-main/users/user-notifications.component.html189 - 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.html189 + + + A new version of the plugin/theme is available: + 플러그인/테마 의 새로운 버전을 사용할 수 있습니다: 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: + 새로운 버전의 PeerTube 를 사용할 수 있습니다: src/app/shared/shared-main/users/user-notifications.component.html 206,207 @@ -382,27 +356,29 @@ The notification points to content now unavailable - The notification points to content now unavailable - - src/app/shared/shared-main/users/user-notifications.component.html213 + 이 알림은 현재 사용할 수 없는 콘텐츠를 가리킵니다 + src/app/shared/shared-main/users/user-notifications.component.html213 + Change your avatar - Change your avatar - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html18 + 아바타 변경 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html18 + Remove avatar - Remove avatar - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html40 + 아바타 제거 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html40 + - Account mutedAccount muted - - src/app/+admin/overview/videos/video-list.component.html79 - Server mutedServer muted - - src/app/+admin/overview/videos/video-list.component.html80 - + Account muted + 계정 침묵됨 + src/app/+admin/overview/videos/video-list.component.html79 + + + Server muted + 서버 침묵됨 + src/app/+admin/overview/videos/video-list.component.html80 + Save to 저장 @@ -411,46 +387,39 @@ Options 옵션 - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + Start at 시작 위치 - - - - - src/app/shared/shared-moderation/report-modals/video-report.component.html45src/app/shared/shared-share-modal/video-share.component.html139src/app/shared/shared-video-playlist/video-add-to-playlist.component.html34src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html69 + src/app/shared/shared-moderation/report-modals/video-report.component.html45 + src/app/shared/shared-share-modal/video-share.component.html139 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html34 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html69 + Stop at 종료 위치 - - - - - src/app/shared/shared-moderation/report-modals/video-report.component.html60src/app/shared/shared-share-modal/video-share.component.html170src/app/shared/shared-video-playlist/video-add-to-playlist.component.html35src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html83 + src/app/shared/shared-moderation/report-modals/video-report.component.html60 + src/app/shared/shared-share-modal/video-share.component.html170 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html35 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html83 + Your report will be sent to moderators of and will be forwarded to the video origin () too. - - Your report will be sent to moderators of - - and will be forwarded to the video origin ( - ) too - . - - - - src/app/shared/shared-moderation/report-modals/video-report.component.html72 + 회원님의 신고가 의 중재자에게 전송되었고 영상을 올린 곳 () 에도 전송될 것입니다. + src/app/shared/shared-moderation/report-modals/video-report.component.html72 + Please describe the issue... - Please describe the issue... - - - - src/app/shared/shared-moderation/report-modals/report.component.html42src/app/shared/shared-moderation/report-modals/report.component.html42src/app/shared/shared-moderation/report-modals/video-report.component.html78 + 문제점을 자세히 적어주세요... + src/app/shared/shared-moderation/report-modals/report.component.html42 + src/app/shared/shared-moderation/report-modals/report.component.html42 + src/app/shared/shared-moderation/report-modals/video-report.component.html78 + Search playlists - Search playlists + 재생목록 검색 src/app/shared/shared-video-playlist/video-add-to-playlist.component.html9 @@ -461,16 +430,17 @@ Display name 표시 이름 - - - - - - - - src/app/+manage/video-channel-edit/video-channel-edit.component.html43src/app/+manage/video-channel-edit/video-channel-edit.component.html43src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17src/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 - Short text to tell people how they can support the channel (membership platform...).<br /><br /> - When a video is uploaded in this channel, the video support field will be automatically filled by this text.Short text to tell people how they can support the channel (membership platform...).<br /><br /> + src/app/+manage/video-channel-edit/video-channel-edit.component.html43 + src/app/+manage/video-channel-edit/video-channel-edit.component.html43 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17 + 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 + + + Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text. + Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text. src/app/+manage/video-channel-edit/video-channel-edit.component.html @@ -481,71 +451,75 @@ 67,68 - - 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.html18 - + 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.html18 + Format Format - - src/app/shared/shared-video-miniature/video-download.component.html74 - + src/app/shared/shared-video-miniature/video-download.component.html74 + Video stream 동영상 스트림 - - src/app/shared/shared-video-miniature/video-download.component.html85 + src/app/shared/shared-video-miniature/video-download.component.html85 + Audio stream 오디오 스트림 - - src/app/shared/shared-video-miniature/video-download.component.html97 + src/app/shared/shared-video-miniature/video-download.component.html97 + Direct 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 파일) - - src/app/shared/shared-video-miniature/video-download.component.html121 - Advanced Advanced - - src/app/shared/shared-video-miniature/video-download.component.html134 - Simple Simple - - src/app/shared/shared-video-miniature/video-download.component.html142 + src/app/shared/shared-video-miniature/video-download.component.html121 + + + Advanced + 고급 + src/app/shared/shared-video-miniature/video-download.component.html134 + + + Simple + Simple + src/app/shared/shared-video-miniature/video-download.component.html142 + video - video - - - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts298src/app/shared/shared-video-miniature/video-download.component.ts56 - 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.ts333 - 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.ts352 - + 영상 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts298 + src/app/shared/shared-video-miniature/video-download.component.ts56 + + + 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.ts333 + + + 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.ts352 + subtitles - subtitles - - src/app/shared/shared-video-miniature/video-download.component.ts57 - - + 자막 + src/app/shared/shared-video-miniature/video-download.component.ts57 + Reason... 사유... - - src/app/shared/shared-moderation/user-ban-modal.component.html16 - Mute to also hide videos/commentsMute to also hide videos/comments + src/app/shared/shared-moderation/user-ban-modal.component.html16 + + + Mute to also hide videos/comments + Mute to also hide videos/comments src/app/shared/shared-moderation/user-ban-modal.component.html 27 @@ -556,19 +530,21 @@ 취소 - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html47src/app/shared/shared-video-miniature/videos-selection.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html47 + src/app/shared/shared-video-miniature/videos-selection.component.html22 + Submit 게시 - - - - - - - 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.html94 - 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.html94 + + + 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 @@ -583,30 +559,29 @@ What is the issue? - What is the issue? + 문제점이 무엇인가요? src/app/shared/shared-moderation/report-modals/report.component.html13 src/app/shared/shared-moderation/report-modals/video-report.component.html13 src/app/shared/shared-moderation/report-modals/report.component.html13 - - Element not foundElement not found - - src/app/shared/shared-search/find-in-bulk.service.ts85 - + Element not found + Element not found + src/app/shared/shared-search/find-in-bulk.service.ts85 + 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 + 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.html45 + 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.html45 + {VAR_PLURAL, plural, =1 {1 view} other { views}} {VAR_PLURAL, plural, =1 {1 view} other { @@ -614,7 +589,6 @@ src/app/shared/shared-video/video-views-counter.component.html3 - {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} @@ -623,51 +597,65 @@ 7 - 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 - Blocked - - src/app/+admin/overview/videos/video-list.component.html82src/app/shared/shared-video-miniature/video-miniature.component.html59 - Are you sure you want to delete these videos?Are you sure you want to delete these videos? - - src/app/+admin/overview/videos/video-list.component.ts197 - Deleted videos.Deleted videos. + 차단함 + src/app/+admin/overview/videos/video-list.component.html82 + src/app/shared/shared-video-miniature/video-miniature.component.html59 + + + Are you sure you want to delete these videos? + Are you sure you want to delete these videos? + src/app/+admin/overview/videos/video-list.component.ts197 + + + Deleted videos. + Deleted videos. src/app/+admin/overview/videos/video-list.component.ts 204 - - Unblocked videos.Unblocked videos. + + + Unblocked videos. + Unblocked videos. src/app/+admin/overview/videos/video-list.component.ts 216 - - Are you sure you want to delete HLS streaming playlists?Are you sure you want to delete HLS streaming playlists? + + + Are you sure you want to delete HLS streaming playlists? + Are you sure you want to delete HLS streaming playlists? src/app/+admin/overview/videos/video-list.component.ts 226 - - Are you sure you want to delete WebTorrent files of videos?Are you sure you want to delete WebTorrent files of videos? + + + Are you sure you want to delete WebTorrent files of videos? + Are you sure you want to delete WebTorrent files of videos? src/app/+admin/overview/videos/video-list.component.ts 227 - - Files were removed.Files were removed. + + + Files were removed. + 파일이 이미 삭제되었습니다. src/app/+admin/overview/videos/video-list.component.ts 235 - - Transcoding jobs created.Transcoding jobs created. + + + Transcoding jobs created. + Transcoding jobs created. src/app/+admin/overview/videos/video-list.component.ts 247 @@ -676,114 +664,102 @@ Sensitive 민감 - - src/app/shared/shared-video-miniature/video-miniature.component.html63 - + src/app/shared/shared-video-miniature/video-miniature.component.html63 + - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + Updated Updated - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + Unavailable 사용 불가 - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html44 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html44 + Deleted 삭제됨 - - - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html47src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html46 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html47 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html46 + Edit starts/stops at 시작 / 종료 지점 수정 - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html62 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html62 + 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.html94 + 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.html94 + Delete from 재생목록 에서 삭제됨 - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html100 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html100 + 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 historyVideos with the most interactions for recent videos, minus user history - - src/app/+videos/video-list/videos-list-common-page.component.ts203 - + 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 + - Only live videosOnly live videos - - src/app/+my-library/my-videos/my-videos.component.ts96 + Only live videos + 실시간 영상만 + src/app/+my-library/my-videos/my-videos.component.ts96 + Edit 편집 - - - - - - - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html11src/app/+admin/overview/users/user-edit/user-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.html189src/app/+videos/+video-edit/shared/video-edit.component.html310src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + src/app/+admin/overview/users/user-edit/user-edit.component.html11 + src/app/+admin/overview/users/user-edit/user-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.html189 + src/app/+videos/+video-edit/shared/video-edit.component.html310 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + Truncated preview 부분적인 미리보기 - - src/app/shared/shared-forms/markdown-textarea.component.html12 - - + src/app/shared/shared-forms/markdown-textarea.component.html12 + Complete preview 완전한 미리보기 - - src/app/shared/shared-forms/markdown-textarea.component.html20 + src/app/shared/shared-forms/markdown-textarea.component.html20 + - <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: - <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: + <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: + <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: src/app/shared/shared-main/misc/help.component.ts75 Recommended - Recommended + 추천 src/app/shared/shared-forms/peertube-checkbox.component.html33 @@ -793,7 +769,7 @@ Subscribe with a remote account: - Subscribe with a remote account: + 원격 계정으로 구독: src/app/shared/shared-user-subscription/subscribe-button.component.html 62 @@ -809,27 +785,36 @@ 로컬 계정으로 구독 src/app/shared/shared-user-subscription/subscribe-button.component.html58 - The live stream will be automatically terminated. - The live stream will be automatically terminated. - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts228 - will be duplicated by your instance. will be duplicated by your instance. - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts249 - Do you really want to remove "" files?Do you really want to remove "" files? - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 - Remove "" filesRemove "" files - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts274 - Removed files of .Removed files of . - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts280 - Transcoding jobs created for .Transcoding jobs created for . - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts292 + 실시간 스트림이 자동으로 종료되었습니다. + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts228 + + + will be duplicated by your instance. + 이(가) 회원님의 인스턴스에 복제될 것입니다. + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts249 + + + Do you really want to remove "" files? + Do you really want to remove "" files? + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + + + Remove "" files + Remove "" files + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts274 + + + Removed files of . + Removed files of . + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts280 + + + Transcoding jobs created for . + Transcoding jobs created for . + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts292 + Using a syndication feed 신디케이션 피드 사용 @@ -842,29 +827,29 @@ PROFILE SETTINGS - PROFILE SETTINGS + 프로필 설정 src/app/+my-account/my-account-settings/my-account-settings.component.html12 Remote subscribeRemote interact - Remote subscribe - - Remote interact - + Remote subscribe + + Remote 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). - 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.html17 + 이 채널을 ActivityPub와 호환되는 연합우주의 인스턴스에서 구독하실 수 있습니다 (예시: PeerTube, Mastodon, Pleroma). + src/app/shared/shared-user-subscription/remote-subscribe.component.html17 + 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.html25 + src/app/shared/shared-user-subscription/remote-subscribe.component.html25 + PeerTube version PeerTube 버전 @@ -873,16 +858,16 @@ Default NSFW/sensitive videos policycan be redefined by the users - Default NSFW/sensitive videos policy - - can 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 User registration allowed - User registration allowed + 사용자 등록이 허용됨 src/app/shared/shared-instance/instance-features-table.component.html21 @@ -898,7 +883,7 @@ Live streaming enabled - Live streaming enabled + 실시간 스트리밍이 허용됨 src/app/shared/shared-instance/instance-features-table.component.html71 @@ -908,7 +893,7 @@ Max parallel lives - Max parallel lives + Max parallel lives src/app/shared/shared-instance/instance-features-table.component.html85 @@ -918,34 +903,35 @@ Requires manual validation by moderators - Requires manual validation by moderators + 중재자의 수동 승인 필요 src/app/shared/shared-instance/instance-features-table.component.html41 Automatically published - Automatically published + 자동으로 게시 src/app/shared/shared-instance/instance-features-table.component.html42 Video quota 영상 업로드 제한 - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html151src/app/+admin/overview/users/user-edit/user-edit.component.html151src/app/+admin/overview/users/user-list/user-list.component.ts128src/app/shared/shared-instance/instance-features-table.component.html47 + src/app/+admin/overview/users/user-edit/user-edit.component.html151 + src/app/+admin/overview/users/user-edit/user-edit.component.html151 + src/app/+admin/overview/users/user-list/user-list.component.ts128 + src/app/shared/shared-instance/instance-features-table.component.html47 + Unlimited ( per day) 무제한 - (하루에 + (하루에 ) - + - - src/app/shared/shared-instance/instance-features-table.component.html60 + src/app/shared/shared-instance/instance-features-table.component.html60 + Import - Import + 가져오기 src/app/shared/shared-instance/instance-features-table.component.html92 src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html44 src/app/+videos/+video-edit/video-add-components/video-import-url.component.html36 @@ -953,8 +939,8 @@ 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.html19 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html19 + HTTP import (YouTube, Vimeo, direct URL...) HTTP import (YouTube, Vimeo, direct URL...) @@ -962,25 +948,27 @@ 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 + P2P 활성화됨 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 - - By users on this instanceBy users on this instance + + + By users on this instance + By users on this instance src/app/shared/shared-instance/instance-statistics.component.html 4 @@ -989,26 +977,30 @@ Local 로컬 - - src/app/shared/shared-video-miniature/video-filters.model.ts126 + src/app/shared/shared-video-miniature/video-filters.model.ts126 + 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 - - viewsviews + + + views + 시청 src/app/shared/shared-instance/instance-statistics.component.html 31 - - commentscomments + + + comments + 댓글 src/app/shared/shared-instance/instance-statistics.component.html 41 @@ -1017,144 +1009,158 @@ src/app/shared/shared-instance/instance-statistics.component.html 75 - - hosted videohosted video + + + hosted video + hosted video src/app/shared/shared-instance/instance-statistics.component.html 51 - - In this instance federationIn this instance federation + + + In this instance federation + In this instance federation src/app/shared/shared-instance/instance-statistics.component.html 58 - - - - FollowingFollowing - - - - src/app/+admin/admin.component.ts75src/app/+admin/follows/following-list/following-list.component.html31src/app/+admin/follows/follows.routes.ts26 - FollowersFollowers - - - src/app/+admin/admin.component.ts80src/app/+admin/follows/follows.routes.ts35src/app/+my-library/my-library.component.ts72 + Following + 팔로잉 + src/app/+admin/admin.component.ts75 + src/app/+admin/follows/following-list/following-list.component.html31 + src/app/+admin/follows/follows.routes.ts26 + + + Followers + 팔로워 + src/app/+admin/admin.component.ts80 + src/app/+admin/follows/follows.routes.ts35 + src/app/+my-library/my-library.component.ts72 + 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 + 업로드가 실패했습니다 + 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 + 연결이 중단되었습니다 + src/app/helpers/utils/upload.ts16 + + + The server encountered an error + 서버에서 오류가 발생했습니다 + 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 + A banned user will no longer be able to login. 강퇴당한 사용자는 더 이상 로그인할 수 없습니다. - - src/app/shared/shared-moderation/user-ban-modal.component.html9 - - + src/app/shared/shared-moderation/user-ban-modal.component.html9 + Block video "" Block video " " - - src/app/shared/shared-moderation/video-block.component.html8 + src/app/shared/shared-moderation/video-block.component.html8 + Block live "" Block live "" - - src/app/shared/shared-moderation/video-block.component.html9 + src/app/shared/shared-moderation/video-block.component.html9 + Please describe the reason... - Please describe the reason... - - src/app/shared/shared-moderation/video-block.component.html20 - UnfederateUnfederate + 사유를 설명해주세요... + src/app/shared/shared-moderation/video-block.component.html20 + + + Unfederate + 연합 해지 src/app/shared/shared-moderation/video-block.component.html 31 - - This will ask remote instances to delete local videosThis will ask remote instances to delete local videos + + + This will ask remote instances to delete local videos + This will ask remote instances to delete local videos src/app/shared/shared-moderation/video-block.component.html 34 - - This will ask remote instances to delete this videoThis will ask remote instances to delete this video + + + This will ask remote instances to delete this video + This will ask remote instances to delete this video src/app/shared/shared-moderation/video-block.component.html 35 - - Blocking a live will automatically terminate the live stream. Blocking a live will automatically terminate the live stream. + + + Blocking a live will automatically terminate the live stream. + 실시간 방송을 차단하면 실시간 스트림이 자동으로 종료됩니다. src/app/shared/shared-moderation/video-block.component.html 40,42 - - Blocked videos.Blocked videos. + + + Blocked videos. + 영상 을 차단했습니다. src/app/shared/shared-moderation/video-block.component.ts 84 - - Blocked Blocked + + + Blocked + 을 차단함 src/app/shared/shared-moderation/video-block.component.ts 85 - 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 @@ -1162,18 +1168,13 @@ 로그인 - - src/app/+login/login.component.html2 + src/app/+login/login.component.html2 + 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.html6 + 죄송합니다. 외부 로그인 절차에 문제가 발생했습니다. 관리자에게 문의해주세요. + src/app/+login/login.component.html6 + Request new verification email. 새 인증 메일 요청하기 @@ -1181,121 +1182,122 @@ 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. - - src/app/+login/login.component.html64 + 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 + - 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 + 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 + User 사용자 - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html35src/app/shared/shared-users/user-admin.service.ts122 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html35 + src/app/shared/shared-users/user-admin.service.ts122 + 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. - - src/app/+login/login.component.html32 + + + ⚠️ Most email addresses do not include capital letters. + ⚠️ Most email addresses do not include capital letters. + src/app/+login/login.component.html32 + Password 암호 - - - - - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html117src/app/+admin/overview/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/overview/users/user-edit/user-edit.component.html117 + src/app/+admin/overview/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 + Or sign in with Or sign in with - - src/app/+login/login.component.html77 + src/app/+login/login.component.html77 + Forgot your password 암호 잊음 - - src/app/+login/login.component.html99 + src/app/+login/login.component.html99 + 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.html106 + 죄송합니다. 이 인스턴스의 관리자가 PeerTube 이메일 시스템을 설정하지 않아서 비밀번호를 복구할 수 없습니다. + src/app/+login/login.component.html106 + 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.html110 + src/app/+login/login.component.html110 + - 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. An email with the reset password instructions will be sent to . The link will expire within 1 hour. - - src/app/+login/login.component.ts122 + src/app/+login/login.component.ts122 + Email 이메일 - - - - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html105src/app/+admin/overview/users/user-edit/user-edit.component.html105src/app/+admin/overview/users/user-list/user-list.component.ts127src/app/+login/login.component.html115src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html6src/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/overview/users/user-edit/user-edit.component.html105 + src/app/+admin/overview/users/user-edit/user-edit.component.html105 + src/app/+admin/overview/users/user-list/user-list.component.ts127 + src/app/+login/login.component.html115 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html6 + 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 이메일 주소 - - - src/app/+login/login.component.html117src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + src/app/+login/login.component.html117 + 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.html130 - + src/app/+login/login.component.html130 + 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 + + + for + for src/app/+search/search.component.html 10 @@ -1306,8 +1308,8 @@ The link will expire within 1 hour. 암호 재설정 - - src/app/+reset-password/reset-password.component.html2 + src/app/+reset-password/reset-password.component.html2 + Confirm password 암호 다시 입력 @@ -1325,201 +1327,198 @@ The link will expire within 1 hour. Back - Back - + 이전 단계 Button on the registration form to go to the previous step - src/app/+signup/+register/register.component.ts42 + src/app/+signup/+register/register.component.ts42 + Next - Next - + 다음 단계 Button on the registration form to go to the previous step - src/app/+signup/+register/register.component.ts43 + src/app/+signup/+register/register.component.ts43 + Signup - Signup - + 회원가입 Button on the registration form to finalize the account and channel creation - src/app/+signup/+register/register.component.ts75 - + src/app/+signup/+register/register.component.ts75 + Filters Filters - + - + - - src/app/+search/search.component.html18 + src/app/+search/search.component.html18 + No results found 결과가 없습니다 - - src/app/+search/search.component.html32 - + src/app/+search/search.component.html32 + Welcome to PeerTube, dear administrator! - Welcome to PeerTube, dear administrator! - - src/app/modal/admin-welcome-modal.component.html3 + 관리자님, PeerTube에 오신 것을 환영합니다! + 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 - + 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 - + 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. Choosing your - instance name - , - setting up a description - , specifying - who you are - , + instance name + , + setting up a description + , specifying + who you are + , why - you created your instance - and - how long - you plan to - maintain your it - + 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.html57 + src/app/modal/admin-welcome-modal.component.html57 + 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.html63 + src/app/modal/admin-welcome-modal.component.html63 + Remind me later - Remind me later - - src/app/modal/admin-welcome-modal.component.html74 - Set up Set up - - src/app/modal/account-setup-warning-modal.component.html34 + 나중에 알리기 + src/app/modal/admin-welcome-modal.component.html74 + + + Set up + Set up + src/app/modal/account-setup-warning-modal.component.html34 + Configure my instance - - Configure my instance - - - src/app/modal/admin-welcome-modal.component.html80 + 내 인스턴스 설정 + src/app/modal/admin-welcome-modal.component.html80 + Configuration warning! - Configuration warning! + 설정 경고! src/app/modal/instance-config-warning-modal.component.html3 You enabled user registration on your instance but did not configure the following fields: - You enabled user registration on your instance but did not configure the following fields: + 인스턴스의 회원가입을 활성화하셨지만 다음의 필드들을 설정하지 않으셨네요: src/app/modal/instance-config-warning-modal.component.html10 Instance name - Instance name + 인스턴스 이름 src/app/modal/instance-config-warning-modal.component.html13 Instance short description - Instance short description + 짧은 인스턴스 소개문 src/app/modal/instance-config-warning-modal.component.html14 Who you are - Who you are + 당신은 누구인가요 src/app/modal/instance-config-warning-modal.component.html16 How long you plan to maintain your instance - How long you plan to maintain your instance + 이 인스턴스를 얼마나 오래 운영하실 예정이신가요 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 + 운영 비용을 어떻게 마련하실 계획이신가요 src/app/modal/instance-config-warning-modal.component.html 18 - How you will moderate your instance - How you will moderate your instance + 인스턴스를 어떻게 중재하실건가요 (중재/관리 방침) src/app/modal/instance-config-warning-modal.component.html20 Instance terms - Instance terms + 인스턴스 이용약관 src/app/modal/instance-config-warning-modal.component.html21 My settings - My settings - - - src/app/menu/menu.component.html124src/app/modal/quick-settings-modal.component.html3 + 내 설정 + src/app/menu/menu.component.html124 + 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. @@ -1532,15 +1531,15 @@ The link will expire within 1 hour. Please consider configuring these fields to help people to choose the appropriate instance. Without them, your instance may not be referenced on the JoinPeerTube website. Please consider configuring these fields to help people to choose - the appropriate instance - . + the appropriate instance + . Without them, your instance may not be referenced on the - JoinPeerTube website - . + JoinPeerTube website + . - - src/app/modal/instance-config-warning-modal.component.html24 + src/app/modal/instance-config-warning-modal.component.html24 + Don't show me this warning anymore Don't show me this warning anymore @@ -1549,21 +1548,22 @@ The link will expire within 1 hour. Close Close - - - src/app/modal/account-setup-warning-modal.component.html28src/app/modal/instance-config-warning-modal.component.html38src/app/shared/shared-video-live/live-stream-information.component.html38 + src/app/modal/account-setup-warning-modal.component.html28 + src/app/modal/instance-config-warning-modal.component.html38 + src/app/shared/shared-video-live/live-stream-information.component.html38 + Update live settings Update live settings - - src/app/shared/shared-video-live/live-stream-information.component.html41 + src/app/shared/shared-video-live/live-stream-information.component.html41 + Configure Configure - - src/app/modal/instance-config-warning-modal.component.html43 + src/app/modal/instance-config-warning-modal.component.html43 + Change the language 언어 변경 @@ -1574,126 +1574,119 @@ The link will expire within 1 hour. PeerTube 번역을 도와주세요! - - src/app/menu/language-chooser.component.html8 + src/app/menu/language-chooser.component.html8 + Public profile Public profile - - src/app/menu/menu.component.html28 + src/app/menu/menu.component.html28 + Interface: Interface: - - src/app/menu/menu.component.html38 + src/app/menu/menu.component.html38 + Videos: Videos: - - src/app/menu/menu.component.html45 + src/app/menu/menu.component.html45 + Sensitive: Sensitive: - - src/app/menu/menu.component.html55 + src/app/menu/menu.component.html55 + Help share videos Help share videos - - src/app/menu/menu.component.html61 + src/app/menu/menu.component.html61 + Keyboard shortcuts Keyboard shortcuts - - - src/app/menu/menu.component.html70src/app/menu/menu.component.html146 + src/app/menu/menu.component.html70 + src/app/menu/menu.component.html146 + powered by PeerTube - CopyLeft 2015-2021 powered by PeerTube - CopyLeft 2015-2021 - - src/app/menu/menu.component.html151 + src/app/menu/menu.component.html151 + Help Help - - src/app/menu/menu.component.html142 + src/app/menu/menu.component.html142 + Get help using PeerTube Get help using PeerTube - - src/app/menu/menu.component.html142 + src/app/menu/menu.component.html142 + powered by PeerTube powered by PeerTube - - src/app/menu/menu.component.html152 + src/app/menu/menu.component.html152 + Log out 로그아웃 - - src/app/menu/menu.component.html75 + src/app/menu/menu.component.html75 + My account My account - - src/app/menu/menu.component.html86 + src/app/menu/menu.component.html86 + My library My library - - src/app/menu/menu.component.html91 + src/app/menu/menu.component.html91 + Create an account 계정 만들기 - - - src/app/+login/login.component.html55src/app/menu/menu.component.html105 - - + src/app/+login/login.component.html55 + src/app/menu/menu.component.html105 + My video imports My video imports - - src/app/+my-library/my-library-routing.module.ts90 - + src/app/+my-library/my-library-routing.module.ts90 + Create a new playlist Create a new playlist - - src/app/+my-library/my-library-routing.module.ts49 - - + src/app/+my-library/my-library-routing.module.ts49 + Interface: Interface: - - src/app/menu/menu.component.html137 - - - - + src/app/menu/menu.component.html137 + Import jobs concurrency Import jobs concurrency - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html255 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html255 + 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.html256 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html256 + jobs in parallel jobs in parallel - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + 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.html269 - ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html269 + + + ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server + ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 272 @@ -1702,27 +1695,26 @@ The link will expire within 1 hour. Discover 발견 - - - 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 관리 - - src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts80src/app/menu/menu.component.html96 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts80 + src/app/menu/menu.component.html96 + About 정보 - - - src/app/menu/menu.component.html129 + src/app/menu/menu.component.html129 + Contact Contact - - src/app/+about/about-routing.module.ts36src/app/menu/menu.component.html141 + src/app/+about/about-routing.module.ts36 + src/app/menu/menu.component.html141 + View your notifications 알림 보기 @@ -1730,7 +1722,6 @@ The link will expire within 1 hour. src/app/menu/notification.component.html11 src/app/menu/notification.component.html11 - Mark all as read Mark all as read @@ -1747,23 +1738,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 @@ -1772,8 +1775,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. @@ -1781,85 +1784,93 @@ The link will expire within 1 hour. 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: Possible reasons: - 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 You may have used an outdated or broken link - - 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 - You may have typed the address or URL incorrectly You may have typed the address or URL incorrectly - - src/app/+page-not-found/page-not-found.component.html20 + 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.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 - 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.html39 + src/app/+page-not-found/page-not-found.component.html39 + Sepia seems to like it. Sepia seems to like it. 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 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.ts61 - + src/app/core/rest/rest-extractor.service.ts61 + GLOBAL SEARCH GLOBAL SEARCH @@ -1876,8 +1887,10 @@ The link will expire within 1 hour. Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent. Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent. 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 @@ -1886,40 +1899,39 @@ The link will expire within 1 hour. ADVANCED SEARCH ADVANCED SEARCH - - src/app/header/search-typeahead.component.html39 + src/app/header/search-typeahead.component.html39 + any instance any instance - - src/app/header/search-typeahead.component.html42 + src/app/header/search-typeahead.component.html42 + only followed instances only followed instances - - 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. Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows. - - src/app/header/search-typeahead.component.html41 + src/app/header/search-typeahead.component.html41 + will list the matching channel will list the matching channel - - - 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 will list the matching video - - src/app/header/search-typeahead.component.html56 - + src/app/header/search-typeahead.component.html56 + Search... 검색... - - src/app/+admin/plugins/plugin-search/plugin-search.component.html23 + src/app/+admin/plugins/plugin-search/plugin-search.component.html23 + In this instance's network In this instance's network @@ -1936,7 +1948,8 @@ The link will expire within 1 hour. src/app/+search/search-filters.component.html7 - Display onlyDisplay only + Display only + Display only src/app/+search/search-filters.component.html 21 @@ -1945,99 +1958,102 @@ The link will expire within 1 hour. Published date 공개 일시 - - src/app/+search/search-filters.component.html59 + src/app/+search/search-filters.component.html59 + Original publication year 원래 공개 일시 - - src/app/+search/search-filters.component.html73 + src/app/+search/search-filters.component.html73 + After... After... - - src/app/+search/search-filters.component.html85 + src/app/+search/search-filters.component.html85 + Before... Before... - - src/app/+search/search-filters.component.html95 + src/app/+search/search-filters.component.html95 + 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 + Display sensitive content 민감한 내용 표시 - - src/app/+search/search-filters.component.html40 + src/app/+search/search-filters.component.html40 + Yes - - src/app/+search/search-filters.component.html48 + src/app/+search/search-filters.component.html48 + No 아니오 - - src/app/+search/search-filters.component.html53 + src/app/+search/search-filters.component.html53 + Category 카테고리 - - - - src/app/+search/search-filters.component.html121src/app/+videos/+video-edit/shared/video-edit.component.html69src/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.html69 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html25 + Display all categories Display all categories - - src/app/+search/search-filters.component.html127 + src/app/+search/search-filters.component.html127 + Licence 라이선스 - - - - src/app/+search/search-filters.component.html134src/app/+videos/+video-edit/shared/video-edit.component.html80src/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.html80 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html34 + Display all licenses Display all licenses - - src/app/+search/search-filters.component.html140 + src/app/+search/search-filters.component.html140 + 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.html100src/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.html100 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html43 + Display all languages Display all languages - - src/app/+search/search-filters.component.html153 + src/app/+search/search-filters.component.html153 + All of these tags 이 태그들 모두 - - src/app/+search/search-filters.component.html162 + src/app/+search/search-filters.component.html162 + One of these 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 - - Result typesResult types + + + Result types + Result types src/app/+search/search-filters.component.html 187 @@ -2046,25 +2062,37 @@ The link will expire within 1 hour. Search target Search target - - src/app/+search/search-filters.component.html212 + src/app/+search/search-filters.component.html212 + Vidiverse Vidiverse - - src/app/+search/search-filters.component.html222 + src/app/+search/search-filters.component.html222 + Reset Reset - - src/app/+search/search-filters.component.html8src/app/+search/search-filters.component.html22src/app/+search/search-filters.component.html41src/app/+search/search-filters.component.html60src/app/+search/search-filters.component.html74src/app/+search/search-filters.component.html109src/app/+search/search-filters.component.html122src/app/+search/search-filters.component.html135src/app/+search/search-filters.component.html148src/app/+search/search-filters.component.html163src/app/+search/search-filters.component.html171src/app/+search/search-filters.component.html188src/app/+search/search-filters.component.html229 + src/app/+search/search-filters.component.html8 + src/app/+search/search-filters.component.html22 + src/app/+search/search-filters.component.html41 + src/app/+search/search-filters.component.html60 + src/app/+search/search-filters.component.html74 + src/app/+search/search-filters.component.html109 + src/app/+search/search-filters.component.html122 + src/app/+search/search-filters.component.html135 + src/app/+search/search-filters.component.html148 + src/app/+search/search-filters.component.html163 + src/app/+search/search-filters.component.html171 + src/app/+search/search-filters.component.html188 + src/app/+search/search-filters.component.html229 + Filter 필터 - - src/app/+search/search-filters.component.html233 + src/app/+search/search-filters.component.html233 + Video channels Video channels @@ -2085,26 +2113,32 @@ The link will expire within 1 hour. 기존 자막을 이 자막으로 덮어씁니다! - - src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html30 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html30 + Add this caption 이 자막 추가 src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html42 - - Edit captionEdit caption + + + Edit caption + Edit caption src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html 5 - - CaptionCaption + + + Caption + Caption src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html 10 - - Edit this captionEdit this caption + + + Edit this caption + Edit this caption src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html 31 @@ -2113,223 +2147,258 @@ The link will expire within 1 hour. Title 제목 - - src/app/+videos/+video-edit/shared/video-edit.component.html17 + src/app/+videos/+video-edit/shared/video-edit.component.html17 + Tags 태그 - - - src/app/+videos/+video-edit/shared/video-edit.component.html25src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + src/app/+videos/+video-edit/shared/video-edit.component.html25 + 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. + Enter + to add a new tag. - - src/app/+videos/+video-edit/shared/video-edit.component.html29 + src/app/+videos/+video-edit/shared/video-edit.component.html29 + Enter a new tag 새 태그 입력 - - src/app/shared/shared-forms/select/select-tags.component.ts19 + src/app/shared/shared-forms/select/select-tags.component.ts19 + 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 - 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.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: - - src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts60 - Error in videos list component: Error in videos list component: + + + Error in video miniature component: + Error in video miniature component: + src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts60 + + + 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 - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts30src/app/+admin/overview/comments/video-comment-list.component.ts47src/app/+admin/overview/users/user-list/user-list.component.ts41src/app/+my-library/my-videos/my-videos.component.ts92src/app/shared/shared-abuse-list/abuse-list-table.component.ts39 + + + Advanced filters + Advanced filters + src/app/+admin/moderation/video-block-list/video-block-list.component.ts30 + src/app/+admin/overview/comments/video-comment-list.component.ts47 + src/app/+admin/overview/users/user-list/user-list.component.ts41 + src/app/+my-library/my-videos/my-videos.component.ts92 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts39 + No items found No items found - - src/app/shared/shared-forms/select/select-checkbox.component.html15 + src/app/shared/shared-forms/select/select-checkbox.component.html15 + Description 설명 - - - - - - - - - src/app/+about/about-instance/about-instance.component.html113src/app/+admin/config/edit-custom-config/edit-instance-information.component.html35src/app/+manage/video-channel-edit/video-channel-edit.component.html54src/app/+manage/video-channel-edit/video-channel-edit.component.html54src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html28src/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.html44 + src/app/+about/about-instance/about-instance.component.html113 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html35 + src/app/+manage/video-channel-edit/video-channel-edit.component.html54 + src/app/+manage/video-channel-edit/video-channel-edit.component.html54 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html28 + 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.html44 + Video descriptions are truncated by default and require manual action to expand them. Video descriptions are truncated by default and require manual action to expand them. - - src/app/+videos/+video-edit/shared/video-edit.component.html48 - Choose the appropriate licence for your work. Choose the appropriate licence for your work. - - src/app/+videos/+video-edit/shared/video-edit.component.html85 - + src/app/+videos/+video-edit/shared/video-edit.component.html48 + + + Choose the appropriate licence for your work. + Choose the appropriate licence for your work. + src/app/+videos/+video-edit/shared/video-edit.component.html85 + Channel 채널 - - - - - - - - - - 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.html42src/app/+videos/+video-edit/shared/video-edit.component.html64src/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.html42 + src/app/+videos/+video-edit/shared/video-edit.component.html64 + 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 + FAQ FAQ - - src/app/menu/menu.component.html143 + src/app/menu/menu.component.html143 + Frequently asked questions about PeerTube Frequently asked questions about PeerTube - - src/app/menu/menu.component.html143 + src/app/menu/menu.component.html143 + API API - - src/app/menu/menu.component.html145 + src/app/menu/menu.component.html145 + API documentation API documentation - - src/app/menu/menu.component.html145 + src/app/menu/menu.component.html145 + Schedule publication () Schedule publication ( ) - - src/app/+videos/+video-edit/shared/video-edit.component.html123 + src/app/+videos/+video-edit/shared/video-edit.component.html123 + Contains sensitive content Contains sensitive content - - src/app/+videos/+video-edit/shared/video-edit.component.html137 - 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.html141 - + src/app/+videos/+video-edit/shared/video-edit.component.html137 + + + 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.html141 + Publish after transcoding Publish after transcoding - - src/app/+videos/+video-edit/shared/video-edit.component.html147 + src/app/+videos/+video-edit/shared/video-edit.component.html147 + If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends. If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends. - - src/app/+videos/+video-edit/shared/video-edit.component.html151 + src/app/+videos/+video-edit/shared/video-edit.component.html151 + Basic info Basic info - - src/app/+videos/+video-edit/shared/video-edit.component.html11 + src/app/+videos/+video-edit/shared/video-edit.component.html11 + Add another caption Add another caption - - src/app/+videos/+video-edit/shared/video-edit.component.html174 + src/app/+videos/+video-edit/shared/video-edit.component.html174 + See the subtitle file See the subtitle file - - src/app/+videos/+video-edit/shared/video-edit.component.html183 + src/app/+videos/+video-edit/shared/video-edit.component.html183 + - Already uploaded ✔ + Already uploaded ✔ Already uploaded ✔ - - src/app/+videos/+video-edit/shared/video-edit.component.html187 + src/app/+videos/+video-edit/shared/video-edit.component.html187 + Will be created on update Will be created on update - - src/app/+videos/+video-edit/shared/video-edit.component.html196 + src/app/+videos/+video-edit/shared/video-edit.component.html196 + Cancel create Cancel create - - src/app/+videos/+video-edit/shared/video-edit.component.html198 - Will be edited on updateWill be edited on update + src/app/+videos/+video-edit/shared/video-edit.component.html198 + + + Will be edited on update + Will be edited on update src/app/+videos/+video-edit/shared/video-edit.component.html 204 - - Cancel editionCancel edition + + + Cancel edition + Cancel edition src/app/+videos/+video-edit/shared/video-edit.component.html 206 @@ -2338,130 +2407,141 @@ The link will expire within 1 hour. Will be deleted on update Will be deleted on update - - src/app/+videos/+video-edit/shared/video-edit.component.html212 + src/app/+videos/+video-edit/shared/video-edit.component.html212 + Cancel deletion Cancel deletion - - src/app/+videos/+video-edit/shared/video-edit.component.html214 + src/app/+videos/+video-edit/shared/video-edit.component.html214 + No captions for now. No captions for now. - - src/app/+videos/+video-edit/shared/video-edit.component.html226 + src/app/+videos/+video-edit/shared/video-edit.component.html226 + Live settings Live settings - - src/app/+videos/+video-edit/shared/video-edit.component.html235 - - + src/app/+videos/+video-edit/shared/video-edit.component.html235 + ⚠️ If you enable this option, your live will be terminated if you exceed your video quota ⚠️ If you enable this option, your live will be terminated if you exceed your video quota - - src/app/+videos/+video-edit/shared/video-edit.component.html288 + src/app/+videos/+video-edit/shared/video-edit.component.html288 + Automatically publish a replay when your live ends Automatically publish a replay when your live ends - - src/app/+videos/+video-edit/shared/video-edit.component.html284 - + src/app/+videos/+video-edit/shared/video-edit.component.html284 + Video preview Video preview - - src/app/+videos/+video-edit/shared/video-edit.component.html307 + src/app/+videos/+video-edit/shared/video-edit.component.html307 + Support Support - - src/app/+video-channels/video-channels.component.html17src/app/+videos/+video-edit/shared/video-edit.component.html316 - View accountView account - - - src/app/+video-channels/video-channels.component.html30 - View account View account - - src/app/+video-channels/video-channels.component.html43 - View owner account View owner account - - src/app/+video-channels/video-channels.component.html47 - VIDEO CHANNELVIDEO CHANNEL - - src/app/+video-channels/video-channels.component.html57 - Copy channel handleCopy channel handle - - src/app/+video-channels/video-channels.component.html68 - OWNER ACCOUNTOWNER ACCOUNT - - - src/app/+video-channels/video-channels.component.html23 + src/app/+video-channels/video-channels.component.html17 + src/app/+videos/+video-edit/shared/video-edit.component.html316 + + + View account + View account + src/app/+video-channels/video-channels.component.html30 + + + View account + View account + src/app/+video-channels/video-channels.component.html43 + + + View owner account + View owner account + src/app/+video-channels/video-channels.component.html47 + + + VIDEO CHANNEL + VIDEO CHANNEL + src/app/+video-channels/video-channels.component.html57 + + + Copy channel handle + Copy channel handle + src/app/+video-channels/video-channels.component.html68 + + + OWNER ACCOUNT + OWNER ACCOUNT + src/app/+video-channels/video-channels.component.html23 + Short text to tell people how they can support you (membership platform...). Short text to tell people how they can support you (membership platform...). - - src/app/+videos/+video-edit/shared/video-edit.component.html319 + src/app/+videos/+video-edit/shared/video-edit.component.html319 + Original publication date Original publication date - - src/app/+videos/+video-edit/shared/video-edit.component.html336 + src/app/+videos/+video-edit/shared/video-edit.component.html336 + This is the date when the content was originally published (e.g. the release date for a film) This is the date when the content was originally published (e.g. the release date for a film) - - src/app/+videos/+video-edit/shared/video-edit.component.html339 + src/app/+videos/+video-edit/shared/video-edit.component.html339 + Plugin settings Plugin settings - - src/app/+videos/+video-edit/shared/video-edit.component.html370 - OtherOther - - src/app/+videos/+video-edit/shared/video-edit.component.ts190src/app/shared/shared-forms/select/select-languages.component.ts50 + src/app/+videos/+video-edit/shared/video-edit.component.html370 + + + Other + Other + src/app/+videos/+video-edit/shared/video-edit.component.ts190 + src/app/shared/shared-forms/select/select-languages.component.ts50 + Enable video comments Enable video comments - - src/app/+videos/+video-edit/shared/video-edit.component.html357 + src/app/+videos/+video-edit/shared/video-edit.component.html357 + Enable download Enable download - - src/app/+videos/+video-edit/shared/video-edit.component.html362 + src/app/+videos/+video-edit/shared/video-edit.component.html362 + Advanced settings Advanced settings - - src/app/+videos/+video-edit/shared/video-edit.component.html300 + src/app/+videos/+video-edit/shared/video-edit.component.html300 + URL URL - - - - src/app/+videos/+video-edit/video-add-components/video-import-url.component.html6src/app/shared/shared-share-modal/video-share.component.html24src/app/shared/shared-share-modal/video-share.component.html92 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html6 + src/app/shared/shared-share-modal/video-share.component.html24 + src/app/shared/shared-share-modal/video-share.component.html92 + You can import any URL supported by youtube-dl or URL 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 URL supported by youtube-dl or URL 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-url.component.html10 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html10 + Sorry, but something went wrong Sorry, but something went wrong - - - - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.html43src/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.html43 + 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. @@ -2471,7 +2551,6 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/video-add-components/video-import-url.component.html48 - Select the file to upload Select the file to upload @@ -2481,20 +2560,24 @@ The link will expire within 1 hour. Scheduled Scheduled - - src/app/+videos/+video-edit/shared/video-edit.component.ts209 + src/app/+videos/+video-edit/shared/video-edit.component.ts209 + Hide the video until a specific date Hide the video until a specific date - - src/app/+videos/+video-edit/shared/video-edit.component.ts210 - Normal liveNormal live + src/app/+videos/+video-edit/shared/video-edit.component.ts210 + + + Normal live + Normal live src/app/+videos/+video-edit/video-add-components/video-go-live.component.html 22 - - Permanent/recurring livePermanent/recurring live + + + Permanent/recurring live + Permanent/recurring live src/app/+videos/+video-edit/video-add-components/video-go-live.component.html 29 @@ -2503,80 +2586,88 @@ The link will expire within 1 hour. Video background image Video background image - - 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. Image that will be merged with your audio file. - + The chosen image will be definitive and cannot be modified. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html36 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html36 + Total video uploaded Total video uploaded - - 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… Processing… - - 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 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 Total video quota - - - src/app/+admin/overview/users/user-list/user-list.component.html131src/app/shared/shared-main/users/user-quota.component.html3 + src/app/+admin/overview/users/user-list/user-list.component.html131 + src/app/shared/shared-main/users/user-quota.component.html3 + Congratulations! Your video is now available in your private library. Congratulations! Your video is now available in your private library. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html90 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html90 + Publish will be available when upload is finished Publish will be available when upload is finished - - 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 Publish - - - 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.ts173 + 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.ts173 + 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 @@ -2585,8 +2676,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 @@ -2608,111 +2699,123 @@ The link will expire within 1 hour. Congratulations, the video will be imported with BitTorrent! You can already add information about this video. - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html55 - 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.ts118 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html55 + + + 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.ts118 + 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.ts103 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts103 + 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.ts105 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts105 + Live published. Live published. - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 - Stream only once and save a replay of your liveStream only once and save a replay of your live - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts157 - Stream only onceStream only once - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts160 - Stream multiple times, replays can't be savedStream multiple times, replays can't be saved - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts165 - Stream multiple times using the same URLStream multiple times using the same URL - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts168 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts134 + + + Stream only once and save a replay of your live + Stream only once and save a replay of your live + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts157 + + + Stream only once + Stream only once + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts160 + + + Stream multiple times, replays can't be saved + Stream multiple times, replays can't be saved + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts165 + + + Stream multiple times using the same URL + Stream multiple times using the same URL + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts168 + Go Live Go Live - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.html37 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html37 + Max live duration is . If your live reaches this limit, it will be automatically terminated. Max live duration is . If your live reaches this limit, it will be automatically terminated. - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.html47 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html47 + 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 recommend you to not use the - root - user to publish your videos, since it's the super-admin account of your instance. + 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. + create a dedicated account + to upload your videos. - - src/app/+videos/+video-edit/video-add.component.html33 + src/app/+videos/+video-edit/video-add.component.html33 + Import Import - - 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 Upload a file - - 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.html4 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html4 + AUTOPLAY AUTOPLAY - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 - Next video to be playedNext video to be played + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + + + Next video to be played + Next video to be played src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html 16 @@ -2721,8 +2824,8 @@ The link will expire within 1 hour. 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 Share @@ -2733,14 +2836,18 @@ The link will expire within 1 hour. Share the playlist Share the playlist src/app/shared/shared-share-modal/video-share.component.html11 - - This playlist is private so you won't be able to share it with external usersThis playlist is private so you won't be able to share it with external users + + + This playlist is private so you won't be able to share it with external users + This playlist is private so you won't be able to share it with external users src/app/shared/shared-share-modal/video-share.component.html 14 - - Update playlist privacy Update playlist privacy + + + Update playlist privacy + Update playlist privacy src/app/shared/shared-share-modal/video-share.component.html 16,18 @@ -2749,20 +2856,24 @@ The link will expire within 1 hour. Share the playlist at this video position Share the playlist at this video position - - src/app/shared/shared-share-modal/video-share.component.html71 + src/app/shared/shared-share-modal/video-share.component.html71 + Share the video Share the video - - src/app/shared/shared-share-modal/video-share.component.html79 - This video is private so you won't be able to share it with external usersThis video is private so you won't be able to share it with external users + src/app/shared/shared-share-modal/video-share.component.html79 + + + This video is private so you won't be able to share it with external users + This video is private so you won't be able to share it with external users src/app/shared/shared-share-modal/video-share.component.html 82 - - Update video privacy Update video privacy + + + Update video privacy + Update video privacy src/app/shared/shared-share-modal/video-share.component.html 84,86 @@ -2771,43 +2882,45 @@ The link will expire within 1 hour. QR-Code QR-Code - - - src/app/shared/shared-share-modal/video-share.component.html35src/app/shared/shared-share-modal/video-share.component.html102 + src/app/shared/shared-share-modal/video-share.component.html35 + src/app/shared/shared-share-modal/video-share.component.html102 + The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites). The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites). - - - src/app/shared/shared-share-modal/video-share.component.html54src/app/shared/shared-share-modal/video-share.component.html121 + src/app/shared/shared-share-modal/video-share.component.html54 + src/app/shared/shared-share-modal/video-share.component.html121 + Embed Embed - - - src/app/shared/shared-share-modal/video-share.component.html45src/app/shared/shared-share-modal/video-share.component.html112 + src/app/shared/shared-share-modal/video-share.component.html45 + src/app/shared/shared-share-modal/video-share.component.html112 + Auto select subtitle Auto select subtitle - - src/app/shared/shared-share-modal/video-share.component.html154 + src/app/shared/shared-share-modal/video-share.component.html154 + More customization More customization - - src/app/shared/shared-share-modal/video-share.component.html255 + src/app/shared/shared-share-modal/video-share.component.html255 + Less customization Less customization - - src/app/shared/shared-share-modal/video-share.component.html263 - Support Support + src/app/shared/shared-share-modal/video-share.component.html263 + + + Support + Support src/app/shared/shared-support-modal/support-modal.component.html 3 @@ -2816,41 +2929,46 @@ The link will expire within 1 hour. Login Login - - src/app/+login/login-routing.module.ts12src/app/+login/login.component.html48src/app/menu/menu.component.html102src/app/menu/menu.component.html103 + src/app/+login/login-routing.module.ts12 + src/app/+login/login.component.html48 + src/app/menu/menu.component.html102 + src/app/menu/menu.component.html103 + Autoplay Autoplay - - src/app/shared/shared-share-modal/video-share.component.html185 - + src/app/shared/shared-share-modal/video-share.component.html185 + Maybe later Maybe later - - src/app/shared/shared-support-modal/support-modal.component.html11 + src/app/shared/shared-support-modal/support-modal.component.html11 + Muted Muted - - - src/app/+admin/overview/users/user-list/user-list.component.html104src/app/shared/shared-moderation/account-block-badges.component.html1src/app/shared/shared-share-modal/video-share.component.html192 + src/app/+admin/overview/users/user-list/user-list.component.html104 + src/app/shared/shared-moderation/account-block-badges.component.html1 + src/app/shared/shared-share-modal/video-share.component.html192 + Loop Loop - - src/app/shared/shared-share-modal/video-share.component.html199 + src/app/shared/shared-share-modal/video-share.component.html199 + Use origin instance URL Use origin instance URL - - src/app/shared/shared-share-modal/video-share.component.html206 + src/app/shared/shared-share-modal/video-share.component.html206 + Display video title Display video title - - src/app/shared/shared-share-modal/video-share.component.html215 - P2PP2P + src/app/shared/shared-share-modal/video-share.component.html215 + + + P2P + P2P src/app/shared/shared-share-modal/video-share.component.html 222 @@ -2859,81 +2977,75 @@ The link will expire within 1 hour. Display privacy warning Display privacy warning - - src/app/shared/shared-share-modal/video-share.component.html229 + src/app/shared/shared-share-modal/video-share.component.html229 + Display player controls Display player controls - - src/app/shared/shared-share-modal/video-share.component.html236 + src/app/shared/shared-share-modal/video-share.component.html236 + Display PeerTube button link Display PeerTube button link - - src/app/shared/shared-share-modal/video-share.component.html243 + src/app/shared/shared-share-modal/video-share.component.html243 + 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.html38 + src/app/+videos/+video-watch/shared/information/video-alert.component.html38 + Published Published - - - src/app/+videos/+video-watch/video-watch.component.html27 + src/app/+videos/+video-watch/video-watch.component.html27 + 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 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 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 Support options for this video - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + By By - - src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+videos/+video-watch/video-watch.component.html67 + Subscribe Subscribe @@ -2957,289 +3069,296 @@ The link will expire within 1 hour. Show more 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 Show less - - 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 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.html5 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html5 + More information More information - - - - - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + 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.html50 + src/app/+admin/moderation/video-block-list/video-block-list.component.html50 + NSFW NSFW - - src/app/+admin/moderation/video-block-list/video-block-list.component.html56src/app/+admin/overview/videos/video-list.component.html75 + src/app/+admin/moderation/video-block-list/video-block-list.component.html56 + src/app/+admin/overview/videos/video-list.component.html75 + Get more information 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 OK - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html12 - Transcoding failed, this video may not work properly. - Transcoding failed, this video may not work properly. + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html12 + + + Transcoding failed, this video may not work properly. + Transcoding failed, this video may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 1,3 - - Move to external storage failed, this video may not work properly. - Move to external storage failed, this video may not work properly. + + + Move to external storage failed, this video may not work properly. + Move to external storage failed, this video may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 5,7 - - 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. + + + 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.html9 - 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.html9 + + + 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.html13 - The video is being edited, it may not work properly. - The video is being edited, it may not work properly. + src/app/+videos/+video-watch/shared/information/video-alert.component.html13 + + + The video is being edited, it may not work properly. + The video is being edited, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 17,19 - - 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.html21 - This video will be published on . - This video will be published on . + src/app/+videos/+video-watch/shared/information/video-alert.component.html21 + + + This video will be published on . + This video will be published on . - - src/app/+videos/+video-watch/shared/information/video-alert.component.html25 - This live has not started yet. - This live has not started yet. + src/app/+videos/+video-watch/shared/information/video-alert.component.html25 + + + This live has not started yet. + This live has not started yet. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html29 - This live has ended. - This live has ended. + src/app/+videos/+video-watch/shared/information/video-alert.component.html29 + + + This live has ended. + This live has ended. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html33 - - - + src/app/+videos/+video-watch/shared/information/video-alert.component.html33 + SORT BY SORT BY - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html10 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html10 + 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. No comments. - - 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.html73 - {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.html76 - 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.html73 + + + {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.html76 + + + View + View + src/app/+videos/+video-watch/shared/comment/video-comments.component.html81 + Comments are disabled. Comments are disabled. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html91 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html91 + 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 + Add comment... 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 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 + 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.html64 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html64 + Login to comment 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 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 + Highlighted comment 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 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 + 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 - - src/app/+admin/admin.component.ts85 + src/app/+admin/admin.component.ts85 + 1 host (without "http://") per line 1 host (without "http://") per line @@ -3250,9 +3369,9 @@ The link will expire within 1 hour. Your report will be sent to moderators of - and will be forwarded to the comment origin ( + and will be forwarded to the comment origin ( ) too - . + . src/app/shared/shared-moderation/report-modals/report.component.html36 @@ -3261,9 +3380,8 @@ 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 + Token renewed. Update your client configuration accordingly. Token renewed. Update your client configuration accordingly. @@ -3272,7 +3390,6 @@ The link will expire within 1 hour. 49 - SUBSCRIPTION FEED SUBSCRIPTION FEED @@ -3284,8 +3401,8 @@ 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. - - src/app/+my-account/my-account-applications/my-account-applications.component.html9 + src/app/+my-account/my-account-applications/my-account-applications.component.html9 + Feed URL Feed URL @@ -3313,52 +3430,30 @@ The link will expire within 1 hour. 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 + Filter... Filter... - - - - - - - - - - - src/app/shared/shared-forms/advanced-input-filter.component.html21 + src/app/shared/shared-forms/advanced-input-filter.component.html21 + Clear filters Clear filters - - - - - - - - - - - - - - - - src/app/shared/shared-forms/advanced-input-filter.component.html27src/app/shared/shared-main/misc/simple-search-input.component.html14 + src/app/shared/shared-forms/advanced-input-filter.component.html27 + src/app/shared/shared-main/misc/simple-search-input.component.html14 + Video/Comment/Account Video/Comment/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 - State State @@ -3368,55 +3463,55 @@ The link will expire within 1 hour. Created Created - - + + - - - - - - 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 Open actor page in a new tab - - src/app/+admin/follows/followers-list/followers-list.component.html42 + src/app/+admin/follows/followers-list/followers-list.component.html42 + Accepted Accepted - - - 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 Pending - - - 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 Accept - - - - 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 Refuse - - - 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. No follower found matching current 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. Your instance doesn't have any follower. - - src/app/+admin/follows/followers-list/followers-list.component.html65 + src/app/+admin/follows/followers-list/followers-list.component.html65 + Showing to of followers Showing @@ -3424,36 +3519,33 @@ The link will expire within 1 hour. of followers - - src/app/+admin/follows/followers-list/followers-list.component.html11 - - + src/app/+admin/follows/followers-list/followers-list.component.html11 + Redundancy allowed Redundancy allowed - - + + - - src/app/+admin/follows/following-list/following-list.component.html34 - + src/app/+admin/follows/following-list/following-list.component.html34 + Open instance in a new tab Open instance in a new 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. 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 @@ -3461,18 +3553,18 @@ The link will expire within 1 hour. of 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 Videos redundancies @@ -3488,30 +3580,30 @@ The link will expire within 1 hour. Remote videos duplicated by my instance src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html13 - Table parameters Table parameters - - src/app/+admin/overview/users/user-list/user-list.component.html47 + src/app/+admin/overview/users/user-list/user-list.component.html47 + Select columns Select columns - - src/app/+admin/overview/users/user-list/user-list.component.html53 + src/app/+admin/overview/users/user-list/user-list.component.html53 + Highlight banned users Highlight banned users - - src/app/+admin/overview/users/user-list/user-list.component.html59 + src/app/+admin/overview/users/user-list/user-list.component.html59 + Username Username - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html83src/app/+admin/overview/users/user-edit/user-edit.component.html83src/app/+admin/overview/users/user-list/user-list.component.ts125src/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/overview/users/user-edit/user-edit.component.html83 + src/app/+admin/overview/users/user-edit/user-edit.component.html83 + src/app/+admin/overview/users/user-list/user-list.component.ts125 + 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 @@ -3521,154 +3613,157 @@ The link will expire within 1 hour. john john - - - src/app/+admin/overview/users/user-edit/user-edit.component.html85src/app/+admin/overview/users/user-edit/user-edit.component.html85 + src/app/+admin/overview/users/user-edit/user-edit.component.html85 + src/app/+admin/overview/users/user-edit/user-edit.component.html85 + mail@example.com mail@example.com - - - src/app/+admin/overview/users/user-edit/user-edit.component.html107src/app/+admin/overview/users/user-edit/user-edit.component.html107 + src/app/+admin/overview/users/user-edit/user-edit.component.html107 + src/app/+admin/overview/users/user-edit/user-edit.component.html107 + If you leave the password empty, an email will be sent to the user. If you leave the password empty, an email will be sent to the user. - - - src/app/+admin/overview/users/user-edit/user-edit.component.html120src/app/+admin/overview/users/user-edit/user-edit.component.html120 + src/app/+admin/overview/users/user-edit/user-edit.component.html120 + src/app/+admin/overview/users/user-edit/user-edit.component.html120 + Role Role - - - src/app/+admin/overview/users/user-edit/user-edit.component.html136src/app/+admin/overview/users/user-edit/user-edit.component.html136src/app/+admin/overview/users/user-list/user-list.component.ts126 + src/app/+admin/overview/users/user-edit/user-edit.component.html136 + src/app/+admin/overview/users/user-edit/user-edit.component.html136 + src/app/+admin/overview/users/user-list/user-list.component.ts126 + Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . Transcoding is enabled. The video quota only takes into account - original - video size. - + original + video size. + At most, this user could upload ~ . - - - src/app/+admin/overview/users/user-edit/user-edit.component.html161src/app/+admin/overview/users/user-edit/user-edit.component.html161 + src/app/+admin/overview/users/user-edit/user-edit.component.html161 + src/app/+admin/overview/users/user-edit/user-edit.component.html161 + Daily video quota Daily video quota - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html172src/app/+admin/overview/users/user-edit/user-edit.component.html172src/app/shared/shared-main/users/user-quota.component.html13 + src/app/+admin/overview/users/user-edit/user-edit.component.html172 + src/app/+admin/overview/users/user-edit/user-edit.component.html172 + src/app/shared/shared-main/users/user-quota.component.html13 + Auth plugin Auth plugin - - - src/app/+admin/overview/users/user-edit/user-edit.component.html188src/app/+admin/overview/users/user-edit/user-edit.component.html188src/app/+admin/overview/users/user-list/user-list.component.ts135 + src/app/+admin/overview/users/user-edit/user-edit.component.html188 + src/app/+admin/overview/users/user-edit/user-edit.component.html188 + src/app/+admin/overview/users/user-list/user-list.component.ts135 + None (local authentication) None (local authentication) - - - src/app/+admin/overview/users/user-edit/user-edit.component.html192src/app/+admin/overview/users/user-edit/user-edit.component.html192 + src/app/+admin/overview/users/user-edit/user-edit.component.html192 + src/app/+admin/overview/users/user-edit/user-edit.component.html192 + Doesn't need review before a video goes public Doesn't need review before a video goes public - - - src/app/+admin/overview/users/user-edit/user-edit.component.html201src/app/+admin/overview/users/user-edit/user-edit.component.html201 + src/app/+admin/overview/users/user-edit/user-edit.component.html201 + src/app/+admin/overview/users/user-edit/user-edit.component.html201 + Send a link to reset the password by email to the user Send a link to reset the password by email to the user - - - src/app/+admin/overview/users/user-edit/user-edit.component.html226src/app/+admin/overview/users/user-edit/user-edit.component.html226 + src/app/+admin/overview/users/user-edit/user-edit.component.html226 + src/app/+admin/overview/users/user-edit/user-edit.component.html226 + Ask for new password Ask for new password - - - src/app/+admin/overview/users/user-edit/user-edit.component.html227src/app/+admin/overview/users/user-edit/user-edit.component.html227 + src/app/+admin/overview/users/user-edit/user-edit.component.html227 + src/app/+admin/overview/users/user-edit/user-edit.component.html227 + Manually set the user password Manually set the user password - - - src/app/+admin/overview/users/user-edit/user-edit.component.html231src/app/+admin/overview/users/user-edit/user-edit.component.html231 + src/app/+admin/overview/users/user-edit/user-edit.component.html231 + src/app/+admin/overview/users/user-edit/user-edit.component.html231 + Show Show - - src/app/+admin/overview/users/user-edit/user-password.component.html10src/app/shared/shared-forms/input-toggle-hidden.component.ts39 + src/app/+admin/overview/users/user-edit/user-password.component.html10 + src/app/shared/shared-forms/input-toggle-hidden.component.ts39 + Hide Hide - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/overview/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/overview/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 + Batch actions Batch actions - - - - - src/app/+admin/overview/comments/video-comment-list.component.html22src/app/+admin/overview/users/user-list/user-list.component.html18src/app/+admin/overview/videos/video-list.component.html18 - - + src/app/+admin/overview/comments/video-comment-list.component.html22 + src/app/+admin/overview/users/user-list/user-list.component.html18 + src/app/+admin/overview/videos/video-list.component.html18 + The user was banned The user was banned - - - src/app/+admin/overview/users/user-list/user-list.component.html109 + src/app/+admin/overview/users/user-list/user-list.component.html109 + Open account in a new tab Open account in a new tab - - - - - - - - src/app/+admin/overview/comments/video-comment-list.component.html69src/app/+admin/overview/users/user-list/user-list.component.html94src/app/+my-library/my-ownership/my-ownership.component.html38src/app/shared/shared-abuse-list/abuse-list-table.component.html44src/app/shared/shared-moderation/account-blocklist.component.html34src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/+admin/overview/comments/video-comment-list.component.html69 + src/app/+admin/overview/users/user-list/user-list.component.html94 + src/app/+my-library/my-ownership/my-ownership.component.html38 + src/app/shared/shared-abuse-list/abuse-list-table.component.html44 + src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/shared/shared-moderation/account-blocklist.component.html34 + Deleted account Deleted account - - src/app/shared/shared-abuse-list/abuse-list-table.component.html54 + src/app/shared/shared-abuse-list/abuse-list-table.component.html54 + User's email must be verified to login User's email must be verified to login - - - src/app/+admin/overview/users/user-list/user-list.component.html120 + src/app/+admin/overview/users/user-list/user-list.component.html120 + User's email is verified / User can login without email verification User's email is verified / User can login without email verification - - src/app/+admin/overview/users/user-list/user-list.component.html124 + src/app/+admin/overview/users/user-list/user-list.component.html124 + Total daily video quota Total daily video quota - - src/app/+admin/overview/users/user-list/user-list.component.html141 + src/app/+admin/overview/users/user-list/user-list.component.html141 + Ban reason: Ban reason: - - src/app/+admin/overview/users/user-list/user-list.component.html163 - Banned usersBanned users - - src/app/+admin/overview/users/user-list/user-list.component.ts45 + src/app/+admin/overview/users/user-list/user-list.component.html163 + + + Banned users + Banned users + src/app/+admin/overview/users/user-list/user-list.component.ts45 + Showing to of users Showing @@ -3676,50 +3771,49 @@ The link will expire within 1 hour. of users - - src/app/+admin/overview/users/user-list/user-list.component.html11 + src/app/+admin/overview/users/user-list/user-list.component.html11 + Moderation Moderation - - - src/app/+admin/admin.component.ts95src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts70src/app/+my-account/my-account.component.ts28 - - - - - - - + src/app/+admin/admin.component.ts95 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts70 + src/app/+my-account/my-account.component.ts28 + Video blocks Video blocks - - src/app/+admin/admin.component.ts109src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + src/app/+admin/admin.component.ts109 + src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + Muted accounts Muted accounts - - - src/app/+admin/admin.component.ts117src/app/+admin/moderation/moderation.routes.ts90src/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.ts117 + src/app/+admin/moderation/moderation.routes.ts90 + 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 Muted servers - - - src/app/+admin/admin.component.ts125src/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.ts125 + 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 + 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 Total size @@ -3733,32 +3827,36 @@ The link will expire within 1 hour. Your instance doesn't mirror any video. Your instance doesn't mirror any video. - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html79 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html79 + Your instance has no mirrored videos. Your instance has no mirrored videos. - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html80 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html80 + Enabled strategies stats Enabled strategies stats - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html89 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html89 + No redundancy strategy is enabled on your instance. No redundancy strategy is enabled on your instance. - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html93 - Used ()Used () + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html93 + + + Used () + Used () src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts 99 - - Available ()Available () + + + Available () + Available () src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts 105 @@ -3767,41 +3865,47 @@ The link will expire within 1 hour. Sensitive Sensitive - - 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 Unfederated - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html28src/app/+admin/moderation/video-block-list/video-block-list.component.html60 + src/app/+admin/moderation/video-block-list/video-block-list.component.html28 + src/app/+admin/moderation/video-block-list/video-block-list.component.html60 + Date Date - - + + - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html29src/app/+admin/overview/comments/video-comment-list.component.html46 + src/app/+admin/moderation/video-block-list/video-block-list.component.html29 + src/app/+admin/overview/comments/video-comment-list.component.html46 + Select this row Select this row - - - src/app/+admin/overview/comments/video-comment-list.component.html54src/app/+admin/overview/users/user-list/user-list.component.html79src/app/+admin/overview/videos/video-list.component.html51 - See full commentSee full comment - - src/app/+admin/overview/comments/video-comment-list.component.html58 + src/app/+admin/overview/comments/video-comment-list.component.html54 + src/app/+admin/overview/users/user-list/user-list.component.html79 + src/app/+admin/overview/videos/video-list.component.html51 + + + See full comment + See full comment + src/app/+admin/overview/comments/video-comment-list.component.html58 + Actions Actions - - - - - src/app/+admin/follows/followers-list/followers-list.component.html23src/app/+admin/moderation/video-block-list/video-block-list.component.html43src/app/+admin/overview/comments/video-comment-list.component.html64src/app/+my-library/my-ownership/my-ownership.component.html18src/app/shared/shared-abuse-list/abuse-list-table.component.html39 - FollowerFollower + src/app/+admin/follows/followers-list/followers-list.component.html23 + src/app/+admin/moderation/video-block-list/video-block-list.component.html43 + src/app/+admin/overview/comments/video-comment-list.component.html64 + src/app/+my-library/my-ownership/my-ownership.component.html18 + src/app/shared/shared-abuse-list/abuse-list-table.component.html39 + + + Follower + Follower src/app/+admin/follows/followers-list/followers-list.component.html 24 @@ -3810,70 +3914,88 @@ The link will expire within 1 hour. Commented video Commented video - - src/app/+admin/overview/comments/video-comment-list.component.html81 + src/app/+admin/overview/comments/video-comment-list.component.html81 + No comments found matching current filters. No comments found matching current filters. - - src/app/+admin/overview/comments/video-comment-list.component.html106 + src/app/+admin/overview/comments/video-comment-list.component.html106 + No comments found. No comments found. - - src/app/+admin/overview/comments/video-comment-list.component.html107 - Local commentsLocal comments - - src/app/+admin/overview/comments/video-comment-list.component.ts51 - Remote commentsRemote comments - - src/app/+admin/overview/comments/video-comment-list.component.ts55 + src/app/+admin/overview/comments/video-comment-list.component.html107 + + + Local comments + Local comments + src/app/+admin/overview/comments/video-comment-list.component.ts51 + + + Remote comments + Remote comments + src/app/+admin/overview/comments/video-comment-list.component.ts55 + No abuses found matching current filters. No abuses found matching current filters. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html152 + src/app/shared/shared-abuse-list/abuse-list-table.component.html152 + No abuses found. No abuses found. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html153 - 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.html153 + + + 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: Block reason: - - src/app/+admin/moderation/video-block-list/video-block-list.component.html75 + src/app/+admin/moderation/video-block-list/video-block-list.component.html75 + No blocked video found matching current filters. No blocked video found matching current filters. - - src/app/+admin/moderation/video-block-list/video-block-list.component.html92 + src/app/+admin/moderation/video-block-list/video-block-list.component.html92 + No blocked video found. No blocked video found. - - src/app/+admin/moderation/video-block-list/video-block-list.component.html93 - Automatic blocksAutomatic blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts34 - Manual blocksManual blocks - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts38 + src/app/+admin/moderation/video-block-list/video-block-list.component.html93 + + + Automatic blocks + Automatic blocks + src/app/+admin/moderation/video-block-list/video-block-list.component.ts34 + + + Manual blocks + Manual blocks + src/app/+admin/moderation/video-block-list/video-block-list.component.ts38 + Showing to of blocked videos Showing @@ -3881,14 +4003,16 @@ The link will expire within 1 hour. of blocked videos - - 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 Reports - - - src/app/+admin/admin.component.ts101src/app/+admin/moderation/abuse-list/abuse-list.component.html3src/app/+admin/moderation/moderation.routes.ts34src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + src/app/+admin/admin.component.ts101 + src/app/+admin/moderation/abuse-list/abuse-list.component.html3 + src/app/+admin/moderation/moderation.routes.ts34 + src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + Moderation comment Moderation comment @@ -3899,105 +4023,97 @@ The link will expire within 1 hour. This comment can only be seen by you or the other moderators. - - src/app/shared/shared-abuse-list/moderation-comment-modal.component.html20 + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html20 + Update this comment Update this comment - - src/app/shared/shared-abuse-list/moderation-comment-modal.component.html30 - - - - - - + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html30 + Reporter Reporter - - - 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 + Video Video - - - - src/app/+admin/overview/comments/video-comment-list.component.html44src/app/+admin/overview/videos/video-list.component.html40src/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/overview/comments/video-comment-list.component.html44 + src/app/+admin/overview/videos/video-list.component.html40 + 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 - - src/app/+admin/overview/comments/video-comment-list.component.html45src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/overview/comments/video-comment-list.component.html45 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + This video has been reported multiple times. This video has been reported multiple times. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.html66 + src/app/shared/shared-abuse-list/abuse-list-table.component.html66 + The video was blocked The video was blocked - - - src/app/shared/shared-abuse-list/abuse-list-table.component.html73 + src/app/shared/shared-abuse-list/abuse-list-table.component.html73 + by on by on - - - src/app/shared/shared-abuse-list/abuse-list-table.component.html85 + src/app/shared/shared-abuse-list/abuse-list-table.component.html85 + Video was deleted Video was deleted - - src/app/shared/shared-abuse-list/abuse-list-table.component.html79 + src/app/shared/shared-abuse-list/abuse-list-table.component.html79 + Account deleted Account deleted - - src/app/shared/shared-abuse-list/abuse-list-table.component.html110 + src/app/shared/shared-abuse-list/abuse-list-table.component.html110 + Open video in a new tab Open video in a new tab - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html47 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html47 + State State - - + + - - - - 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 Messages - - src/app/shared/shared-abuse-list/abuse-list-table.component.html25 + 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 + 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 Showing @@ -4005,79 +4121,81 @@ The link will expire within 1 hour. of reports - - src/app/shared/shared-abuse-list/abuse-list-table.component.html6 + src/app/shared/shared-abuse-list/abuse-list-table.component.html6 + Reportee Reportee - - 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.html21src/app/shared/shared-abuse-list/abuse-details.component.html41 + src/app/shared/shared-abuse-list/abuse-details.component.html21 + src/app/shared/shared-abuse-list/abuse-details.component.html41 + {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 + Updated Updated - - src/app/shared/shared-abuse-list/abuse-details.component.html48 + src/app/shared/shared-abuse-list/abuse-details.component.html48 + Mute domain Mute domain - - - 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 Instance - - - - - src/app/+about/about.component.html5src/app/+search/search-filters.component.html217src/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.html217 + src/app/shared/shared-moderation/server-blocklist.component.html31 + src/app/shared/shared-moderation/server-blocklist.component.html31 + Muted at Muted at - - + + - - - - - 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 Unmute - - - - - 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. No server found matching current filters. - - - 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. No server found. - - - 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 Showing @@ -4085,56 +4203,56 @@ The link will expire within 1 hour. of muted instances - - - 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. 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.html27 + src/app/+admin/follows/following-list/follow-modal.component.html27 + Mute domains Mute domains - - - 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/overview/comments/video-comment-list.component.html43src/app/shared/shared-moderation/account-blocklist.component.html23src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/+admin/overview/comments/video-comment-list.component.html43 + src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/shared/shared-moderation/account-blocklist.component.html23 + No account found matching current filters. No account found matching current filters. - - - 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. No account found. - - - 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 List installed plugins - - src/app/+admin/plugins/plugins.routes.ts26 + src/app/+admin/plugins/plugins.routes.ts26 + Search plugins Search plugins - - src/app/+admin/plugins/plugins.routes.ts35 + src/app/+admin/plugins/plugins.routes.ts35 + Show plugin Show plugin - - src/app/+admin/plugins/plugins.routes.ts44 + src/app/+admin/plugins/plugins.routes.ts44 + Showing to of muted accounts Showing @@ -4148,20 +4266,25 @@ The link will expire within 1 hour. Plugins/Themes Plugins/Themes - - src/app/+admin/admin.component.ts142 + src/app/+admin/admin.component.ts142 + Installed Installed - - src/app/+admin/plugins/plugin-search/plugin-search.component.html35src/app/+admin/plugins/shared/plugin-navigation.component.html3 - This plugin is developed by FramasoftThis plugin is developed by Framasoft + src/app/+admin/plugins/plugin-search/plugin-search.component.html35 + src/app/+admin/plugins/shared/plugin-navigation.component.html3 + + + This plugin is developed by Framasoft + This plugin is developed by Framasoft src/app/+admin/plugins/plugin-search/plugin-search.component.html 37 - - Official Official + + + Official + Official src/app/+admin/plugins/plugin-search/plugin-search.component.html 37,39 @@ -4170,35 +4293,41 @@ The link will expire within 1 hour. Plugin homepage (new window) Plugin homepage (new window) - - - - src/app/+admin/plugins/shared/plugin-card.component.html8src/app/+admin/plugins/shared/plugin-card.component.html12 - Navigate between installed plugins and themes or find new onesNavigate between installed plugins and themes or find new ones + src/app/+admin/plugins/shared/plugin-card.component.html8 + src/app/+admin/plugins/shared/plugin-card.component.html12 + + + Navigate between installed plugins and themes or find new ones + Navigate between installed plugins and themes or find new ones src/app/+admin/plugins/shared/plugin-navigation.component.html 2 - Users can resolve distant content Users can resolve distant content src/app/shared/shared-instance/instance-features-table.component.html126 - - Plugins & ThemesPlugins & Themes + + + Plugins & Themes + Plugins & Themes src/app/shared/shared-instance/instance-features-table.component.html 133 - - Available themesAvailable themes + + + Available themes + Available themes src/app/shared/shared-instance/instance-features-table.component.html 137 - - Plugins enabledPlugins enabled + + + Plugins enabled + Plugins enabled src/app/shared/shared-instance/instance-features-table.component.html 146 @@ -4210,72 +4339,75 @@ The link will expire within 1 hour. src/app/app.component.html34 src/app/app.component.html34 - Display settings Display settings src/app/modal/quick-settings-modal.component.html10 - - 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 + 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 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. To load your new installed plugins or themes, refresh the page. - - src/app/+admin/plugins/plugin-search/plugin-search.component.html3 - Popular pluginsPopular plugins + src/app/+admin/plugins/plugin-search/plugin-search.component.html3 + + + Popular plugins + Popular plugins src/app/+admin/plugins/plugin-search/plugin-search.component.html 10 - - Popular themesPopular themes + + + Popular themes + Popular themes src/app/+admin/plugins/plugin-search/plugin-search.component.html 11 - for "" for "" - - src/app/+admin/plugins/plugin-search/plugin-search.component.html17 - + for "" + for "" + src/app/+admin/plugins/plugin-search/plugin-search.component.html17 + {VAR_PLURAL, plural, =1 {result} other {results} } {VAR_PLURAL, plural, =1 {result} other {results} } - - - src/app/+admin/plugins/plugin-search/plugin-search.component.html18src/app/+search/search.component.html5 + src/app/+admin/plugins/plugin-search/plugin-search.component.html18 + src/app/+search/search.component.html5 + No results. No results. - - src/app/+admin/plugins/plugin-search/plugin-search.component.html27 - + src/app/+admin/plugins/plugin-search/plugin-search.component.html27 + This does not have settings. @@ -4288,42 +4420,41 @@ The link will expire within 1 hour. System System - - src/app/+admin/admin.component.ts148 - - - + src/app/+admin/admin.component.ts148 + Delete this comment Delete this comment - - src/app/+admin/overview/comments/video-comment-list.component.ts80 + src/app/+admin/overview/comments/video-comment-list.component.ts80 + Delete all comments of this account Delete all comments of this account - - src/app/+admin/overview/comments/video-comment-list.component.ts86 + src/app/+admin/overview/comments/video-comment-list.component.ts86 + Comments are deleted after a few minutes Comments are deleted after a few minutes - - src/app/+admin/overview/comments/video-comment-list.component.ts87 + src/app/+admin/overview/comments/video-comment-list.component.ts87 + comments deleted. comments deleted. - - src/app/+admin/overview/comments/video-comment-list.component.ts148 + src/app/+admin/overview/comments/video-comment-list.component.ts148 + Do you really want to delete all comments of ? Do you really want to delete all comments of ? - - src/app/+admin/overview/comments/video-comment-list.component.ts168 + src/app/+admin/overview/comments/video-comment-list.component.ts168 + Comments of will be deleted in a few minutes Comments of will be deleted in a few minutes - - src/app/+admin/overview/comments/video-comment-list.component.ts180 - Comments listComments list + src/app/+admin/overview/comments/video-comment-list.component.ts180 + + + Comments list + Comments list src/app/+admin/overview/comments/video-comment.routes.ts 24 @@ -4332,25 +4463,25 @@ The link will expire within 1 hour. Video comments Video comments - - src/app/+admin/overview/comments/video-comment-list.component.html3 - This view also shows comments from muted accounts.This view also shows comments from muted accounts. - - src/app/+admin/overview/comments/video-comment-list.component.html8 + src/app/+admin/overview/comments/video-comment-list.component.html3 + + + This view also shows comments from muted accounts. + This view also shows comments from muted accounts. + src/app/+admin/overview/comments/video-comment-list.component.html8 + Showing to of comments Showing to of comments - - src/app/+admin/overview/comments/video-comment-list.component.html15 - - - + src/app/+admin/overview/comments/video-comment-list.component.html15 + Select all rows Select all rows - - - src/app/+admin/overview/comments/video-comment-list.component.html39src/app/+admin/overview/users/user-list/user-list.component.html39src/app/+admin/overview/videos/video-list.component.html36 + src/app/+admin/overview/comments/video-comment-list.component.html39 + src/app/+admin/overview/users/user-list/user-list.component.html39 + src/app/+admin/overview/videos/video-list.component.html36 + Job type Job type @@ -4381,8 +4512,8 @@ The link will expire within 1 hour. src/app/+admin/system/jobs/jobs.component.html46 - Priority (1 = highest priority) - Priority (1 = highest priority) + Priority (1 = highest priority) + Priority (1 = highest priority) src/app/+admin/system/jobs/jobs.component.html 47 @@ -4399,35 +4530,39 @@ The link will expire within 1 hour. No jobs found. No jobs found. - - src/app/+admin/system/jobs/jobs.component.html105 + src/app/+admin/system/jobs/jobs.component.html105 + - No jobs found. - No jobs found. - - src/app/+admin/system/jobs/jobs.component.html106 + No jobs found. + No jobs found. + src/app/+admin/system/jobs/jobs.component.html106 + No jobs found. No jobs found. - - src/app/+admin/system/jobs/jobs.component.html110 + src/app/+admin/system/jobs/jobs.component.html110 + No jobs found that are . No jobs found that are . - - src/app/+admin/system/jobs/jobs.component.html111 + src/app/+admin/system/jobs/jobs.component.html111 + Refresh Refresh - - - src/app/+admin/overview/comments/video-comment-list.component.html31src/app/+admin/overview/videos/video-list.component.html27src/app/+admin/system/jobs/jobs.component.html30src/app/+admin/system/logs/logs.component.html33 + src/app/+admin/overview/comments/video-comment-list.component.html31 + src/app/+admin/overview/videos/video-list.component.html27 + src/app/+admin/system/jobs/jobs.component.html30 + src/app/+admin/system/logs/logs.component.html33 + now now src/app/+admin/system/logs/logs.component.html15 - - Filter logs by tagsFilter logs by tags + + + Filter logs by tags + Filter logs by tags src/app/+admin/system/logs/logs.component.html 31 @@ -4436,21 +4571,23 @@ The link will expire within 1 hour. Loading... Loading... - - src/app/+admin/system/logs/logs.component.html37 - No log.No log. + src/app/+admin/system/logs/logs.component.html37 + + + No log. + No log. src/app/+admin/system/logs/logs.component.html 40 - By -> + By -> By - -> + -> - - src/app/+admin/system/logs/logs.component.html47 + src/app/+admin/system/logs/logs.component.html47 + INSTANCE INSTANCE @@ -4459,10 +4596,10 @@ The link will expire within 1 hour. Name Name - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html13src/app/+manage/video-channel-edit/video-channel-edit.component.html27src/app/+manage/video-channel-edit/video-channel-edit.component.html27 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html13 + src/app/+manage/video-channel-edit/video-channel-edit.component.html27 + src/app/+manage/video-channel-edit/video-channel-edit.component.html27 + Short description Short description @@ -4471,91 +4608,90 @@ The link will expire within 1 hour. Main instance categories Main instance categories - - 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 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. + 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 - - 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 MODERATION & NSFW - - 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.html83 + 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.html83 + This instance is dedicated to sensitive or NSFW content This instance is dedicated to sensitive or NSFW content - - 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.html97 + 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.html97 + Policy on videos containing sensitive content Policy on videos containing sensitive content - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 - - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 + Blur thumbnails Blur thumbnails - - - 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 Display - - - - 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 Strategy @@ -4564,101 +4700,100 @@ The link will expire within 1 hour. Terms Terms - - - - - src/app/+about/about-instance/about-instance.component.html169src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129src/app/+signup/+register/register.component.html18src/app/shared/shared-instance/instance-about-accordion.component.html35 + src/app/+about/about-instance/about-instance.component.html169 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129 + src/app/+signup/+register/register.component.html18 + src/app/shared/shared-instance/instance-about-accordion.component.html35 + Code of conduct Code of conduct - - - - src/app/+about/about-instance/about-instance.component.html155src/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.html155 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140 + src/app/shared/shared-instance/instance-about-accordion.component.html47 + Moderation information Moderation information - - - - src/app/+about/about-instance/about-instance.component.html141src/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.html141 + 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 Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc - - 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 YOU AND YOUR INSTANCE - - 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? Who is behind the instance? - - 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? A single person? A non-profit? A company? - - 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? Why did you create this instance? - - 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? To share your personal videos? To open registrations and allow people to upload what they want? - - 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? How long do you plan to maintain this instance? - - 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 It's important to know for users who want to register on your instance - - 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 will you finance the PeerTube server? - - 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? With your own funds? With user donations? Advertising? - - 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 OTHER INFORMATION - - 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? What server/hardware does the instance run on? - - 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. i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc. - - 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 APPEARANCE 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.html5 + 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.html5 + default default @@ -4669,142 +4804,149 @@ The link will expire within 1 hour. Landing page 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 + 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 + 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 + 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 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html49 + Most liked videos Most liked videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html50 - Prefer author display name in video miniaturePrefer author display name in video miniature + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html50 + + + Prefer author display name in video miniature + Prefer author display name in video miniature src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 66 - - Redirect users on single external auth when users click on the login button in menuRedirect users on single external auth when users click on the login button in menu + + + Redirect users on single external auth when users click on the login button in menu + Redirect users on single external auth when users click on the login button in menu src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 77 - - ⚠️ You don't have any external auth plugin enabled.⚠️ You don't have any external auth plugin enabled. + + + ⚠️ You don't have any external auth plugin enabled. + ⚠️ You don't have any external auth plugin enabled. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 80 - - ⚠️ You have multiple external auth plugins enabled.⚠️ You have multiple external auth plugins enabled. + + + ⚠️ You have multiple external auth plugins enabled. + ⚠️ You have multiple external auth plugins enabled. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 81 - - BROADCAST MESSAGE BROADCAST MESSAGE - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html94 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html94 + Display a message on your instance Display a message on your instance - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html95 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html95 + Enable broadcast message Enable broadcast message - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html107 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html107 + Allow users to dismiss the broadcast message Allow users to dismiss the broadcast message - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html114 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html114 + Broadcast message level Broadcast message level - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html119 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html119 + Message Message - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html133 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html133 + NEW USERS NEW USERS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html150 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html150 + - 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.html151 + 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.html151 + Signup requires email verification Signup requires email verification - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html173 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html173 + Signup limit Signup limit - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html177 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html177 + {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.html184 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html184 + 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.html189 - Minimum required age to create an accountMinimum required age to create an account - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html193 - {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.html200 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html189 + + + 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.html193 + + + {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.html200 + Enable Signup Enable Signup - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html162 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html162 + Users Users - - - src/app/+admin/admin.component.ts41src/app/+admin/overview/users/user-edit/user-edit.component.html4src/app/+admin/overview/users/user-edit/user-edit.component.html4src/app/+admin/overview/users/user-list/user-list.component.html3 - CommentsComments + src/app/+admin/admin.component.ts41 + src/app/+admin/overview/users/user-edit/user-edit.component.html4 + src/app/+admin/overview/users/user-edit/user-edit.component.html4 + src/app/+admin/overview/users/user-list/user-list.component.html3 + + + Comments + Comments src/app/+admin/admin.component.ts 57 @@ -4813,76 +4955,79 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {Video} other {Videos} } {VAR_PLURAL, plural, =1 {Video} other {Videos} } - - - src/app/+admin/overview/users/user-edit/user-edit.component.html24src/app/+admin/overview/users/user-edit/user-edit.component.html24 + src/app/+admin/overview/users/user-edit/user-edit.component.html24 + src/app/+admin/overview/users/user-edit/user-edit.component.html24 + {VAR_PLURAL, plural, =1 {Channel} other {Channels} } {VAR_PLURAL, plural, =1 {Channel} other {Channels} } - - - src/app/+admin/overview/users/user-edit/user-edit.component.html30src/app/+admin/overview/users/user-edit/user-edit.component.html30 + src/app/+admin/overview/users/user-edit/user-edit.component.html30 + src/app/+admin/overview/users/user-edit/user-edit.component.html30 + {VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} } {VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} } - - - src/app/+admin/overview/users/user-edit/user-edit.component.html36src/app/+admin/overview/users/user-edit/user-edit.component.html36 + src/app/+admin/overview/users/user-edit/user-edit.component.html36 + src/app/+admin/overview/users/user-edit/user-edit.component.html36 + Incriminated in reports Incriminated in reports - - - src/app/+admin/overview/users/user-edit/user-edit.component.html42src/app/+admin/overview/users/user-edit/user-edit.component.html42 + src/app/+admin/overview/users/user-edit/user-edit.component.html42 + src/app/+admin/overview/users/user-edit/user-edit.component.html42 + Authored reports accepted Authored reports accepted - - - src/app/+admin/overview/users/user-edit/user-edit.component.html48src/app/+admin/overview/users/user-edit/user-edit.component.html48 + src/app/+admin/overview/users/user-edit/user-edit.component.html48 + src/app/+admin/overview/users/user-edit/user-edit.component.html48 + {VAR_PLURAL, plural, =1 {Comment} other {Comments} } {VAR_PLURAL, plural, =1 {Comment} other {Comments} } - - - src/app/+admin/overview/users/user-edit/user-edit.component.html54src/app/+admin/overview/users/user-edit/user-edit.component.html54 + src/app/+admin/overview/users/user-edit/user-edit.component.html54 + src/app/+admin/overview/users/user-edit/user-edit.component.html54 + NEW USER NEW USER - - - src/app/+admin/overview/users/user-edit/user-edit.component.html73src/app/+admin/overview/users/user-edit/user-edit.component.html73 + src/app/+admin/overview/users/user-edit/user-edit.component.html73 + src/app/+admin/overview/users/user-edit/user-edit.component.html73 + Configuration Configuration - - src/app/+admin/admin.component.ts136src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 + src/app/+admin/admin.component.ts136 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 + Default video quota per user Default video quota per user - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html212 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html212 + bytes bytes - - - - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html218src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html232src/app/+admin/overview/users/user-edit/user-edit.component.html157src/app/+admin/overview/users/user-edit/user-edit.component.html157src/app/+admin/overview/users/user-edit/user-edit.component.html178src/app/+admin/overview/users/user-edit/user-edit.component.html178 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html218 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html232 + src/app/+admin/overview/users/user-edit/user-edit.component.html157 + src/app/+admin/overview/users/user-edit/user-edit.component.html157 + src/app/+admin/overview/users/user-edit/user-edit.component.html178 + src/app/+admin/overview/users/user-edit/user-edit.component.html178 + Default daily upload limit per user Default daily upload limit per user - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + Allow import with a torrent file or a magnet URI Allow import with a torrent file or a magnet URI - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html280 - ⚠️ We don't recommend to enable this feature if you don't trust your users⚠️ We don't recommend to enable this feature if you don't trust your users + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html280 + + + ⚠️ We don't recommend to enable this feature if you don't trust your users + ⚠️ We don't recommend to enable this feature if you don't trust your users src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 283 @@ -4891,179 +5036,185 @@ The link will expire within 1 hour. Unless a user is marked as trusted, their videos will stay private until a moderator reviews them. Unless a user is marked as trusted, their videos will stay private until a moderator reviews them. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html301 - VIDEO CHANNELSVIDEO CHANNELS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html315 - Max video channels per userMax video channels per user - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html320 - {VAR_PLURAL, plural, =1 {channel} other {channels}}{VAR_PLURAL, plural, =1 {channel} other {channels}} - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html327 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html301 + + + VIDEO CHANNELS + VIDEO CHANNELS + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html315 + + + Max video channels per user + Max video channels per user + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html320 + + + {VAR_PLURAL, plural, =1 {channel} other {channels}} + {VAR_PLURAL, plural, =1 {channel} other {channels}} + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html327 + Block new videos automatically Block new videos automatically - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html298 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html298 + SEARCH SEARCH - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html337 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html337 + Allow users to do remote URI/handle search Allow users to do remote URI/handle search - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + Allow your users to look up remote videos/actors that may not be federated with your instance Allow your users to look up remote videos/actors that may not be federated with your instance - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html351 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html351 + Allow anonymous to do remote URI/handle search Allow anonymous to do remote URI/handle search - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html359 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html359 + Allow anonymous users to look up remote videos/actors that may not be federated with your instance Allow anonymous users to look up remote videos/actors that may not be federated with your instance - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html362 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html362 + ⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select. ⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html376 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html376 + - 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.html378 + 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.html378 + Search index URL Search index URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html385 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html385 + Disable local search in search bar Disable local search in search bar - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html398 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html398 + Otherwise the local search stays used by default Otherwise the local search stays used by default - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html408 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html408 + Search bar uses the global search index by default Search bar uses the global search index by default - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html405 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html405 + Enable global search Enable global search - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html373 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html373 + FEDERATION FEDERATION - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html426 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html426 + - Manage relations with other instances. - Manage relations with other instances. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html427 + Manage relations with other instances. + Manage relations with other instances. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html427 + Other instances can follow yours Other instances can follow yours - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html440 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html440 + Manually approve new instance followers Manually approve new instance followers - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html447 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html447 + Automatically follow back instances Automatically follow back instances - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html460 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html460 + ⚠️ This functionality requires a lot of attention and extra moderation. ⚠️ This functionality requires a lot of attention and extra moderation. - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html165src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html463src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html476 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html165 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html463 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html476 + Index URL Index URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html485 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html485 + Automatically follow instances of a public index Automatically follow instances of a public index - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + - 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.html478 + 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.html478 + ADMINISTRATORS ADMINISTRATORS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html505 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html505 + Administrator Administrator - - src/app/shared/shared-users/user-admin.service.ts123 + src/app/shared/shared-users/user-admin.service.ts123 + Admin email Admin email - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html511 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html511 + Enable contact form Enable contact form - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html524 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html524 + VOD Transcoding VOD Transcoding - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html38 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html38 + TWITTER TWITTER - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html533 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html533 + 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.html534 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html534 + Your Twitter username Your Twitter username - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html546 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html546 + Instance allowed by Twitter Instance allowed by Twitter - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html559 - 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.html563 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html559 + + + 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.html563 + LIVE LIVE @@ -5073,8 +5224,8 @@ The link will expire within 1 hour. 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.html6 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html6 + ⚠️ Enabling live streaming requires trust in your users and extra moderation work ⚠️ Enabling live streaming requires trust in your users and extra moderation work @@ -5096,24 +5247,24 @@ The link will expire within 1 hour. 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.html33 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html33 + - 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.html40 - + 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.html40 + - 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.html53 + 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.html53 + {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 live duration Max live duration @@ -5168,12 +5319,14 @@ The link will expire within 1 hour. Live streaming Live streaming - - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html47src/app/shared/shared-instance/instance-features-table.component.html67 - AdvancedAdvanced - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html56 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html47 + src/app/shared/shared-instance/instance-features-table.component.html67 + + + Advanced + Advanced + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html56 + TRANSCODING TRANSCODING @@ -5183,8 +5336,8 @@ The link will expire within 1 hour. 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.html86 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html86 + Input formats Input formats @@ -5199,14 +5352,15 @@ The link will expire within 1 hour. Allow additional extensions Allow additional extensions src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html51 - - Allows users to upload videos with additional extensions than .mp4, .ogv and .webm (for example: .avi, .mov, .mkv etc).Allows users to upload videos with additional extensions than .mp4, .ogv and .webm (for example: .avi, .mov, .mkv etc). + + + Allows users to upload videos with additional extensions than .mp4, .ogv and .webm (for example: .avi, .mov, .mkv etc). + Allows users to upload videos with additional extensions than .mp4, .ogv and .webm (for example: .avi, .mov, .mkv etc). src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 54 - Allow audio files upload Allow audio files upload @@ -5246,8 +5400,8 @@ The link will expire within 1 hour. 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 + 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 @@ -5261,8 +5415,8 @@ The link will expire within 1 hour. 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.html131 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html131 + Transcoding threads Transcoding threads @@ -5309,26 +5463,34 @@ The link will expire within 1 hour. 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 - - VIDEO EDITORVIDEO EDITOR + + + VIDEO EDITOR + VIDEO EDITOR src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 198 - - Allows your users to edit their video (cut, add intro/outro, add a watermark etc) Allows your users to edit their video (cut, add intro/outro, add a watermark etc) + + + Allows your users to edit their video (cut, add intro/outro, add a watermark etc) + Allows your users to edit their video (cut, add intro/outro, add a watermark etc) src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 199,201 - - Enable video editorEnable video editor + + + Enable video editor + Enable video editor src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 210 - - ⚠️ You need to enable transcoding first to enable video editor⚠️ You need to enable transcoding first to enable video editor + + + ⚠️ You need to enable transcoding first to enable video editor + ⚠️ You need to enable transcoding first to enable video editor src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 213 @@ -5342,8 +5504,8 @@ 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. - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html6 + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html6 + Number of previews to keep in cache Number of previews to keep in cache @@ -5394,74 +5556,67 @@ 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. - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html64 + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html64 + 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.html77 + 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.html77 + - Write CSS code directly. Example:#custom-css -color: red; - - 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 color: red; + 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.html96 + + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html96 + 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.html81 - You cannot change the server configuration because it's managed externally. You cannot change the server configuration because it's managed externally. + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html81 + + + You cannot change the server configuration because it's managed externally. + You cannot change the server configuration because it's managed externally. src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 85,87 - - There are errors in the form: - There are errors in the form: - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html71 + There are errors in the form: + There are errors in the form: + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html71 + Update configuration Update configuration - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html90 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html90 + VIDEO SETTINGS VIDEO SETTINGS - - src/app/+my-account/my-account-settings/my-account-settings.component.html36 + src/app/+my-account/my-account-settings/my-account-settings.component.html36 + NOTIFICATIONS NOTIFICATIONS - - src/app/+my-account/my-account-settings/my-account-settings.component.html47 + src/app/+my-account/my-account-settings/my-account-settings.component.html47 + INTERFACE INTERFACE - - src/app/+my-account/my-account-settings/my-account-settings.component.html25 + src/app/+my-account/my-account-settings/my-account-settings.component.html25 + PASSWORD PASSWORD @@ -5475,141 +5630,173 @@ color: red; DANGER ZONE DANGER ZONE - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html219src/app/+admin/overview/users/user-edit/user-edit.component.html219src/app/+my-account/my-account-settings/my-account-settings.component.html77 + src/app/+admin/overview/users/user-edit/user-edit.component.html219 + src/app/+admin/overview/users/user-edit/user-edit.component.html219 + src/app/+my-account/my-account-settings/my-account-settings.component.html77 + Profile Profile - - 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-filters-header.component.html2 - More filtersMore filters + 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.html2 + + + More filters + More filters src/app/shared/shared-video-miniature/video-filters-header.component.html 20 - - Hide filtersHide filters + + + Hide filters + Hide 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 "Recent Views"Sort by "Recent Views" + + + Sort by "Recent Views" + Sort by "Recent 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 @@ -5651,17 +5838,19 @@ color: red; Default policy on videos containing sensitive content Default policy on videos containing sensitive content 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. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html110src/app/shared/shared-user-settings/user-video-settings.component.html7 - + + + 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.html110 + src/app/shared/shared-user-settings/user-video-settings.component.html7 + Policy for sensitive videos Policy for sensitive videos - - - 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 Only display videos in the following languages/subtitles @@ -5675,15 +5864,15 @@ 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 - + - is awaiting email verification + is awaiting email verification src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html10 @@ -5714,28 +5903,36 @@ color: red; peertube default src/app/shared/shared-user-settings/user-interface-settings.component.html9 - Select the next owner Select the next owner 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 Accept ownership @@ -5746,7 +5943,6 @@ color: red; Select a channel to receive the video src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html10 - My ownership changes My ownership changes @@ -5762,11 +5958,11 @@ color: red; Created - - + + - - src/app/+my-library/my-ownership/my-ownership.component.html21 + src/app/+my-library/my-ownership/my-ownership.component.html21 + Status Status @@ -5775,25 +5971,24 @@ color: red; Account page Account page - - - src/app/+videos/+video-watch/video-watch.component.html66src/app/+videos/+video-watch/video-watch.component.html72 - + src/app/+videos/+video-watch/video-watch.component.html66 + src/app/+videos/+video-watch/video-watch.component.html72 + No ownership change request found. No ownership change request found. - - src/app/+my-library/my-ownership/my-ownership.component.html78 + src/app/+my-library/my-ownership/my-ownership.component.html78 + Account settings Account settings - - src/app/+my-account/my-account-routing.module.ts28 + src/app/+my-account/my-account-routing.module.ts28 + Playlist elements Playlist elements - - src/app/+my-library/my-library-routing.module.ts58 + src/app/+my-library/my-library-routing.module.ts58 + My imports My imports @@ -5803,25 +5998,28 @@ color: red; Create video channel Create video channel - - 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 + Example: my_channel Example: my_channel - - - src/app/+manage/video-channel-edit/video-channel-edit.component.html30src/app/+manage/video-channel-edit/video-channel-edit.component.html30 + src/app/+manage/video-channel-edit/video-channel-edit.component.html30 + src/app/+manage/video-channel-edit/video-channel-edit.component.html30 + CHANNEL CHANNEL - - - src/app/+manage/video-channel-edit/video-channel-edit.component.html9src/app/+manage/video-channel-edit/video-channel-edit.component.html9 - Banner image of the channelBanner image of the channel + src/app/+manage/video-channel-edit/video-channel-edit.component.html9 + src/app/+manage/video-channel-edit/video-channel-edit.component.html9 + + + Banner image of the channel + Banner image of the channel src/app/+manage/video-channel-edit/video-channel-edit.component.html 13 @@ -5831,37 +6029,37 @@ color: red; 13 - Overwrite support field of all videos of this channel Overwrite support field of all videos of this channel - - - src/app/+manage/video-channel-edit/video-channel-edit.component.html82src/app/+manage/video-channel-edit/video-channel-edit.component.html82 + src/app/+manage/video-channel-edit/video-channel-edit.component.html82 + src/app/+manage/video-channel-edit/video-channel-edit.component.html82 + subscribers subscribers - - src/app/+my-library/my-follows/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-follows/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 Upload 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.html9 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html34 + Target Target src/app/+my-library/my-video-imports/my-video-imports.component.html17 - This video was deleted This video was deleted - - src/app/+my-library/my-video-imports/my-video-imports.component.html48 + src/app/+my-library/my-video-imports/my-video-imports.component.html48 + Showing to of imports Showing @@ -5876,34 +6074,33 @@ color: red; Once you delete your account, there is no going back. You will be asked to confirm this action. src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html2 - Channel page Channel page - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html25src/app/+my-library/my-follows/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html63 + src/app/+my-library/+my-video-channels/my-video-channels.component.html25 + src/app/+my-library/my-follows/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html63 + Created by Created by - - src/app/+my-library/my-follows/my-subscriptions.component.html28 + src/app/+my-library/my-follows/my-subscriptions.component.html28 + Owner account page Owner account page - - src/app/+my-library/my-follows/my-subscriptions.component.html27 - - + src/app/+my-library/my-follows/my-subscriptions.component.html27 + 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 - Delete from historyDelete from history + src/app/+my-library/my-history/my-history.component.html29 + + + Delete from history + Delete from history src/app/+my-library/my-history/my-history.component.html 36 @@ -5920,14 +6117,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 @@ -5936,8 +6137,8 @@ color: red; Notification preferences - - + + Notification preferences @@ -5958,12 +6159,11 @@ color: red; All read src/app/+my-account/my-account-notifications/my-account-notifications.component.html26 - Web Web - - src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html5 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html5 + My Playlists My Playlists @@ -5985,30 +6185,29 @@ 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 - - src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts11 + src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts11 + Create a new video channel Create a new video channel - - src/app/+manage/manage-routing.module.ts12 + src/app/+manage/manage-routing.module.ts12 + Playlist } deleted. Playlist } deleted. - - 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 Playlist 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. No videos in this playlist. @@ -6019,18 +6218,18 @@ color: red; Browse videos on PeerTube to add them in your playlist. - - src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html27 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html27 + See the documentation for more information. See the - documentation - for more information. + documentation + for more information. - - src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html31 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html31 + Welcome to PeerTube! Welcome to PeerTube! @@ -6040,19 +6239,25 @@ color: red; If you need help to use PeerTube, you can have a look at the documentation. If you need help to use PeerTube, you can have a look at the - documentation - . + documentation + . - - src/app/+signup/shared/signup-success.component.html13 - 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.html17 - Created Created - - src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html2 - {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}}{VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} + src/app/+signup/shared/signup-success.component.html13 + + + 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.html17 + + + Created + Created + src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html2 + + + {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 @@ -6063,15 +6268,15 @@ color: red; Verify account email confirmation - - src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html2 + src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html2 + Email updated. Email updated. - - src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html9 + src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html9 + An error occurred. An error occurred. @@ -6080,24 +6285,25 @@ color: red; Video channel videos Video channel videos - - src/app/+video-channels/video-channels-routing.module.ts22 + src/app/+video-channels/video-channels-routing.module.ts22 + Video channel playlists Video channel playlists - - src/app/+video-channels/video-channels-routing.module.ts35 - Manage channel Manage channel - - src/app/+video-channels/video-channels.component.html9 - + src/app/+video-channels/video-channels-routing.module.ts35 + + + Manage channel + Manage channel + src/app/+video-channels/video-channels.component.html9 + Request email for account verification Request email for account verification - - src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html2 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html2 + Send verification email Send verification email @@ -6111,133 +6317,158 @@ color: red; Verify account via email Verify account via email - - 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 Ask to send an email to verify you account - - src/app/+signup/+verify-account/verify-account-routing.module.ts24 + src/app/+signup/+verify-account/verify-account-routing.module.ts24 + Banned Banned - - src/app/+accounts/accounts.component.html21src/app/+admin/overview/users/user-list/user-list.component.html105 + src/app/+accounts/accounts.component.html21 + src/app/+admin/overview/users/user-list/user-list.component.html105 + Instance muted Instance muted - - src/app/shared/shared-moderation/account-block-badges.component.html2 + src/app/shared/shared-moderation/account-block-badges.component.html2 + Muted by your instance Muted by your instance - - src/app/shared/shared-moderation/account-block-badges.component.html3 + src/app/shared/shared-moderation/account-block-badges.component.html3 + Instance muted by your instance Instance muted by your instance - - src/app/shared/shared-moderation/account-block-badges.component.html4 - Copy account handleCopy account handle - - src/app/+accounts/accounts.component.html29 - Show the complete descriptionShow the complete description - - - src/app/+accounts/accounts.component.html53src/app/+video-channels/video-channels.component.html96 - Show more... Show more... - - - src/app/+accounts/accounts.component.html54src/app/+video-channels/video-channels.component.html97 - Manage account Manage account - - src/app/+accounts/accounts.component.html59 - Search account videosSearch account videos - - src/app/+accounts/accounts.component.html78 - CHANNELSCHANNELS - - src/app/+accounts/accounts.component.ts82 - + src/app/shared/shared-moderation/account-block-badges.component.html4 + + + Copy account handle + Copy account handle + src/app/+accounts/accounts.component.html29 + + + Show the complete description + Show the complete description + src/app/+accounts/accounts.component.html53 + src/app/+video-channels/video-channels.component.html96 + + + Show more... + Show more... + src/app/+accounts/accounts.component.html54 + src/app/+video-channels/video-channels.component.html97 + + + Manage account + Manage account + src/app/+accounts/accounts.component.html59 + + + Search account videos + Search account videos + src/app/+accounts/accounts.component.html78 + + + CHANNELS + CHANNELS + src/app/+accounts/accounts.component.ts82 + This account does not have channels. This account does not have channels. - - 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 subscriber} other { subscribers} } - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html36src/app/+my-library/+my-video-channels/my-video-channels.component.html34src/app/+video-channels/video-channels.component.html75src/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/account-video-channels/account-video-channels.component.html29src/app/+accounts/accounts.component.html39src/app/+video-channels/video-channels.component.html78src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 - - - src/app/+accounts/account-video-channels/account-video-channels.component.html28src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html33src/app/+video-channels/video-channels.component.html77src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html15src/app/shared/shared-video/video-views-counter.component.html2src/app/shared/shared-video/video-views-counter.component.html6 - Show this channelShow this channel - - src/app/+accounts/account-video-channels/account-video-channels.component.html38 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html36 + src/app/+my-library/+my-video-channels/my-video-channels.component.html34 + src/app/+video-channels/video-channels.component.html75 + 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/account-video-channels/account-video-channels.component.html29 + src/app/+accounts/accounts.component.html39 + src/app/+video-channels/video-channels.component.html78 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + + + + + src/app/+accounts/account-video-channels/account-video-channels.component.html28 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html33 + src/app/+video-channels/video-channels.component.html77 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html15 + src/app/shared/shared-video/video-views-counter.component.html2 + src/app/shared/shared-video/video-views-counter.component.html6 + + + Show this channel + Show this channel + src/app/+accounts/account-video-channels/account-video-channels.component.html38 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos} } - - src/app/+my-library/+my-video-channels/my-video-channels.component.html37src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + src/app/+my-library/+my-video-channels/my-video-channels.component.html37 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + - 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 ()! + 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 ()! 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 ()! - - 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 - NEW CHANNEL NEW CHANNEL - - - src/app/+manage/video-channel-edit/video-channel-edit.component.html8src/app/+manage/video-channel-edit/video-channel-edit.component.html8 + src/app/+manage/video-channel-edit/video-channel-edit.component.html8 + src/app/+manage/video-channel-edit/video-channel-edit.component.html8 + See this video channel See this video channel - - src/app/+accounts/account-video-channels/account-video-channels.component.html15src/app/+accounts/account-video-channels/account-video-channels.component.html20src/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.html15 + src/app/+accounts/account-video-channels/account-video-channels.component.html20 + 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. This channel doesn't have any videos. - - src/app/+accounts/account-video-channels/account-video-channels.component.html41 - SHOW THIS CHANNEL >SHOW THIS CHANNEL > - - src/app/+accounts/account-video-channels/account-video-channels.component.html49 - - - + src/app/+accounts/account-video-channels/account-video-channels.component.html41 + + + SHOW THIS CHANNEL > + SHOW THIS CHANNEL > + src/app/+accounts/account-video-channels/account-video-channels.component.html49 + Stats Stats - - src/app/menu/menu.component.html144 - - - - - - + src/app/menu/menu.component.html144 + This channel does not have playlists. This channel does not have playlists. @@ -6256,15 +6487,17 @@ channel with the same name ()! Follows Follows - - src/app/+about/about-follows/about-follows.component.html2src/app/+my-library/my-library.component.ts64 - Follower instances ()Follower instances () + src/app/+about/about-follows/about-follows.component.html2 + src/app/+my-library/my-library.component.ts64 + + + Follower instances () + Follower instances () src/app/+about/about-follows/about-follows.component.html 4 - Following instances () Following instances () @@ -6273,7 +6506,6 @@ channel with the same name ()! 16 - Your name Your name @@ -6300,8 +6532,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 @@ -6311,7 +6545,6 @@ channel with the same name ()! 3 - This instance is dedicated to sensitive/NSFW content. This instance is dedicated to sensitive/NSFW content. @@ -6322,8 +6555,8 @@ channel with the same name ()! ADMINISTRATORS & SUSTAINABILITY - - src/app/+about/about-instance/about-instance.component.html31 + src/app/+about/about-instance/about-instance.component.html31 + Who we are Who we are @@ -6338,45 +6571,46 @@ channel with the same name ()! How long we plan to maintain this instance How long we plan to maintain this instance 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 INFORMATION - - src/app/+about/about-instance/about-instance.component.html100 + src/app/+about/about-instance/about-instance.component.html100 + MODERATION MODERATION - - src/app/+about/about-instance/about-instance.component.html128 + src/app/+about/about-instance/about-instance.component.html128 + OTHER INFORMATION OTHER INFORMATION - - src/app/+about/about-instance/about-instance.component.html185 + src/app/+about/about-instance/about-instance.component.html185 + Hardware information Hardware information - - src/app/+about/about-instance/about-instance.component.html198 + src/app/+about/about-instance/about-instance.component.html198 + FEATURES FEATURES - - src/app/+about/about-instance/about-instance.component.html207 + src/app/+about/about-instance/about-instance.component.html207 + Features found on this instance Features found on this instance @@ -6387,31 +6621,30 @@ channel with the same name ()! STATISTICS STATISTICS - - src/app/+about/about-instance/about-instance.component.html219 - + src/app/+about/about-instance/about-instance.component.html219 + PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser. PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser. - - src/app/+about/about-peertube/about-peertube.component.html9 + src/app/+about/about-peertube/about-peertube.component.html9 + It is free and open-source software, under AGPLv3 licence. It is free and open-source software, under AGPLv3 licence. - - src/app/+about/about-peertube/about-peertube.component.html13 + src/app/+about/about-peertube/about-peertube.component.html13 + For more information, please visit joinpeertube.org. For more information, please visit - joinpeertube.org - . + joinpeertube.org + . - - src/app/+about/about-peertube/about-peertube.component.html18 + src/app/+about/about-peertube/about-peertube.component.html18 + Use PeerTube documentation Use PeerTube @@ -6423,8 +6656,8 @@ channel with the same name ()! Discover how to setup your account, what is a channel, how to create a playlist and more! - - src/app/+about/about-peertube/about-peertube.component.html32 + src/app/+about/about-peertube/about-peertube.component.html32 + PeerTube Applications PeerTube @@ -6436,8 +6669,8 @@ channel with the same name ()! Discover unofficial Android applications or browser addons! - - src/app/+about/about-peertube/about-peertube.component.html45 + src/app/+about/about-peertube/about-peertube.component.html45 + Contribute on PeerTube Contribute on @@ -6449,13 +6682,13 @@ channel with the same name ()! Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code! - - src/app/+about/about-peertube/about-peertube.component.html58 + src/app/+about/about-peertube/about-peertube.component.html58 + P2P & Privacy P2P & Privacy - - src/app/+about/about-peertube/about-peertube.component.html69 + src/app/+about/about-peertube/about-peertube.component.html69 + 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. @@ -6463,34 +6696,34 @@ channel with the same name ()! 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. - - src/app/+about/about-peertube/about-peertube.component.html72 + src/app/+about/about-peertube/about-peertube.component.html72 + 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.html78 + src/app/+about/about-peertube/about-peertube.component.html78 + What are the consequences? What are the consequences? - - src/app/+about/about-peertube/about-peertube.component.html83 + src/app/+about/about-peertube/about-peertube.component.html83 + In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because: In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because: - - src/app/+about/about-peertube/about-peertube.component.html85 + src/app/+about/about-peertube/about-peertube.component.html85 + An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot) An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot) - - src/app/+about/about-peertube/about-peertube.component.html91 + src/app/+about/about-peertube/about-peertube.component.html91 + For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm @@ -6498,48 +6731,48 @@ channel with the same name ()! For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm - - src/app/+about/about-peertube/about-peertube.component.html96 + src/app/+about/about-peertube/about-peertube.component.html96 + Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour - - src/app/+about/about-peertube/about-peertube.component.html102 + src/app/+about/about-peertube/about-peertube.component.html102 + If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video - - src/app/+about/about-peertube/about-peertube.component.html106 + src/app/+about/about-peertube/about-peertube.component.html106 + The IP address is a vague information: usually, it regularly changes and can represent many persons or entities The IP address is a vague information: usually, it regularly changes and can represent many persons or entities - - src/app/+about/about-peertube/about-peertube.component.html111 + src/app/+about/about-peertube/about-peertube.component.html111 + - 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.html115 + 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.html115 + 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. 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. - - src/app/+about/about-peertube/about-peertube.component.html123 + src/app/+about/about-peertube/about-peertube.component.html123 + How does PeerTube compare with YouTube? How does PeerTube compare with YouTube? - - src/app/+about/about-peertube/about-peertube.component.html128 + src/app/+about/about-peertube/about-peertube.component.html128 + 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). @@ -6547,13 +6780,13 @@ channel with the same name ()! 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). - - src/app/+about/about-peertube/about-peertube.component.html130 + src/app/+about/about-peertube/about-peertube.component.html130 + What can I do to limit the exposure of my IP address? What can I do to limit the exposure of my IP address? - - src/app/+about/about-peertube/about-peertube.component.html136 + src/app/+about/about-peertube/about-peertube.component.html136 + 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. @@ -6562,44 +6795,44 @@ channel with the same name ()! 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. - - src/app/+about/about-peertube/about-peertube.component.html138 + src/app/+about/about-peertube/about-peertube.component.html138 + What will be done to mitigate this problem? What will be done to mitigate this problem? - - src/app/+about/about-peertube/about-peertube.component.html145 + src/app/+about/about-peertube/about-peertube.component.html145 + 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 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: - - src/app/+about/about-peertube/about-peertube.component.html147 + src/app/+about/about-peertube/about-peertube.component.html147 + We set a limit to the number of peers sent by the tracker We set a limit to the number of peers sent by the tracker - - src/app/+about/about-peertube/about-peertube.component.html153 + src/app/+about/about-peertube/about-peertube.component.html153 + We set a limit on the request frequency received by the tracker We set a limit on the request frequency received by the tracker - - src/app/+about/about-peertube/about-peertube.component.html154 + src/app/+about/about-peertube/about-peertube.component.html154 + Allow instance admins to disable P2P from the administration interface Allow instance admins to disable P2P from the administration interface - - src/app/+about/about-peertube/about-peertube.component.html155 + src/app/+about/about-peertube/about-peertube.component.html155 + Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser. Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser. - - src/app/+about/about-peertube/about-peertube.component.html158 + src/app/+about/about-peertube/about-peertube.component.html158 + This instance does not have instances followers. This instance does not have instances followers. @@ -6625,37 +6858,38 @@ 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 - Create an account Create an account - - src/app/+signup/+register/register.component.html8 + src/app/+signup/+register/register.component.html8 + Get help Get help @@ -6666,18 +6900,18 @@ channel with the same name ()! Create my account - - src/app/+signup/+register/register.component.html46 + src/app/+signup/+register/register.component.html46 + PeerTube is creating your account... PeerTube is creating your account... - - src/app/+signup/+register/register.component.html55 + src/app/+signup/+register/register.component.html55 + Done Done - - src/app/+signup/+register/register.component.html51 + src/app/+signup/+register/register.component.html51 + Who are we? Who are we? @@ -6708,19 +6942,19 @@ channel with the same name ()! A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. - + For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. - - src/app/+signup/+register/register-step-channel.component.html4 + src/app/+signup/+register/register-step-channel.component.html4 + Other users can decide to subscribe any channel they want, to be notified when you publish a new video. Other users can decide to subscribe any channel they want, to be notified when you publish a new video. - - src/app/+signup/+register/register-step-channel.component.html9 + src/app/+signup/+register/register-step-channel.component.html9 + Channel display name Channel display name @@ -6729,16 +6963,16 @@ channel with the same name ()! Channel name Channel name - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html94src/app/+admin/overview/users/user-edit/user-edit.component.html94src/app/+signup/+register/register-step-channel.component.html30 + src/app/+admin/overview/users/user-edit/user-edit.component.html94 + src/app/+admin/overview/users/user-edit/user-edit.component.html94 + src/app/+signup/+register/register-step-channel.component.html30 + john_channel john_channel - - - src/app/+admin/overview/users/user-edit/user-edit.component.html96src/app/+admin/overview/users/user-edit/user-edit.component.html96 + src/app/+admin/overview/users/user-edit/user-edit.component.html96 + src/app/+admin/overview/users/user-edit/user-edit.component.html96 + Example: my_super_channel Example: my_super_channel @@ -6749,14 +6983,16 @@ channel with the same name ()! The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. - - src/app/+signup/+register/register-step-channel.component.html42 + src/app/+signup/+register/register-step-channel.component.html42 + 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. - - src/app/+signup/+register/register-step-channel.component.html50 - 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-channel.component.html50 + + + 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 @@ -6767,9 +7003,11 @@ channel with the same name ()! The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. - - src/app/+signup/+register/register-step-user.component.html35 - Signup is not enabled on this instance.Signup is not enabled on this instance. + src/app/+signup/+register/register-step-user.component.html35 + + + Signup is not enabled on this instance. + Signup is not enabled on this instance. src/app/+signup/+register/register.component.html 4 @@ -6778,38 +7016,39 @@ 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. - - src/app/+signup/+register/register-step-user.component.html3 - + src/app/+signup/+register/register-step-user.component.html3 + Register Register - - src/app/+signup/+register/register-routing.module.ts13 + src/app/+signup/+register/register-routing.module.ts13 + 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 - This website is powered by PeerTube This website is powered by PeerTube + src/app/+about/about-instance/contact-admin-modal.component.ts94 + + + This website is powered by PeerTube + This website is powered by PeerTube src/app/+about/about-peertube/about-peertube.component.html 2,4 - Account videos Account videos - - src/app/+accounts/accounts-routing.module.ts35 + src/app/+accounts/accounts-routing.module.ts35 + - ACCOUNTACCOUNT + ACCOUNT + ACCOUNT src/app/+accounts/accounts.component.html 8 @@ -6818,110 +7057,124 @@ 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.ts116 - ScopeScope - - src/app/shared/shared-video-miniature/video-filters.model.ts123 - FederatedFederated - - src/app/shared/shared-video-miniature/video-filters.model.ts125 - LanguagesLanguages - - src/app/shared/shared-video-miniature/video-filters.model.ts133 - CategoriesCategories - - src/app/shared/shared-video-miniature/video-filters.model.ts142 - All videosAll videos - - src/app/shared/shared-video-miniature/video-filters.model.ts151 - BlurredBlurred - - src/app/shared/shared-video-miniature/video-filters.model.ts231 - hiddenhidden - - src/app/shared/shared-video-miniature/video-filters.model.ts237 - blurredblurred - - src/app/shared/shared-video-miniature/video-filters.model.ts238 - displayeddisplayed - - src/app/shared/shared-video-miniature/video-filters.model.ts240 + 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.ts116 + + + Scope + Scope + src/app/shared/shared-video-miniature/video-filters.model.ts123 + + + Federated + Federated + src/app/shared/shared-video-miniature/video-filters.model.ts125 + + + Languages + Languages + src/app/shared/shared-video-miniature/video-filters.model.ts133 + + + Categories + Categories + src/app/shared/shared-video-miniature/video-filters.model.ts142 + + + All videos + All videos + src/app/shared/shared-video-miniature/video-filters.model.ts151 + + + Blurred + Blurred + src/app/shared/shared-video-miniature/video-filters.model.ts231 + + + hidden + hidden + src/app/shared/shared-video-miniature/video-filters.model.ts237 + + + blurred + blurred + src/app/shared/shared-video-miniature/video-filters.model.ts238 + + + displayed + displayed + src/app/shared/shared-video-miniature/video-filters.model.ts240 + direct account followers direct account followers - - src/app/+accounts/accounts.component.ts153 + src/app/+accounts/accounts.component.ts153 + Report this account Report this account - - src/app/+accounts/accounts.component.ts202 - OverviewOverview + src/app/+accounts/accounts.component.ts202 + + + Overview + Overview src/app/+admin/admin.component.ts 35 - - VIDEOS VIDEOS - - - src/app/+accounts/accounts.component.ts83src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html245src/app/+video-channels/video-channels.component.ts81 - + src/app/+accounts/accounts.component.ts83 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html245 + src/app/+video-channels/video-channels.component.ts81 + Username copied Username copied - - - src/app/+accounts/accounts.component.ts121src/app/+video-channels/video-channels.component.ts115 + src/app/+accounts/accounts.component.ts121 + src/app/+video-channels/video-channels.component.ts115 + 1 subscriber 1 subscriber - - src/app/+accounts/accounts.component.ts125 + src/app/+accounts/accounts.component.ts125 + subscribers subscribers - - src/app/+accounts/accounts.component.ts127 - - + src/app/+accounts/accounts.component.ts127 + Audio-only Audio-only src/app/+admin/config/edit-custom-config/edit-configuration.service.ts17 - A <code>.mp4</code> that keeps the original audio track, with no video - A <code>.mp4</code> that keeps the original audio track, with no video + A <code>.mp4</code> that keeps the original audio track, with no video + A <code>.mp4</code> that keeps the original audio track, with no video src/app/+admin/config/edit-custom-config/edit-configuration.service.ts18 - - 144p144p + + + 144p + 144p src/app/+admin/config/edit-custom-config/edit-configuration.service.ts 22 @@ -6930,44 +7183,46 @@ channel with the same name ()! 240p 240p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts26 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts26 + 360p 360p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts30 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts30 + 480p 480p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts34 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts34 + 720p 720p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts38 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts38 + 1080p 1080p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts42 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts42 + 1440p 1440p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts46 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts46 + 2160p 2160p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts50 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts50 + 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 @@ -6976,88 +7231,98 @@ channel with the same name ()! No limit No limit - - 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 hour - - 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 hours - - 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 hours - - 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 hours - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts38 + 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.ts55src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.ts50 + 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.html8 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html8 + 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.html11 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html11 + Read guidelines Read guidelines - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html16 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html16 + 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.html27 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html27 + threads threads - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts90 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts90 + thread thread - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts91 - Updating instance configuration from the web interface is disabled by the system administrator. - Updating instance configuration from the web interface is disabled by the system administrator. + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts91 + + + Updating instance configuration from the web interface is disabled by the system administrator. + Updating instance configuration from the web interface is disabled by the system administrator. src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 3,5 - - HomepageHomepage - - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html12src/app/+admin/config/edit-custom-config/edit-homepage.component.html13src/app/+home/home-routing.module.ts11 - InformationInformation - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html20 - BasicBasic - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html29 + + + Homepage + Homepage + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html12 + src/app/+admin/config/edit-custom-config/edit-homepage.component.html13 + src/app/+home/home-routing.module.ts11 + + + Information + Information + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html20 + + + Basic + Basic + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html29 + Configuration updated. Configuration updated. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts309 - INSTANCE HOMEPAGEINSTANCE HOMEPAGE + src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts309 + + + INSTANCE HOMEPAGE + INSTANCE HOMEPAGE src/app/+admin/config/edit-custom-config/edit-homepage.component.html 7 @@ -7066,13 +7331,13 @@ 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.ts105 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts105 + Edit custom configuration Edit custom configuration - - src/app/+admin/config/config.routes.ts24 + src/app/+admin/config/config.routes.ts24 + Process domains Process domains @@ -7083,13 +7348,13 @@ channel with the same name ()! Report - - src/app/shared/shared-moderation/report-modals/account-report.component.ts61 + src/app/shared/shared-moderation/report-modals/account-report.component.ts61 + Account reported. Account reported. - - src/app/shared/shared-moderation/report-modals/account-report.component.ts83 + src/app/shared/shared-moderation/report-modals/account-report.component.ts83 + Comment reported. Comment reported. @@ -7098,44 +7363,51 @@ 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 Unlimited - - - - - - - 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 None - no upload possible @@ -7256,37 +7528,42 @@ channel with the same name ()! Delete Delete - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/+admin/moderation/video-block-list/video-block-list.component.ts95src/app/+admin/overview/comments/video-comment-list.component.ts100src/app/+admin/overview/comments/video-comment-list.component.ts169src/app/+admin/overview/users/user-list/user-list.component.ts95src/app/+admin/overview/users/user-list/user-list.component.ts209src/app/+admin/overview/videos/video-list.component.ts74src/app/+admin/overview/videos/video-list.component.ts198src/app/+admin/overview/videos/video-list.component.ts229src/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.ts151src/app/+my-library/my-videos/my-videos.component.ts178src/app/+my-library/my-videos/my-videos.component.ts225src/app/+videos/+video-edit/shared/video-edit.component.html190src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts134src/app/shared/shared-abuse-list/abuse-list-table.component.ts376src/app/shared/shared-abuse-list/abuse-list-table.component.ts411src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts366 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts95 + src/app/+admin/overview/comments/video-comment-list.component.ts100 + src/app/+admin/overview/comments/video-comment-list.component.ts169 + src/app/+admin/overview/users/user-list/user-list.component.ts95 + src/app/+admin/overview/users/user-list/user-list.component.ts209 + src/app/+admin/overview/videos/video-list.component.ts74 + src/app/+admin/overview/videos/video-list.component.ts198 + src/app/+admin/overview/videos/video-list.component.ts229 + 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.ts151 + src/app/+my-library/my-videos/my-videos.component.ts178 + src/app/+my-library/my-videos/my-videos.component.ts225 + src/app/+videos/+video-edit/shared/video-edit.component.html190 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts134 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts376 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts411 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts366 + removed from instance followers 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 @@ -7299,8 +7576,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 @@ -7311,14 +7590,17 @@ channel with the same name ()! 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 + Follow request(s) sent! 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 @@ -7329,21 +7611,23 @@ 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 Unfollow - - src/app/+admin/follows/following-list/following-list.component.ts47 + src/app/+admin/follows/following-list/following-list.component.ts47 + You are not following anymore. You are not following anymore. - - src/app/+admin/follows/following-list/following-list.component.ts54 - RedundancyRedundancy + src/app/+admin/follows/following-list/following-list.component.ts54 + + + Redundancy + Redundancy src/app/+admin/follows/follows.routes.ts 48 @@ -7367,30 +7651,28 @@ channel with the same name ()! src/app/+admin/follows/shared/redundancy-checkbox.component.ts25 - - 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.ts149 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts149 + Remove redundancy Remove redundancy - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts150 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts150 + Video redundancies removed! Video redundancies removed! - - src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts156 + src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts156 + 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 @@ -7398,7 +7680,6 @@ channel with the same name ()! src/app/shared/shared-moderation/server-blocklist.component.ts46 - Instance muted by your instance. Instance @@ -7414,162 +7695,168 @@ channel with the same name ()! Violent or Repulsive Violent or Repulsive - - src/app/shared/shared-abuse-list/abuse-details.component.ts19 + src/app/shared/shared-abuse-list/abuse-details.component.ts19 + Hateful or Abusive Hateful or Abusive - - src/app/shared/shared-abuse-list/abuse-details.component.ts20 + src/app/shared/shared-abuse-list/abuse-details.component.ts20 + Spam or Misleading Spam or Misleading - - src/app/shared/shared-abuse-list/abuse-details.component.ts21 + src/app/shared/shared-abuse-list/abuse-details.component.ts21 + 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.html112src/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.html112 + 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 + Copyright Copyright - - - src/app/shared/shared-abuse-list/abuse-details.component.ts23src/app/shared/shared-moderation/abuse.service.ts146 + src/app/shared/shared-abuse-list/abuse-details.component.ts23 + src/app/shared/shared-moderation/abuse.service.ts146 + Server rules Server rules - - src/app/shared/shared-abuse-list/abuse-details.component.ts24 + src/app/shared/shared-abuse-list/abuse-details.component.ts24 + Thumbnails Thumbnails - - - src/app/shared/shared-abuse-list/abuse-details.component.ts25src/app/shared/shared-moderation/abuse.service.ts161 + src/app/shared/shared-abuse-list/abuse-details.component.ts25 + src/app/shared/shared-moderation/abuse.service.ts161 + Internal actions Internal actions - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts59src/app/shared/shared-abuse-list/abuse-list-table.component.ts244 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts59 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts244 + Delete report Delete report - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts275 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts275 + Actions for the flagged account Actions for the flagged account - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts286 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts286 + Mark as accepted Mark as accepted - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts260 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts260 + Mark as rejected Mark as rejected - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts265 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts265 + Add internal note Add internal note - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts270 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts270 + Actions for the video Actions for the video - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts82src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts82 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts334 + Block video Block video - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts339 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts339 + Video blocked. Video blocked. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts345 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts345 + Unblock video Unblock video - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts355 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts355 + Video unblocked. Video unblocked. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts361 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts361 + 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.ts134 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts134 + Abuse deleted. Abuse deleted. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts140 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts140 + Deleted comment Deleted comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts215 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts215 + Messages with reporter Messages with reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts249 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts249 + Messages with moderators Messages with moderators - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts250 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts250 + Update internal note Update internal note - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts255 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts255 + Switch video block to manual Switch video block to manual - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts64 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts64 + Video switched to manual block. Video switched to manual block. - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts70 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts70 + 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.ts131 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts131 + Unblock Unblock - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts86src/app/+admin/moderation/video-block-list/video-block-list.component.ts133src/app/+admin/overview/videos/video-list.component.ts86src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts354 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts86 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts133 + src/app/+admin/overview/videos/video-list.component.ts86 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts354 + Video unblocked. Video unblocked. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts139src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts211 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts139 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts211 + yes yes @@ -7585,155 +7872,180 @@ channel with the same name ()! You don't have plugins installed yet. You don't have plugins installed yet. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts87 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts87 + You don't have themes installed yet. You don't have themes installed yet. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts90 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts90 + Update to Update to - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts98 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts98 + Do you really want to uninstall ? Do you really want to uninstall ? - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 + Uninstall Uninstall - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html21src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts112 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html21 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts112 + uninstalled. uninstalled. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts119 - 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.ts135 - UpgradeUpgrade - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts136 - Proceed upgradeProceed upgrade - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts137 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts119 + + + 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.ts135 + + + Upgrade + Upgrade + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts136 + + + Proceed upgrade + Proceed upgrade + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts137 + updated. updated. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts151 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts151 + Jobs Jobs - - src/app/+admin/admin.component.ts154src/app/+admin/system/system.routes.ts24 + src/app/+admin/admin.component.ts154 + src/app/+admin/system/system.routes.ts24 + Logs Logs - - src/app/+admin/admin.component.ts162src/app/+admin/system/system.routes.ts35 + src/app/+admin/admin.component.ts162 + src/app/+admin/system/system.routes.ts35 + The plugin index is not available. Please retry later. The plugin index is not available. Please retry later. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts99 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts99 + Please only install plugins or themes you trust, since they can execute any code on your instance. Please only install plugins or themes you trust, since they can execute any code on your instance. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts129 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts129 + Install ? Install ? - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts130 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts130 + installed. installed. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts142 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts142 + Settings updated. Settings updated. - - src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts55 - - + src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts55 + plugin plugin - - src/app/+admin/plugins/shared/plugin-api.service.ts30 + src/app/+admin/plugins/shared/plugin-api.service.ts30 + theme theme - - src/app/+admin/plugins/shared/plugin-api.service.ts33 - IP addressIP address + src/app/+admin/plugins/shared/plugin-api.service.ts33 + + + 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 @@ -7742,54 +8054,60 @@ channel with the same name ()! Last week Last week - - src/app/+admin/system/logs/logs.component.ts96 + src/app/+admin/system/logs/logs.component.ts96 + Last day Last day - - src/app/+admin/system/logs/logs.component.ts101 + src/app/+admin/system/logs/logs.component.ts101 + Last hour Last hour - - src/app/+admin/system/logs/logs.component.ts106 + src/app/+admin/system/logs/logs.component.ts106 + debug debug - - src/app/+admin/system/logs/logs.component.ts118 + src/app/+admin/system/logs/logs.component.ts118 + info info - - src/app/+admin/system/logs/logs.component.ts122 + src/app/+admin/system/logs/logs.component.ts122 + warning warning - - src/app/+admin/system/logs/logs.component.ts126 + src/app/+admin/system/logs/logs.component.ts126 + error error - - src/app/+admin/system/logs/logs.component.ts130 + src/app/+admin/system/logs/logs.component.ts130 + Debug Debug - - src/app/+admin/admin.component.ts170src/app/+admin/system/system.routes.ts46 + src/app/+admin/admin.component.ts170 + src/app/+admin/system/system.routes.ts46 + Info Info - - src/app/+admin/overview/videos/video-list.component.html41src/app/core/notification/notifier.service.ts11 - FilesFiles - - src/app/+admin/overview/videos/video-list.component.html42 - Published Published - - src/app/+admin/overview/videos/video-list.component.html43 + src/app/+admin/overview/videos/video-list.component.html41 + src/app/core/notification/notifier.service.ts11 + + + Files + Files + src/app/+admin/overview/videos/video-list.component.html42 + + + Published + Published + src/app/+admin/overview/videos/video-list.component.html43 + Warning Warning @@ -7798,264 +8116,289 @@ channel with the same name ()! Error Error - - - src/app/core/auth/auth.service.ts105src/app/core/notification/notifier.service.ts18 + src/app/core/auth/auth.service.ts105 + src/app/core/notification/notifier.service.ts18 + Standard logs Standard logs - - src/app/+admin/system/logs/logs.component.ts141 + src/app/+admin/system/logs/logs.component.ts141 + Audit logs Audit logs - - src/app/+admin/system/logs/logs.component.ts145 + src/app/+admin/system/logs/logs.component.ts145 + User created. User created. - - src/app/+admin/overview/users/user-edit/user-create.component.ts78 + src/app/+admin/overview/users/user-edit/user-create.component.ts78 + Create user Create user - - src/app/+admin/overview/users/user-edit/user-create.component.ts97src/app/+admin/overview/users/user-list/user-list.component.html25 + src/app/+admin/overview/users/user-edit/user-create.component.ts97 + src/app/+admin/overview/users/user-list/user-list.component.html25 + Blocked videos Blocked videos - - src/app/+admin/moderation/moderation.routes.ts66 + src/app/+admin/moderation/moderation.routes.ts66 + Muted instances Muted instances - - src/app/+admin/moderation/moderation.routes.ts101 + src/app/+admin/moderation/moderation.routes.ts101 + Password changed for user . Password changed for user . - - src/app/+admin/overview/users/user-edit/user-password.component.ts41 + src/app/+admin/overview/users/user-edit/user-password.component.ts41 + Update user password Update user password - - src/app/+admin/overview/users/user-edit/user-password.component.ts54 - - + src/app/+admin/overview/users/user-edit/user-password.component.ts54 + User updated. User updated. - - src/app/+admin/overview/users/user-edit/user-update.component.ts94 + src/app/+admin/overview/users/user-edit/user-update.component.ts94 + Update user Update user - - src/app/+admin/overview/users/user-edit/user-update.component.ts113 + src/app/+admin/overview/users/user-edit/user-update.component.ts113 + An email asking for password reset has been sent to . An email asking for password reset has been sent to . - - src/app/+admin/overview/users/user-edit/user-update.component.ts120 + src/app/+admin/overview/users/user-edit/user-update.component.ts120 + Users list Users list - - src/app/+admin/overview/users/users.routes.ts25 + src/app/+admin/overview/users/users.routes.ts25 + Create a user Create a user - - src/app/+admin/overview/users/users.routes.ts34 + src/app/+admin/overview/users/users.routes.ts34 + Update a user Update a user - - src/app/+admin/overview/users/users.routes.ts43 - Video typeVideo type - - src/app/+admin/overview/videos/video-admin.service.ts45 - VODVOD - - src/app/+admin/overview/videos/video-admin.service.ts49 - LiveLive - - src/app/+admin/overview/videos/video-admin.service.ts53 - Video filesVideo files - - src/app/+admin/overview/videos/video-admin.service.ts59 - With WebTorrentWith WebTorrent - - src/app/+admin/overview/videos/video-admin.service.ts63 - Without WebTorrentWithout WebTorrent - - src/app/+admin/overview/videos/video-admin.service.ts67 - With HLSWith HLS - - src/app/+admin/overview/videos/video-admin.service.ts71 - Without HLSWithout HLS - - src/app/+admin/overview/videos/video-admin.service.ts75 - Videos scopeVideos scope - - src/app/+admin/overview/videos/video-admin.service.ts81 - Remote videosRemote videos - - src/app/+admin/overview/videos/video-admin.service.ts85 + src/app/+admin/overview/users/users.routes.ts43 + + + Video type + Video type + src/app/+admin/overview/videos/video-admin.service.ts45 + + + VOD + VOD + src/app/+admin/overview/videos/video-admin.service.ts49 + + + Live + Live + src/app/+admin/overview/videos/video-admin.service.ts53 + + + Video files + Video files + src/app/+admin/overview/videos/video-admin.service.ts59 + + + With WebTorrent + With WebTorrent + src/app/+admin/overview/videos/video-admin.service.ts63 + + + Without WebTorrent + Without WebTorrent + src/app/+admin/overview/videos/video-admin.service.ts67 + + + With HLS + With HLS + src/app/+admin/overview/videos/video-admin.service.ts71 + + + Without HLS + Without HLS + src/app/+admin/overview/videos/video-admin.service.ts75 + + + Videos scope + Videos scope + src/app/+admin/overview/videos/video-admin.service.ts81 + + + Remote videos + Remote videos + src/app/+admin/overview/videos/video-admin.service.ts85 + Federation Federation - - src/app/+admin/admin.component.ts72 - - + src/app/+admin/admin.component.ts72 + Videos will be deleted, comments will be tombstoned. Videos will be deleted, comments will be tombstoned. - - - src/app/+admin/overview/users/user-list/user-list.component.ts96src/app/shared/shared-moderation/user-moderation-dropdown.component.ts345 + src/app/+admin/overview/users/user-list/user-list.component.ts96 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts345 + Ban Ban - - - src/app/+admin/overview/users/user-list/user-list.component.ts101src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + src/app/+admin/overview/users/user-list/user-list.component.ts101 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + 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/overview/users/user-list/user-list.component.ts102src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351 + src/app/+admin/overview/users/user-list/user-list.component.ts102 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351 + Unban Unban - - - - src/app/+admin/overview/users/user-list/user-list.component.ts107src/app/+admin/overview/users/user-list/user-list.component.ts186src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + src/app/+admin/overview/users/user-list/user-list.component.ts107 + src/app/+admin/overview/users/user-list/user-list.component.ts186 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + Set Email as Verified Set Email as Verified - - - src/app/+admin/overview/users/user-list/user-list.component.ts114src/app/shared/shared-moderation/user-moderation-dropdown.component.ts362 - CreatedCreated - - src/app/+admin/overview/users/user-list/user-list.component.ts129 - Daily quotaDaily quota - - src/app/+admin/overview/users/user-list/user-list.component.ts134 - Last loginLast login - - src/app/+admin/overview/users/user-list/user-list.component.ts136 + src/app/+admin/overview/users/user-list/user-list.component.ts114 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts362 + + + Created + Created + src/app/+admin/overview/users/user-list/user-list.component.ts129 + + + Daily quota + Daily quota + src/app/+admin/overview/users/user-list/user-list.component.ts134 + + + Last login + Last login + src/app/+admin/overview/users/user-list/user-list.component.ts136 + You cannot ban root. You cannot ban root. - - - src/app/+admin/overview/users/user-list/user-list.component.ts173src/app/shared/shared-moderation/user-moderation-dropdown.component.ts71 + src/app/+admin/overview/users/user-list/user-list.component.ts173 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts71 + Do you really want to unban users? Do you really want to unban users? - - src/app/+admin/overview/users/user-list/user-list.component.ts186 + src/app/+admin/overview/users/user-list/user-list.component.ts186 + users unbanned. users unbanned. - - src/app/+admin/overview/users/user-list/user-list.component.ts192 + src/app/+admin/overview/users/user-list/user-list.component.ts192 + You cannot delete root. You cannot delete root. - - - src/app/+admin/overview/users/user-list/user-list.component.ts203src/app/shared/shared-moderation/user-moderation-dropdown.component.ts99 + src/app/+admin/overview/users/user-list/user-list.component.ts203 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts99 + If you remove these users, you will not be able to create others with the same username! If you remove these users, you will not be able to create others with the same username! - - src/app/+admin/overview/users/user-list/user-list.component.ts208 + src/app/+admin/overview/users/user-list/user-list.component.ts208 + users deleted. users deleted. - - src/app/+admin/overview/users/user-list/user-list.component.ts215 + src/app/+admin/overview/users/user-list/user-list.component.ts215 + users email set as verified. users email set as verified. - - src/app/+admin/overview/users/user-list/user-list.component.ts227 + src/app/+admin/overview/users/user-list/user-list.component.ts227 + Account unmuted. Account unmuted. - - - src/app/shared/shared-moderation/account-blocklist.component.ts42src/app/shared/shared-moderation/user-moderation-dropdown.component.ts148 + src/app/shared/shared-moderation/account-blocklist.component.ts42 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts148 + Instance unmuted. Instance unmuted. - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts176 + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts176 + Videos history is enabled Videos history is enabled - - src/app/+my-library/my-history/my-history.component.ts96 + src/app/+my-library/my-history/my-history.component.ts96 + Videos history is disabled Videos history is disabled - - src/app/+my-library/my-history/my-history.component.ts97 + src/app/+my-library/my-history/my-history.component.ts97 + Delete videos history Delete videos history - - src/app/+my-library/my-history/my-history.component.ts120 + src/app/+my-library/my-history/my-history.component.ts120 + 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.ts121 + src/app/+my-library/my-history/my-history.component.ts121 + Videos history deleted Videos history deleted - - src/app/+my-library/my-history/my-history.component.ts129 + src/app/+my-library/my-history/my-history.component.ts129 + My watch history My watch history - - src/app/+my-library/my-history/my-history.component.html3src/app/+my-library/my-history/my-history.component.ts50 - + src/app/+my-library/my-history/my-history.component.html3 + src/app/+my-library/my-history/my-history.component.ts50 + Track watch history Track watch history - - src/app/+my-library/my-history/my-history.component.html13 - Clear all history Clear all history + src/app/+my-library/my-history/my-history.component.html13 + + + Clear all history + Clear all history src/app/+my-library/my-history/my-history.component.html 17,19 @@ -8064,8 +8407,8 @@ channel with the same name ()! Ownership accepted Ownership accepted - - 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. Please check your emails to verify your new email. @@ -8077,46 +8420,52 @@ channel with the same name ()! 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.html4 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html4 + 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. 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 + 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.ts29 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts29 + Delete your account 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.ts31 - Are you sure you want to delete your account?Are you sure you want to delete your account? + 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.ts31 + + + Are you sure you want to delete your account? + Are you sure you want to delete your account? src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts 22 - - This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "" username.This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "" username. + + + This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "" username. + This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "" username. src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts 25 - - Content cached by other servers and other third-parties might make longer to be deleted.Content cached by other servers and other third-parties might make longer to be deleted. + + + Content cached by other servers and other third-parties might make longer to be deleted. + 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.ts 27 @@ -8125,19 +8474,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.ts32 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts32 + Your account is deleted. Your account is deleted. - - src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts39 + src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts39 + 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 New video from your subscriptions @@ -8152,14 +8501,15 @@ channel with the same name ()! New abuse New abuse src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts34 - - An automatically blocked video is awaiting reviewAn automatically blocked video is awaiting review + + + An automatically blocked video is awaiting review + An automatically blocked video is awaiting review src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts 35 - One of your video is blocked/unblocked One of your video is blocked/unblocked @@ -8209,26 +8559,34 @@ channel with the same name ()! One of your abuse reports has been accepted or rejected by moderators One of your abuse reports has been accepted or rejected by moderators 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 - - SocialSocial + + + Social + Social src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts 51 - - Your videosYour videos + + + Your videos + Your videos src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts 60 @@ -8237,13 +8595,13 @@ 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.ts134 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts134 + Profile updated. 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 @@ @@ -8255,84 +8613,90 @@ channel with the same name ()! Avatar changed. Avatar changed. - - - src/app/+manage/video-channel-edit/video-channel-update.component.ts112src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + src/app/+manage/video-channel-edit/video-channel-update.component.ts112 + src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + avatar avatar - - - src/app/+manage/video-channel-edit/video-channel-update.component.ts119src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + src/app/+manage/video-channel-edit/video-channel-update.component.ts119 + src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + Avatar deleted. Avatar deleted. - - - src/app/+manage/video-channel-edit/video-channel-update.component.ts129src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + src/app/+manage/video-channel-edit/video-channel-update.component.ts129 + src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + Unknown language Unknown language - - src/app/shared/shared-forms/select/select-languages.component.ts42 + src/app/shared/shared-forms/select/select-languages.component.ts42 + 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. Video channel created. - - src/app/+manage/video-channel-edit/video-channel-create.component.ts66 + src/app/+manage/video-channel-edit/video-channel-create.component.ts66 + This name already exists on this instance. This name already exists on this instance. - - src/app/+manage/video-channel-edit/video-channel-create.component.ts72 + src/app/+manage/video-channel-edit/video-channel-create.component.ts72 + Video channel updated. Video channel updated. - - src/app/+manage/video-channel-edit/video-channel-update.component.ts97 - Banner changed.Banner changed. - - src/app/+manage/video-channel-edit/video-channel-update.component.ts142 - bannerbanner - - src/app/+manage/video-channel-edit/video-channel-update.component.ts149 - Banner deleted.Banner deleted. - - src/app/+manage/video-channel-edit/video-channel-update.component.ts159 - + src/app/+manage/video-channel-edit/video-channel-update.component.ts97 + + + Banner changed. + Banner changed. + src/app/+manage/video-channel-edit/video-channel-update.component.ts142 + + + banner + banner + src/app/+manage/video-channel-edit/video-channel-update.component.ts149 + + + Banner deleted. + Banner deleted. + src/app/+manage/video-channel-edit/video-channel-update.component.ts159 + Video channel deleted. Video channel deleted. - - 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 Views for the day - - src/app/+my-library/+my-video-channels/my-video-channels.component.ts88 - My followersMy followers + src/app/+my-library/+my-video-channels/my-video-channels.component.ts88 + + + My followers + My followers src/app/+my-library/my-follows/my-followers.component.html 4 @@ -8341,32 +8705,42 @@ channel with the same name ()! src/app/+my-library/my-library-routing.module.ts 108 - - No follower found.No follower found. + + + No follower found. + No follower found. src/app/+my-library/my-follows/my-followers.component.html 13 - - Follower pageFollower page + + + Follower page + Follower page src/app/+my-library/my-follows/my-followers.component.html 20 - - Is following all your channelsIs following all your channels + + + Is following all your channels + Is following all your channels src/app/+my-library/my-follows/my-followers.component.html 26 - - Is following your channel Is following your channel + + + Is following your channel + Is following your channel src/app/+my-library/my-follows/my-followers.component.html 27 - - Channel filtersChannel filters + + + Channel filters + Channel filters src/app/+my-library/my-follows/my-followers.component.ts 49 @@ -8379,8 +8753,8 @@ channel with the same name ()! Update video channel Update video channel - - src/app/+manage/manage-routing.module.ts21 + src/app/+manage/manage-routing.module.ts21 + Not found Not found @@ -8401,8 +8775,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 @@ -8421,32 +8797,40 @@ 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 - - - src/app/+admin/overview/users/user-edit/user-edit.component.html8src/app/+admin/overview/users/user-edit/user-edit.component.html8src/app/+manage/video-channel-edit/video-channel-create.component.ts102src/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/overview/users/user-edit/user-edit.component.html8 + src/app/+admin/overview/users/user-edit/user-edit.component.html8 + src/app/+manage/video-channel-edit/video-channel-create.component.ts102 + 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 + Update playlist Update playlist - - - src/app/+my-library/my-library-routing.module.ts67src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47 + src/app/+my-library/my-library-routing.module.ts67 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47 + Notifications Notifications - - - 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 + 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 + Delete playlist Delete playlist @@ -8457,14 +8841,14 @@ 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 + Change ownership Change ownership - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts220 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts220 + Playlist deleted. Playlist @@ -8475,24 +8859,28 @@ channel with the same name ()! My videos My videos - - src/app/+my-library/my-library-routing.module.ts77src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts67src/app/core/menu/menu.service.ts77 - + src/app/+my-library/my-library-routing.module.ts77 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts67 + src/app/core/menu/menu.service.ts77 + Do you really want to delete videos? Do you really want to delete videos? - - src/app/+my-library/my-videos/my-videos.component.ts150 + src/app/+my-library/my-videos/my-videos.component.ts150 + videos deleted. videos deleted. - - src/app/+my-library/my-videos/my-videos.component.ts167 - Videos listVideos list + src/app/+my-library/my-videos/my-videos.component.ts167 + + + Videos list + Videos list src/app/+admin/overview/videos/video.routes.ts 24 @@ -8503,17 +8891,22 @@ channel with the same name ()! 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.ts177src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts226 + 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.ts177 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts226 + Video deleted. Video deleted. - - - src/app/+my-library/my-videos/my-videos.component.ts185src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts237 - EditorEditor + src/app/+my-library/my-videos/my-videos.component.ts185 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts237 + + + Editor + Editor src/app/+my-library/my-videos/my-videos.component.ts 208 @@ -8526,9 +8919,11 @@ channel with the same name ()! 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 @@ -8537,325 +8932,386 @@ channel with the same name ()! My channels My channels - - 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 My playlists - - src/app/+my-library/my-library-routing.module.ts40src/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.ts40 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 + src/app/core/menu/menu.service.ts86 + My subscriptions My subscriptions - - src/app/+my-library/my-follows/my-subscriptions.component.html4src/app/+my-library/my-library-routing.module.ts99src/app/core/menu/menu.service.ts92 - + src/app/+my-library/my-follows/my-subscriptions.component.html4 + src/app/+my-library/my-library-routing.module.ts99 + src/app/core/menu/menu.service.ts92 + You don't have any subscription yet. You don't have any subscription yet. - - src/app/+my-library/my-follows/my-subscriptions.component.html13 + src/app/+my-library/my-follows/my-subscriptions.component.html13 + My abuse reports My abuse reports - - src/app/+my-account/my-account-routing.module.ts117 + src/app/+my-account/my-account-routing.module.ts117 + Ownership changes Ownership changes - - src/app/+my-library/my-library-routing.module.ts117src/app/+my-library/my-videos/my-videos.component.html16 + src/app/+my-library/my-library-routing.module.ts117 + src/app/+my-library/my-videos/my-videos.component.html16 + My video history My video history - - src/app/+my-library/my-library-routing.module.ts127 + src/app/+my-library/my-library-routing.module.ts127 + Channels Channels - - src/app/+my-library/my-library.component.ts45src/app/+search/search-filters.component.html200 + src/app/+my-library/my-library.component.ts45 + src/app/+search/search-filters.component.html200 + Videos Videos - - src/app/+accounts/account-videos/account-videos.component.ts17src/app/+admin/admin.component.ts49src/app/+admin/overview/videos/video-list.component.html3src/app/+my-library/my-library.component.ts52src/app/+search/search-filters.component.html195src/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/+admin/admin.component.ts49 + src/app/+admin/overview/videos/video-list.component.html3 + src/app/+my-library/my-library.component.ts52 + src/app/+search/search-filters.component.html195 + src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts17 + src/app/core/menu/menu.service.ts76 + Playlists Playlists - - src/app/+my-library/my-library.component.ts59src/app/+search/search-filters.component.html205src/app/core/menu/menu.service.ts85 + src/app/+my-library/my-library.component.ts59 + src/app/+search/search-filters.component.html205 + src/app/core/menu/menu.service.ts85 + 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.ts50 + src/app/shared/shared-forms/markdown-textarea.component.ts50 + Exit maximized editor Exit maximized editor - - src/app/shared/shared-forms/markdown-textarea.component.ts51 + src/app/shared/shared-forms/markdown-textarea.component.ts51 + 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.ts137 + src/app/+signup/+register/register.component.ts137 + You are now logged in as ! You are now logged in as ! - - src/app/+signup/+register/register.component.ts145 + src/app/+signup/+register/register.component.ts145 + An email with verification link will be sent to . 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.ts40 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts40 + Unable to find user id or verification string. Unable to find user id or verification string. - - - src/app/+reset-password/reset-password.component.ts38src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts34 - - + src/app/+reset-password/reset-password.component.ts38 + src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts34 + Subscribe to the account Subscribe to the account - - - src/app/+video-channels/video-channels.component.ts76src/app/+videos/+video-watch/video-watch.component.ts747 - PLAYLISTSPLAYLISTS - - src/app/+video-channels/video-channels.component.ts82 - Edit Edit + src/app/+video-channels/video-channels.component.ts76 + src/app/+videos/+video-watch/video-watch.component.ts747 + + + PLAYLISTS + PLAYLISTS + src/app/+video-channels/video-channels.component.ts82 + + + Edit + Edit src/app/+video-editor/edit/video-editor-edit.component.html 2 - - CUT VIDEOCUT VIDEO + + + CUT VIDEO + CUT VIDEO src/app/+video-editor/edit/video-editor-edit.component.html 8 - - Set a new start/end.Set a new start/end. + + + Set a new start/end. + Set a new start/end. src/app/+video-editor/edit/video-editor-edit.component.html 10 - - New startNew start + + + New start + New start src/app/+video-editor/edit/video-editor-edit.component.html 13 - - New endNew end + + + New end + New end src/app/+video-editor/edit/video-editor-edit.component.html 18 - - ADD INTROADD INTRO + + + ADD INTRO + ADD INTRO src/app/+video-editor/edit/video-editor-edit.component.html 24 - - Concatenate a file at the beginning of the video.Concatenate a file at the beginning of the video. + + + Concatenate a file at the beginning of the video. + Concatenate a file at the beginning of the video. src/app/+video-editor/edit/video-editor-edit.component.html 26 - - Select the intro video fileSelect the intro video file + + + Select the intro video file + Select the intro video file src/app/+video-editor/edit/video-editor-edit.component.html 30 - - ADD OUTROADD OUTRO + + + ADD OUTRO + ADD OUTRO src/app/+video-editor/edit/video-editor-edit.component.html 38 - - Concatenate a file at the end of the video.Concatenate a file at the end of the video. + + + Concatenate a file at the end of the video. + Concatenate a file at the end of the video. src/app/+video-editor/edit/video-editor-edit.component.html 40 - - Select the outro video fileSelect the outro video file + + + Select the outro video file + Select the outro video file src/app/+video-editor/edit/video-editor-edit.component.html 44 - - ADD WATERMARKADD WATERMARK + + + ADD WATERMARK + ADD WATERMARK src/app/+video-editor/edit/video-editor-edit.component.html 52 - - Add a watermark image to the video.Add a watermark image to the video. + + + Add a watermark image to the video. + Add a watermark image to the video. src/app/+video-editor/edit/video-editor-edit.component.html 54 - - Select watermark image fileSelect watermark image file + + + Select watermark image file + Select watermark image file src/app/+video-editor/edit/video-editor-edit.component.html 58 - - Run video editionRun video edition + + + Run video edition + Run video edition src/app/+video-editor/edit/video-editor-edit.component.html 66 - - Video before editionVideo before edition + + + Video before edition + Video before edition src/app/+video-editor/edit/video-editor-edit.component.html 75 - - Edition tasks:Edition tasks: + + + Edition tasks: + Edition tasks: src/app/+video-editor/edit/video-editor-edit.component.html 80 - - Are you sure you want to edit ""?Are you sure you want to edit ""? + + + Are you sure you want to edit ""? + Are you sure you want to edit ""? src/app/+video-editor/edit/video-editor-edit.component.ts 72 - - The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br />The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> + + + The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> + The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> src/app/+video-editor/edit/video-editor-edit.component.ts 76 - - As a reminder, the following tasks will be executed: <ol></ol>As a reminder, the following tasks will be executed: <ol></ol> + + + As a reminder, the following tasks will be executed: <ol></ol> + As a reminder, the following tasks will be executed: <ol></ol> src/app/+video-editor/edit/video-editor-edit.component.ts 77 - Focus the search bar Focus the search bar - - src/app/app.component.ts274 + src/app/app.component.ts274 + Toggle the left menu Toggle the left menu - - src/app/app.component.ts279 + src/app/app.component.ts279 + Go to the discover videos page Go to the discover videos page - - src/app/app.component.ts284 + src/app/app.component.ts284 + Go to the trending videos page Go to the trending videos page - - src/app/app.component.ts289 + src/app/app.component.ts289 + Go to the recently added videos page Go to the recently added videos page - - src/app/app.component.ts294 + src/app/app.component.ts294 + Go to the local videos page Go to the local videos page - - src/app/app.component.ts299 + src/app/app.component.ts299 + Go to the videos upload page Go to the videos upload page - - src/app/app.component.ts304 + src/app/app.component.ts304 + Go to my subscriptions Go to my subscriptions - - src/app/core/auth/auth.service.ts61 + src/app/core/auth/auth.service.ts61 + Go to my videos Go to my videos - - src/app/core/auth/auth.service.ts65 + src/app/core/auth/auth.service.ts65 + Go to my imports Go to my imports - - src/app/core/auth/auth.service.ts69 + src/app/core/auth/auth.service.ts69 + Go to my channels Go to my channels - - src/app/core/auth/auth.service.ts73 + src/app/core/auth/auth.service.ts73 + - 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. Cannot retrieve OAuth Client credentials: . Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section. - - src/app/core/auth/auth.service.ts100 + src/app/core/auth/auth.service.ts100 + You need to reconnect. You need to reconnect. - - src/app/core/auth/auth.service.ts221 + src/app/core/auth/auth.service.ts221 + Keyboard Shortcuts: Keyboard Shortcuts: 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 Success @@ -8864,162 +9320,177 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Incorrect username or password. Incorrect username or password. - - src/app/+login/login.component.ts164 + src/app/+login/login.component.ts164 + Your account is blocked. Your account is blocked. - - src/app/+login/login.component.ts165 + src/app/+login/login.component.ts165 + any language any language - - src/app/menu/menu.component.ts276 - + src/app/menu/menu.component.ts276 + hide hide - - src/app/menu/menu.component.ts311 + src/app/menu/menu.component.ts311 + blur blur - - src/app/menu/menu.component.ts315 + src/app/menu/menu.component.ts315 + display display - - src/app/menu/menu.component.ts319 + src/app/menu/menu.component.ts319 + Unknown Unknown - - src/app/menu/menu.component.ts206 + src/app/menu/menu.component.ts206 + Your password has been successfully reset! Your password has been successfully reset! src/app/+reset-password/reset-password.component.ts47 - Today Today - - - - src/app/+search/search-filters.component.ts40src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts134 + src/app/+search/search-filters.component.ts40 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts134 + Yesterday Yesterday - - src/app/shared/shared-video-miniature/videos-list.component.ts135 + src/app/shared/shared-video-miniature/videos-list.component.ts135 + This week This week - - src/app/shared/shared-video-miniature/videos-list.component.ts136 + src/app/shared/shared-video-miniature/videos-list.component.ts136 + This month This month - - src/app/shared/shared-video-miniature/videos-list.component.ts137 + src/app/shared/shared-video-miniature/videos-list.component.ts137 + Last month Last month - - src/app/shared/shared-video-miniature/videos-list.component.ts138 + src/app/shared/shared-video-miniature/videos-list.component.ts138 + Older Older - - src/app/shared/shared-video-miniature/videos-list.component.ts139 + src/app/shared/shared-video-miniature/videos-list.component.ts139 + Cannot load more videos. Try again later. Cannot load more videos. Try again later. - - src/app/shared/shared-video-miniature/videos-list.component.ts246src/app/shared/shared-video-miniature/videos-selection.component.ts129 - + src/app/shared/shared-video-miniature/videos-list.component.ts246 + src/app/shared/shared-video-miniature/videos-selection.component.ts129 + Last 7 days Last 7 days - - src/app/+search/search-filters.component.ts44 + src/app/+search/search-filters.component.ts44 + Last 30 days Last 30 days - - src/app/+search/search-filters.component.ts48 + src/app/+search/search-filters.component.ts48 + Last 365 days Last 365 days - - src/app/+search/search-filters.component.ts52 - VOD videosVOD videos - - src/app/+search/search-filters.component.html34src/app/shared/shared-video-miniature/video-filters-header.component.html109src/app/shared/shared-video-miniature/video-filters.model.ts165 - Live videosLive videos - - src/app/+search/search-filters.component.html29src/app/shared/shared-video-miniature/video-filters-header.component.html104src/app/shared/shared-video-miniature/video-filters.model.ts159 + src/app/+search/search-filters.component.ts52 + + + VOD videos + VOD videos + src/app/+search/search-filters.component.html34 + src/app/shared/shared-video-miniature/video-filters-header.component.html109 + src/app/shared/shared-video-miniature/video-filters.model.ts165 + + + Live videos + Live videos + src/app/+search/search-filters.component.html29 + src/app/shared/shared-video-miniature/video-filters-header.component.html104 + src/app/shared/shared-video-miniature/video-filters.model.ts159 + Short (< 4 min) Short (< 4 min) - - src/app/+search/search-filters.component.ts59 + src/app/+search/search-filters.component.ts59 + Medium (4-10 min) Medium (4-10 min) - - src/app/+search/search-filters.component.ts63 + src/app/+search/search-filters.component.ts63 + - Long (> 10 min) - Long (> 10 min) - - src/app/+search/search-filters.component.ts67 + Long (> 10 min) + Long (> 10 min) + src/app/+search/search-filters.component.ts67 + Relevance Relevance - - src/app/+search/search-filters.component.ts74 + src/app/+search/search-filters.component.ts74 + Publish date Publish date - - src/app/+search/search-filters.component.ts78 + src/app/+search/search-filters.component.ts78 + Views Views - - - src/app/+search/search-filters.component.ts82 + src/app/+search/search-filters.component.ts82 + Search index is unavailable. Retrying with instance results instead. Search index is unavailable. Retrying with instance results instead. - - src/app/+search/search.component.ts159 + src/app/+search/search.component.ts159 + Search error Search error - - src/app/+search/search.component.ts160 - PeerTube instance host filter is invalidPeerTube instance host filter is invalid - - src/app/+search/search.component.ts327 + src/app/+search/search.component.ts160 + + + PeerTube instance host filter is invalid + PeerTube instance host filter is invalid + src/app/+search/search.component.ts327 + Search Search - - - - src/app/+admin/plugins/shared/plugin-navigation.component.html4src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts255src/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 - Navigate between plugins and themesNavigate between plugins and themes + src/app/+admin/plugins/shared/plugin-navigation.component.html4 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts255 + 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 + + + Navigate between plugins and themes + Navigate between plugins and themes src/app/+admin/plugins/shared/plugin-navigation.component.html 7 - - + + + + src/app/+search/search.component.html 5 @@ -9030,9 +9501,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular years ago - - 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 @@ -9042,15 +9515,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 17 - months ago months ago - - 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 @@ -9060,61 +9534,63 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 24 - weeks ago weeks ago - - 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 days ago - - 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 hours ago - - 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 ago - - src/app/shared/shared-main/angular/from-now.pipe.ts37 + src/app/shared/shared-main/angular/from-now.pipe.ts37 + just now just now - - src/app/shared/shared-main/angular/from-now.pipe.ts39 + src/app/shared/shared-main/angular/from-now.pipe.ts39 + sec @@ -9130,13 +9606,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Settings Settings - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html12src/app/+admin/plugins/plugin-search/plugin-search.component.html45src/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.html12 + src/app/+admin/plugins/plugin-search/plugin-search.component.html45 + src/app/+my-account/my-account-settings/my-account-settings.component.html1 + src/app/+my-account/my-account.component.ts50 + Confirm Confirm - - src/app/modal/confirm.component.ts40 + src/app/modal/confirm.component.ts40 + Instance name is required. Instance name is required. @@ -9186,32 +9665,39 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Signup limit is required. Signup limit is required. 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. Signup limit must be a number. 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 @@ -9220,66 +9706,72 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Admin email is required. Admin email is required. - - src/app/shared/form-validators/custom-config-validators.ts64 + src/app/shared/form-validators/custom-config-validators.ts64 + Admin email must be valid. Admin email must be valid. - - src/app/shared/form-validators/custom-config-validators.ts65 + src/app/shared/form-validators/custom-config-validators.ts65 + Transcoding threads is required. Transcoding threads is required. - - 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 must be greater or equal to 0. - - 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 - Max video channels per user is required.Max video channels per user is required. + src/app/shared/form-validators/custom-config-validators.ts97 + + + Max video channels per user is required. + Max video channels per user is required. src/app/shared/form-validators/custom-config-validators.ts 104 - - Max video channels per user must be greater or equal to 1.Max video channels per user must be greater or equal to 1. + + + Max video channels per user must be greater or equal to 1. + Max video channels per user must be greater or equal to 1. src/app/shared/form-validators/custom-config-validators.ts 105 - - Max video channels per user must be a number.Max video channels per user must be a number. + + + Max video channels per user must be a number. + Max video channels per user must be a number. src/app/shared/form-validators/custom-config-validators.ts 106 @@ -9288,44 +9780,45 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Concurrency is required. Concurrency is required. - - src/app/shared/form-validators/custom-config-validators.ts113 + src/app/shared/form-validators/custom-config-validators.ts113 + Concurrency should be greater or equal to 1. Concurrency should be greater or equal to 1. - - src/app/shared/form-validators/custom-config-validators.ts114 + src/app/shared/form-validators/custom-config-validators.ts114 + Index URL should be a URL Index URL should be a URL - - src/app/shared/form-validators/custom-config-validators.ts121 + src/app/shared/form-validators/custom-config-validators.ts121 + Search index URL should be a URL Search index URL should be a URL - - src/app/shared/form-validators/custom-config-validators.ts128 + src/app/shared/form-validators/custom-config-validators.ts128 + Email is required. Email is required. - - - 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. Email must be valid. - - - 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 - 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.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. Your name is required. @@ -9374,16 +9867,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Username is required. Username is required. - - - 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. Password is required. - - - - 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. Confirmation of the password is required. @@ -9392,129 +9885,129 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Username must be at least 1 character long. Username must be at least 1 character long. - - src/app/shared/form-validators/user-validators.ts15 + src/app/shared/form-validators/user-validators.ts15 + Username cannot be more than 50 characters long. Username cannot be more than 50 characters long. - - 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. Username should be lowercase alphanumeric; dots and underscores are allowed. - - src/app/shared/form-validators/user-validators.ts17 + src/app/shared/form-validators/user-validators.ts17 + Channel name is required. Channel name is required. - - 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. Channel name must be at least 1 character long. - - 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. Channel name cannot be more than 50 characters long. - - 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. Password must be at least 6 characters long. - - - 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. Password cannot be more than 255 characters long. - - - 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. The new password and the confirmed password do not correspond. - - src/app/shared/form-validators/user-validators.ts91 + src/app/shared/form-validators/user-validators.ts91 + Video quota is required. Video quota is required. - - src/app/shared/form-validators/user-validators.ts98 + src/app/shared/form-validators/user-validators.ts98 + Quota must be greater than -1. Quota must be greater than -1. - - src/app/shared/form-validators/user-validators.ts99 + src/app/shared/form-validators/user-validators.ts99 + Daily upload limit is required. Daily upload limit is required. - - src/app/shared/form-validators/user-validators.ts105 + src/app/shared/form-validators/user-validators.ts105 + Daily upload limit must be greater than -1. Daily upload limit must be greater than -1. - - src/app/shared/form-validators/user-validators.ts106 + src/app/shared/form-validators/user-validators.ts106 + User role is required. User role is required. - - src/app/shared/form-validators/user-validators.ts113 + src/app/shared/form-validators/user-validators.ts113 + Description must be at least 3 characters long. Description must be at least 3 characters long. - - - - 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. - - 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. Ban reason must be at least 3 characters long. - - 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. Ban reason cannot be more than 250 characters long. - - src/app/shared/form-validators/user-validators.ts144 + src/app/shared/form-validators/user-validators.ts144 + Display name is required. 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. 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. Report reason is required. @@ -9584,8 +10077,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video caption file is required. Video caption file is required. src/app/shared/form-validators/video-captions-validators.ts14 - - Caption content is required.Caption content is required. + + + Caption content is required. + Caption content is required. src/app/shared/form-validators/video-captions-validators.ts 21 @@ -9604,39 +10099,39 @@ 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. Support text must be at least 3 characters long. - - 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. + 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. - - src/app/shared/shared-video-live/live-documentation-link.component.html1 + src/app/shared/shared-video-live/live-documentation-link.component.html1 + Comment is required. Comment is required. @@ -9671,8 +10166,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Live information Live information src/app/shared/shared-video-live/live-stream-information.component.html3 - - Permanent/Recurring livePermanent/Recurring live + + + Permanent/Recurring live + Permanent/Recurring live src/app/shared/shared-video-live/live-stream-information.component.html 10 @@ -9681,38 +10178,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Live RTMP Url Live RTMP Url - - - src/app/+videos/+video-edit/shared/video-edit.component.html245src/app/shared/shared-video-live/live-stream-information.component.html19 - Live RTMPS UrlLive RTMPS Url - - - src/app/+videos/+video-edit/shared/video-edit.component.html250src/app/shared/shared-video-live/live-stream-information.component.html24 + src/app/+videos/+video-edit/shared/video-edit.component.html245 + src/app/shared/shared-video-live/live-stream-information.component.html19 + + + Live RTMPS Url + Live RTMPS Url + src/app/+videos/+video-edit/shared/video-edit.component.html250 + src/app/shared/shared-video-live/live-stream-information.component.html24 + Live stream key Live stream key - - - src/app/+videos/+video-edit/shared/video-edit.component.html255src/app/shared/shared-video-live/live-stream-information.component.html29 + src/app/+videos/+video-edit/shared/video-edit.component.html255 + src/app/shared/shared-video-live/live-stream-information.component.html29 + ⚠️ Never share your stream key with anyone. ⚠️ Never share your stream key with anyone. - - - src/app/+videos/+video-edit/shared/video-edit.component.html258src/app/shared/shared-video-live/live-stream-information.component.html32 - This is a normal liveThis is a normal live - - src/app/+videos/+video-edit/shared/video-edit.component.html264 - You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL - - src/app/+videos/+video-edit/shared/video-edit.component.html266 - This is a permanent/recurring liveThis is a permanent/recurring live - - src/app/+videos/+video-edit/shared/video-edit.component.html273 - You can stream multiple times in a permanent/recurring 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/recurring live. The URL for your viewers won't change but you cannot save replays of your lives - - src/app/+videos/+video-edit/shared/video-edit.component.html275 - + src/app/+videos/+video-edit/shared/video-edit.component.html258 + src/app/shared/shared-video-live/live-stream-information.component.html32 + + + This is a normal live + This is a normal live + src/app/+videos/+video-edit/shared/video-edit.component.html264 + + + You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL + You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL + src/app/+videos/+video-edit/shared/video-edit.component.html266 + + + This is a permanent/recurring live + This is a permanent/recurring live + src/app/+videos/+video-edit/shared/video-edit.component.html273 + + + You can stream multiple times in a permanent/recurring 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/recurring live. The URL for your viewers won't change but you cannot save replays of your lives + src/app/+videos/+video-edit/shared/video-edit.component.html275 + Replay will be saved Replay will be saved @@ -9724,19 +10230,21 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video name is required. Video name is required. - - 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. Video name must be at least 3 characters long. - - 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. Video name cannot be more than 120 characters long. - - 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 @@ -9745,58 +10253,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video privacy is required. Video privacy is required. - - src/app/shared/form-validators/video-validators.ts25 + src/app/shared/form-validators/video-validators.ts25 + Video channel is required. Video channel is required. - - 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. Video description must be at least 3 characters long. - - 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. Video description cannot be more than 10000 characters long. - - 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. A tag should be more than 2 characters long. - - 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. A tag should be less than 30 characters long. - - 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. A maximum of 5 tags can be used on a video. - - 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. A tag should be more than 1 and less than 30 characters long. - - 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. Video support must be at least 3 characters long. - - 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 support cannot be more than 1000 characters long. - - src/app/shared/form-validators/video-validators.ts84 + src/app/shared/form-validators/video-validators.ts84 + A date is required to schedule video update. A date is required to schedule video update. - - src/app/shared/form-validators/video-validators.ts91 + src/app/shared/form-validators/video-validators.ts91 + This file is too large. This file is too large. @@ -9806,14 +10314,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 @@ -9822,13 +10334,13 @@ 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.ts29 + src/app/shared/shared-forms/select/select-checkbox.component.ts29 + Custom value... Custom value... - - src/app/shared/shared-forms/select/select-custom-value.component.ts70 + src/app/shared/shared-forms/select/select-custom-value.component.ts70 + 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? @@ -9837,143 +10349,171 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Sunday Sunday - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts10 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts10 + Monday Monday - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11 + Tuesday Tuesday - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12 + Wednesday Wednesday - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13 + Thursday Thursday - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14 + Friday Friday - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15 + Saturday Saturday - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16 - SunSun + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16 + + + Sun + Sun src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 20 Day name short Sunday short name - - MonMon + + + Mon + Mon src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 21 Day name short Monday short name - - TueTue + + + Tue + Tue src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 22 Day name short Tuesday short name - - WedWed + + + Wed + Wed src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 23 Day name short Wednesday short name - - ThuThu + + + Thu + Thu src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 24 Day name short Thursday short name - - FriFri + + + Fri + Fri src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 25 Day name short Friday short name - - SatSat + + + Sat + Sat src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 26 Day name short Saturday short name - - SuSu + + + Su + Su src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 30 Day name min Sunday min name - - MoMo + + + Mo + Mo src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 31 Day name min Monday min name - - TuTu + + + Tu + Tu src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 32 Day name min Tuesday min name - - WeWe + + + We + We src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 33 Day name min Wednesday min name - - ThTh + + + Th + Th src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 34 Day name min Thursday min name - - FrFr + + + Fr + Fr src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 35 Day name min Friday min name - - SaSa + + + Sa + Sa src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 36 @@ -9981,170 +10521,179 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Day name min Saturday min name - - - - - - - - - - - - - - January January - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts40 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts40 + February February - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41 + March March - - 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 May - - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44 + June June - - 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 August - - 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 October - - 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 - JanJan + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51 + + + Jan + Jan src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 55 Month name short January short name - - FebFeb + + + Feb + Feb src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 56 Month name short February short name - - MarMar + + + Mar + Mar src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 57 Month name short March short name - - AprApr + + + Apr + Apr src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 58 Month name short April short name - - MayMay + + + May + May src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 59 Month name short May short name - - JunJun + + + Jun + Jun src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 60 Month name short June short name - - JulJul + + + Jul + Jul src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 61 Month name short July short name - - AugAug + + + Aug + Aug src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 62 Month name short August short name - - SepSep + + + Sep + Sep src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 63 Month name short September short name - - OctOct + + + Oct + Oct src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 64 Month name short October short name - - NovNov + + + Nov + Nov src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 65 Month name short November short name - - DecDec + + + Dec + Dec src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts 66 @@ -10152,105 +10701,98 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Month name short December short name - - - - - - - - - - - Clear Clear - - 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 Instance languages - - src/app/+videos/+video-edit/shared/video-edit.component.ts193 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 + All languages All languages - - - src/app/+videos/+video-edit/shared/video-edit.component.ts194src/app/shared/shared-forms/select/select-languages.component.ts25 + src/app/+videos/+video-edit/shared/video-edit.component.ts194 + src/app/shared/shared-forms/select/select-languages.component.ts25 + Hidden Hidden - - src/app/shared/shared-instance/instance-features-table.component.ts53 + 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 + src/app/shared/shared-instance/instance-features-table.component.ts54 + Displayed Displayed - - src/app/shared/shared-instance/instance-features-table.component.ts55src/app/shared/shared-video-miniature/video-filters.model.ts233 + src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-video-miniature/video-filters.model.ts233 + ~ 1 minute ~ 1 minute - - src/app/shared/shared-instance/instance-features-table.component.ts74 + src/app/shared/shared-instance/instance-features-table.component.ts74 + ~ minutes ~ minutes - - src/app/shared/shared-instance/instance-features-table.component.ts76 + src/app/shared/shared-instance/instance-features-table.component.ts76 + of full HD videos of 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 of 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 of average quality videos - - src/app/shared/shared-instance/instance-features-table.component.ts94 + 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.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts40src/app/shared/shared-video-miniature/video-miniature.component.ts125 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/shared/shared-video-miniature/video-miniature.component.ts125 + (account page) (account page) - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts21src/app/shared/shared-actor-image/actor-avatar.component.ts39 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts21 + src/app/shared/shared-actor-image/actor-avatar.component.ts39 + 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 + Links Links @@ -10264,37 +10806,44 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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 + Images Images 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. users banned. - - src/app/shared/shared-moderation/user-ban-modal.component.ts67 + src/app/shared/shared-moderation/user-ban-modal.component.ts67 + User banned. User banned. - - src/app/shared/shared-moderation/user-ban-modal.component.ts68 - Ban usersBan users + src/app/shared/shared-moderation/user-ban-modal.component.ts68 + + + Ban users + Ban users src/app/shared/shared-moderation/user-ban-modal.component.ts 82 - - Ban ""Ban "" + + + Ban "" + Ban "" src/app/shared/shared-moderation/user-ban-modal.component.ts 84 @@ -10305,72 +10854,76 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to unban ? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + User unbanned. User unbanned. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts89 - If you remove user , you won't be able to create another with the same username!If you remove user , you won't be able to create another with the same username! - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 - Delete Delete - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts104src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts231 - + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts89 + + + If you remove user , you won't be able to create another with the same username! + If you remove user , you won't be able to create another with the same username! + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + + + Delete + Delete + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts104 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts231 + User deleted. User deleted. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts110 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts110 + User email set as verified User email set as verified - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts122 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts122 + Account muted. Account muted. - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts134src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts263 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts134 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts263 + Instance muted. Instance muted. - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts162 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts162 + Account muted by the instance. Account muted by the instance. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts434src/app/shared/shared-moderation/user-moderation-dropdown.component.ts190 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts434 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts190 + Mute server Mute server - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts322 + Server muted by the instance. Server muted by the instance. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts446 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts446 + Add a message to communicate with the reporter Add a message to communicate with the reporter @@ -10386,157 +10939,163 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts204 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts204 + Instance muted by the instance. Instance muted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts218 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts218 + Instance unmuted by the instance. Instance unmuted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts232 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts232 + 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.ts243 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts243 + Delete account comments Delete account comments - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts244 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts244 + 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.ts250 - My account moderationMy account moderation - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts290 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts250 + + + My account moderation + My account moderation + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts290 + Edit user Edit user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339 + Change quota, role, and more. Change quota, role, and more. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts340 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts340 + Delete user Delete user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts344 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts344 + Unban user Unban user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + 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.ts357 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts357 + Mute this account Mute this account - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295src/app/shared/shared-moderation/user-moderation-dropdown.component.ts373 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts373 + 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.ts301src/app/shared/shared-moderation/user-moderation-dropdown.component.ts379 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts379 + 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.ts307src/app/shared/shared-moderation/user-moderation-dropdown.component.ts391 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts391 + 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 + 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.ts374 - + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts374 + 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.ts380 - + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts380 + 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.ts392 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts392 + Unmute the instance by your instance Unmute the instance by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts397 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts397 + 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.ts398 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts398 + Remove comments from your instance Remove comments from your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts408 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts408 + 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.ts409 - Instance moderationInstance moderation - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts418 - Block videosBlock videos + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts409 + + + Instance moderation + Instance moderation + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts418 + + + Block videos + Block videos src/app/shared/shared-moderation/video-block.component.html 4 @@ -10545,91 +11104,92 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Violent or repulsive Violent or repulsive - - src/app/shared/shared-moderation/abuse.service.ts124 + src/app/shared/shared-moderation/abuse.service.ts124 + Contains offensive, violent, or coarse language or iconography. Contains offensive, violent, or coarse language or iconography. - - src/app/shared/shared-moderation/abuse.service.ts125 + src/app/shared/shared-moderation/abuse.service.ts125 + Hateful or abusive Hateful or abusive - - src/app/shared/shared-moderation/abuse.service.ts129 + src/app/shared/shared-moderation/abuse.service.ts129 + Contains abusive, racist or sexist language or iconography. Contains abusive, racist or sexist language or iconography. - - src/app/shared/shared-moderation/abuse.service.ts130 + src/app/shared/shared-moderation/abuse.service.ts130 + Spam, ad or false news Spam, ad or false news - - src/app/shared/shared-moderation/abuse.service.ts134 + src/app/shared/shared-moderation/abuse.service.ts134 + 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.ts136 + src/app/shared/shared-moderation/abuse.service.ts136 + Privacy breach or doxxing Privacy breach or doxxing - - src/app/shared/shared-moderation/abuse.service.ts140 + src/app/shared/shared-moderation/abuse.service.ts140 + 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.ts142 + src/app/shared/shared-moderation/abuse.service.ts142 + 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.ts147 + src/app/shared/shared-moderation/abuse.service.ts147 + Breaks server rules Breaks server rules - - src/app/shared/shared-moderation/abuse.service.ts151 + src/app/shared/shared-moderation/abuse.service.ts151 + 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.ts153 + src/app/shared/shared-moderation/abuse.service.ts153 + The above can only be seen in thumbnails. The above can only be seen in thumbnails. - - src/app/shared/shared-moderation/abuse.service.ts162 + src/app/shared/shared-moderation/abuse.service.ts162 + Captions Captions - - - src/app/+videos/+video-edit/shared/video-edit.component.html166src/app/shared/shared-abuse-list/abuse-details.component.ts26src/app/shared/shared-moderation/abuse.service.ts166 + src/app/+videos/+video-edit/shared/video-edit.component.html166 + src/app/shared/shared-abuse-list/abuse-details.component.ts26 + src/app/shared/shared-moderation/abuse.service.ts166 + 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.ts167 + src/app/shared/shared-moderation/abuse.service.ts167 + Too many attempts, please try again after minutes. Too many attempts, please try again after minutes. - - src/app/core/rest/rest-extractor.service.ts66 + src/app/core/rest/rest-extractor.service.ts66 + Too many attempts, please try again later. Too many attempts, please try again later. - - src/app/core/rest/rest-extractor.service.ts68 + src/app/core/rest/rest-extractor.service.ts68 + Server error. Please retry later. Server error. Please retry later. - - src/app/core/rest/rest-extractor.service.ts71 + src/app/core/rest/rest-extractor.service.ts71 + Subscribed to all current channels of . You will be notified of all their new videos. Subscribed to all current channels of @@ -10687,9 +11247,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderator - - src/app/shared/shared-users/user-admin.service.ts124 - Search videos, playlists, channels…Search videos, playlists, channels… + src/app/shared/shared-users/user-admin.service.ts124 + + + Search videos, playlists, channels… + Search videos, playlists, channels… src/app/header/search-typeahead.component.html 3 @@ -10700,104 +11262,104 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video removed from - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts309src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts97 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts309 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts97 + Video added in at timestamps Video added in at timestamps - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts379 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts379 + Video added in Video added in - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts380 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts380 + Timestamps updated Timestamps updated - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts277src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts116 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts277 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts116 + Starts at Starts at - - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts139src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts142 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts139 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts142 + Stops at Stops at - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts140 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts140 + and stops at and stops at - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts142 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts142 + Delete video Delete video - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts371 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts371 + Actions for the comment Actions for the comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts400 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts400 + Delete comment Delete comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts406 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts406 + 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.ts410 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts410 + Comment deleted. Comment deleted. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts418 + 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 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 @@ -10807,121 +11369,141 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video reported. Video reported. - - src/app/shared/shared-moderation/report-modals/video-report.component.ts94 + src/app/shared/shared-moderation/report-modals/video-report.component.ts94 + 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.ts94src/app/shared/shared-abuse-list/abuse-list-table.component.ts375 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts94 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts375 + Video deleted. Video deleted. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts101src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts101 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts383 + Actions for the reporter Actions for the reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts310 + Mute reporter Mute reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts316 - + src/app/shared/shared-abuse-list/abuse-list-table.component.ts316 + Download Download - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts324src/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.ts324 + src/app/shared/shared-video-miniature/video-download.component.html4 + src/app/shared/shared-video-miniature/video-download.component.html156 + Display live information Display live information - - - src/app/+my-library/my-videos/my-videos.component.ts214src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts330 + src/app/+my-library/my-videos/my-videos.component.ts214 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts330 + Update Update - - - - - - src/app/+manage/video-channel-edit/video-channel-update.component.ts181src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115src/app/+videos/+video-edit/video-add-components/video-go-live.component.html62src/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.html20src/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.ts336 + src/app/+manage/video-channel-edit/video-channel-update.component.ts181 + 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.html62 + 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.html20 + 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.ts336 + Block Block - - src/app/+admin/overview/videos/video-list.component.ts80src/app/shared/shared-moderation/video-block.component.html50src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts348 - Run HLS transcodingRun HLS transcoding - - - src/app/+admin/overview/videos/video-list.component.ts94src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts380 - Run WebTorrent transcodingRun WebTorrent transcoding - - - src/app/+admin/overview/videos/video-list.component.ts100src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts386 - Delete HLS filesDelete HLS files - - - src/app/+admin/overview/videos/video-list.component.ts106src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts392 - Delete WebTorrent filesDelete WebTorrent files - - - src/app/+admin/overview/videos/video-list.component.ts112src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts398 + src/app/+admin/overview/videos/video-list.component.ts80 + src/app/shared/shared-moderation/video-block.component.html50 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts348 + + + Run HLS transcoding + Run HLS transcoding + src/app/+admin/overview/videos/video-list.component.ts94 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts380 + + + Run WebTorrent transcoding + Run WebTorrent transcoding + src/app/+admin/overview/videos/video-list.component.ts100 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts386 + + + Delete HLS files + Delete HLS files + src/app/+admin/overview/videos/video-list.component.ts106 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts392 + + + Delete WebTorrent files + Delete WebTorrent files + src/app/+admin/overview/videos/video-list.component.ts112 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts398 + Save to playlist Save to playlist - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts58src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts316 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts58 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts316 + - 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 + 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 + Mirror Mirror - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts360 - SubtitlesSubtitles + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts360 + + + Subtitles + Subtitles src/app/shared/shared-video-miniature/video-download.component.html 9 - 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 - Actions on commentActions on comment + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + + + Actions on comment + Actions on comment src/app/+videos/+video-watch/shared/comment/video-comment.component.ts 202 - - {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 + + + {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 Mute account - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts292src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts406 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts292 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts406 + Open video actions Open video actions @@ -10933,43 +11515,49 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/shared/shared-video-miniature/video-actions-dropdown.component.html 4 - - Do you really want to unblock ? It will be available again in the videos list.Do you really want to unblock ? It will be available again in the videos list. - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 - Unblock Unblock - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205 + + + Do you really want to unblock ? It will be available again in the videos list. + Do you really want to unblock ? It will be available again in the videos list. + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + + + Unblock + Unblock + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205 + Mute server account Mute server account - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts298 + Report Report - - src/app/+accounts/accounts.component.ts198src/app/shared/shared-abuse-list/abuse-details.component.html55src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts372 + src/app/+accounts/accounts.component.ts198 + src/app/shared/shared-abuse-list/abuse-details.component.html55 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts372 + Reported part Reported part - - src/app/shared/shared-abuse-list/abuse-details.component.html73 + src/app/shared/shared-abuse-list/abuse-details.component.html73 + Note Note - - src/app/shared/shared-abuse-list/abuse-details.component.html80 + 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 + src/app/shared/shared-abuse-list/abuse-details.component.html89 + Comment: Comment: - - src/app/shared/shared-abuse-list/abuse-details.component.html95 + src/app/shared/shared-abuse-list/abuse-details.component.html95 + Messages with the reporter Messages with the reporter @@ -10985,8 +11573,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular No messages for now. - - src/app/shared/shared-abuse-list/abuse-message-modal.component.html27 + src/app/shared/shared-abuse-list/abuse-message-modal.component.html27 + Add a message Add a message @@ -10995,20 +11583,24 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Published Published - - src/app/shared/shared-video-miniature/video-miniature.component.ts170 + src/app/shared/shared-video-miniature/video-miniature.component.ts170 + Publication scheduled on Publication scheduled on - - src/app/shared/shared-video-miniature/video-miniature.component.ts175 - Transcoding failedTranscoding failed + src/app/shared/shared-video-miniature/video-miniature.component.ts175 + + + Transcoding failed + Transcoding failed src/app/shared/shared-video-miniature/video-miniature.component.ts 179 - - Move to external storage failedMove to external storage failed + + + Move to external storage failed + Move to external storage failed src/app/shared/shared-video-miniature/video-miniature.component.ts 183 @@ -11017,33 +11609,53 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Waiting transcoding Waiting transcoding - - src/app/shared/shared-video-miniature/video-miniature.component.ts187 + src/app/shared/shared-video-miniature/video-miniature.component.ts187 + To transcode To transcode - - src/app/shared/shared-video-miniature/video-miniature.component.ts191 + src/app/shared/shared-video-miniature/video-miniature.component.ts191 + To import To import - - src/app/shared/shared-video-miniature/video-miniature.component.ts195 - To editTo edit + src/app/shared/shared-video-miniature/video-miniature.component.ts195 + + + To edit + To edit src/app/shared/shared-video-miniature/video-miniature.component.ts 199 - - 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 - - - - src/app/+admin/overview/videos/video-list.component.html77src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4src/app/+videos/+video-edit/video-add-components/video-go-live.component.html31src/app/+videos/+video-watch/video-watch.component.html73src/app/menu/menu.component.html110src/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-moderation/user-ban-modal.component.html3src/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/+admin/overview/videos/video-list.component.html77 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html31 + src/app/+videos/+video-watch/video-watch.component.html73 + src/app/menu/menu.component.html110 + 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-moderation/user-ban-modal.component.html3 + 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 + Add to watch later Add to watch later @@ -11062,117 +11674,85 @@ 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.ts367 + src/app/shared/shared-main/video/video.service.ts367 + Only shareable via a private link Only shareable via a private link - - src/app/shared/shared-main/video/video.service.ts368 + src/app/shared/shared-main/video/video.service.ts368 + Anyone can see this video Anyone can see this video - - src/app/shared/shared-main/video/video.service.ts369 + src/app/shared/shared-main/video/video.service.ts369 + 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.ts370 + src/app/shared/shared-main/video/video.service.ts370 + viewers viewers - - src/app/shared/shared-main/video/video.model.ts266 + src/app/shared/shared-main/video/video.model.ts266 + views views - - src/app/shared/shared-main/video/video.model.ts269 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + src/app/shared/shared-main/video/video.model.ts269 + Video to import updated. Video to import updated. - - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts138src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts139 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts138 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts139 + 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.ts123 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts123 + 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.ts124 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts124 + 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.ts126 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts126 + Upload Upload - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts233 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts233 + Upload Upload - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts235 - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts235 + Video published. Video published. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts256 - - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts256 + 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.ts85 + src/app/+videos/+video-edit/video-update.component.ts85 + Video updated. Video updated. - - src/app/+video-editor/edit/video-editor-edit.component.ts90src/app/+videos/+video-edit/video-update.component.ts146 - (extensions: )(extensions: ) + src/app/+video-editor/edit/video-editor-edit.component.ts90 + src/app/+videos/+video-edit/video-update.component.ts146 + + + (extensions: ) + (extensions: ) src/app/+video-editor/edit/video-editor-edit.component.ts 104 @@ -11181,44 +11761,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/+video-editor/edit/video-editor-edit.component.ts 108 - - "" will be added at the beggining of the video"" will be added at the beggining of the video + + + "" will be added at the beggining of the video + "" will be added at the beggining of the video src/app/+video-editor/edit/video-editor-edit.component.ts 120 - - "" will be added at the end of the video"" will be added at the end of the video + + + "" will be added at the end of the video + "" will be added at the end of the video src/app/+video-editor/edit/video-editor-edit.component.ts 124 - - "" image watermark will be added to the video"" image watermark will be added to the video + + + "" image watermark will be added to the video + "" image watermark will be added to the video src/app/+video-editor/edit/video-editor-edit.component.ts 128 - - Video will begin at and stop at Video will begin at and stop at + + + Video will begin at and stop at + Video will begin at and stop at src/app/+video-editor/edit/video-editor-edit.component.ts 135 - - Video will begin at Video will begin at + + + Video will begin at + Video will begin at src/app/+video-editor/edit/video-editor-edit.component.ts 139 - - Video will stop at Video will stop at + + + Video will stop at + Video will stop at src/app/+video-editor/edit/video-editor-edit.component.ts 143 - - Edit videoEdit video + + + Edit video + Edit video src/app/+video-editor/video-editor-routing.module.ts 15 @@ -11232,23 +11826,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Stop autoplaying next video Stop autoplaying next video - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts234 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts234 + Autoplay next video Autoplay next video - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts235 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts235 + Stop looping playlist videos Stop looping playlist videos - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts240 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts240 + Loop playlist videos Loop playlist videos - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts241 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts241 + Placeholder image Placeholder image @@ -11258,129 +11852,165 @@ 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.ts301 + 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.ts301 + Redirection Redirection - - src/app/+videos/+video-watch/video-watch.component.ts302 + src/app/+videos/+video-watch/video-watch.component.ts302 + This video contains mature or explicit content. Are you sure you want to watch it? This video contains mature or explicit content. Are you sure you want to watch it? - - src/app/+videos/+video-watch/video-watch.component.ts351 + src/app/+videos/+video-watch/video-watch.component.ts351 + Mature or explicit content Mature or explicit content - - src/app/+videos/+video-watch/video-watch.component.ts352 + src/app/+videos/+video-watch/video-watch.component.ts352 + Up Next Up Next - - src/app/+videos/+video-watch/video-watch.component.ts424 + src/app/+videos/+video-watch/video-watch.component.ts424 + Cancel Cancel - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+admin/follows/following-list/follow-modal.component.html33src/app/+login/login.component.html125src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-video-imports/my-video-imports.component.html31src/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/shared/video-caption-edit-modal/video-caption-edit-modal.component.html26src/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.ts425src/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.html90src/app/shared/shared-moderation/user-ban-modal.component.html34src/app/shared/shared-moderation/video-block.component.html46src/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.html125 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-video-imports/my-video-imports.component.html31 + 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/shared/video-caption-edit-modal/video-caption-edit-modal.component.html26 + 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.ts425 + 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.html90 + src/app/shared/shared-moderation/user-ban-modal.component.html34 + src/app/shared/shared-moderation/video-block.component.html46 + src/app/shared/shared-video-miniature/video-download.component.html152 + Autoplay is suspended Autoplay is suspended - - src/app/+videos/+video-watch/video-watch.component.ts426 - Enter/exit fullscreenEnter/exit fullscreen - - src/app/+videos/+video-watch/video-watch.component.ts716 - Play/Pause the videoPlay/Pause the video - - src/app/+videos/+video-watch/video-watch.component.ts717 - Mute/unmute the videoMute/unmute the video - - src/app/+videos/+video-watch/video-watch.component.ts718 - Skip to a percentage of the video: 0 is 0% and 9 is 90%Skip to a percentage of the video: 0 is 0% and 9 is 90% - - src/app/+videos/+video-watch/video-watch.component.ts720 - Increase the volumeIncrease the volume - - src/app/+videos/+video-watch/video-watch.component.ts722 - Decrease the volumeDecrease the volume - - src/app/+videos/+video-watch/video-watch.component.ts723 - Seek the video forwardSeek the video forward - - src/app/+videos/+video-watch/video-watch.component.ts725 - Seek the video backwardSeek the video backward - - src/app/+videos/+video-watch/video-watch.component.ts726 - Increase playback rateIncrease playback rate - - src/app/+videos/+video-watch/video-watch.component.ts728 - Decrease playback rateDecrease playback rate - - src/app/+videos/+video-watch/video-watch.component.ts729 - Navigate in the video to the previous frameNavigate in the video to the previous frame - - src/app/+videos/+video-watch/video-watch.component.ts731 - Navigate in the video to the next frameNavigate in the video to the next frame - - src/app/+videos/+video-watch/video-watch.component.ts732 - Toggle theater modeToggle theater mode - - src/app/+videos/+video-watch/video-watch.component.ts737 - - - - - - - - - - - + src/app/+videos/+video-watch/video-watch.component.ts426 + + + Enter/exit fullscreen + Enter/exit fullscreen + src/app/+videos/+video-watch/video-watch.component.ts716 + + + Play/Pause the video + Play/Pause the video + src/app/+videos/+video-watch/video-watch.component.ts717 + + + Mute/unmute the video + Mute/unmute the video + src/app/+videos/+video-watch/video-watch.component.ts718 + + + Skip to a percentage of the video: 0 is 0% and 9 is 90% + Skip to a percentage of the video: 0 is 0% and 9 is 90% + src/app/+videos/+video-watch/video-watch.component.ts720 + + + Increase the volume + Increase the volume + src/app/+videos/+video-watch/video-watch.component.ts722 + + + Decrease the volume + Decrease the volume + src/app/+videos/+video-watch/video-watch.component.ts723 + + + Seek the video forward + Seek the video forward + src/app/+videos/+video-watch/video-watch.component.ts725 + + + Seek the video backward + Seek the video backward + src/app/+videos/+video-watch/video-watch.component.ts726 + + + Increase playback rate + Increase playback rate + src/app/+videos/+video-watch/video-watch.component.ts728 + + + Decrease playback rate + Decrease playback rate + src/app/+videos/+video-watch/video-watch.component.ts729 + + + Navigate in the video to the previous frame + Navigate in the video to the previous frame + src/app/+videos/+video-watch/video-watch.component.ts731 + + + Navigate in the video to the next frame + Navigate in the video to the next frame + src/app/+videos/+video-watch/video-watch.component.ts732 + + + Toggle theater mode + Toggle theater mode + src/app/+videos/+video-watch/video-watch.component.ts737 + Like the video 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 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 + 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.ts50 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts50 + 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 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 Subscriptions - - - - src/app/+my-library/my-library.component.ts67src/app/+videos/video-list/video-user-subscriptions.component.ts25src/app/+videos/videos-routing.module.ts56src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts67 + src/app/+videos/video-list/video-user-subscriptions.component.ts25 + src/app/+videos/videos-routing.module.ts56 + src/app/core/menu/menu.service.ts91 + History History - - src/app/+my-library/my-library.component.ts80src/app/core/menu/menu.service.ts97 + src/app/+my-library/my-library.component.ts80 + src/app/core/menu/menu.service.ts97 + Open actions Open actions @@ -11392,28 +12022,40 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos Local videos - - - src/app/+admin/overview/videos/video-admin.service.ts89src/app/+videos/video-list/videos-list-common-page.component.ts189src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 - ExcludeExclude - - src/app/+admin/overview/videos/video-admin.service.ts95 - Exclude muted accountsExclude muted accounts - - src/app/+admin/overview/videos/video-admin.service.ts99 - Exclude public videosExclude public videos + src/app/+admin/overview/videos/video-admin.service.ts89 + 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 + + + Exclude + Exclude + src/app/+admin/overview/videos/video-admin.service.ts95 + + + Exclude muted accounts + Exclude muted accounts + src/app/+admin/overview/videos/video-admin.service.ts99 + + + Exclude public videos + Exclude public videos src/app/+admin/overview/videos/video-admin.service.ts 103 - - Showing to of videosShowing to of videos + + + Showing to of videos + Showing to of videos src/app/+admin/overview/videos/video-list.component.html 11 - - Only videos uploaded on this instance are displayedOnly videos uploaded on this instance are displayed + + + 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 @@ -11422,28 +12064,29 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Discover videos Discover videos - - src/app/+videos/videos-routing.module.ts17src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts17 + 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 - - src/app/app-routing.module.ts101 + src/app/app-routing.module.ts101 + Edit a video Edit a video - - src/app/app-routing.module.ts110 + src/app/app-routing.module.ts110 + diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf index d6588db60..2d4d84299 100644 --- a/client/src/locale/angular.uk-UA.xlf +++ b/client/src/locale/angular.uk-UA.xlf @@ -316,8 +316,8 @@ 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.html 164 @@ -334,16 +334,16 @@ src/app/shared/shared-main/users/user-notifications.component.html189 - 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 - A new version of PeerTube is available: - Нова версія PeerTube доступна: + A new version of PeerTube is available: + Нова версія PeerTube доступна: src/app/shared/shared-main/users/user-notifications.component.html 206,207 @@ -367,13 +367,13 @@ Account muted Обліковий запис вимкнено - - src/app/+admin/overview/videos/video-list.component.html79 + src/app/+admin/overview/videos/video-list.component.html79 + Server muted Сервер вимкнено - - src/app/+admin/overview/videos/video-list.component.html80 + src/app/+admin/overview/videos/video-list.component.html80 + Save to Зберегти в @@ -434,9 +434,8 @@ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71 - Short text to tell people how they can support the channel (membership platform...).<br /><br /> - When a video is uploaded in this channel, the video support field will be automatically filled by this text. - Короткий опис способів підтримки каналу (платформа участі...).<br /><br /> Коли відео вивантажується у цей канал, поле підтримки відео буде автоматично заповнено цим текстом. + Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text. + Короткий опис способів підтримки каналу (платформа участі...).<br /><br /> Коли відео вивантажується у цей канал, поле підтримки відео буде автоматично заповнено цим текстом. src/app/+manage/video-channel-edit/video-channel-edit.component.html 67,68 @@ -510,9 +509,11 @@ Reason... Причина... - - src/app/shared/shared-moderation/user-ban-modal.component.html16 - Mute to also hide videos/commentsMute to also hide videos/comments + src/app/shared/shared-moderation/user-ban-modal.component.html16 + + + Mute to also hide videos/comments + Mute to also hide videos/comments src/app/shared/shared-moderation/user-ban-modal.component.html 27 @@ -592,9 +593,9 @@ Blocked Заблоковано - - - src/app/+admin/overview/videos/video-list.component.html82src/app/shared/shared-video-miniature/video-miniature.component.html59 + src/app/+admin/overview/videos/video-list.component.html82 + src/app/shared/shared-video-miniature/video-miniature.component.html59 + Are you sure you want to delete these videos? Ви справді хочете видалити ці відео? @@ -651,8 +652,8 @@ Sensitive Чутливе - - src/app/shared/shared-video-miniature/video-miniature.component.html63 + src/app/shared/shared-video-miniature/video-miniature.component.html63 + @@ -712,15 +713,16 @@ Edit Редагувати - - - - - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html11src/app/+admin/overview/users/user-edit/user-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.html189src/app/+videos/+video-edit/shared/video-edit.component.html310src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + src/app/+admin/overview/users/user-edit/user-edit.component.html11 + src/app/+admin/overview/users/user-edit/user-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.html189 + src/app/+videos/+video-edit/shared/video-edit.component.html310 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + Truncated preview Вкорочений вигляд @@ -732,8 +734,8 @@ src/app/shared/shared-forms/markdown-textarea.component.html20 - <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: - <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a>-сумісний, що підтримує: + <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports: + <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a>-сумісний, що підтримує: src/app/shared/shared-main/misc/help.component.ts75 @@ -767,33 +769,33 @@ The live stream will be automatically terminated. Пряму трансляцію буде автоматично припинено. - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts228 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts228 + will be duplicated by your instance. продублюються на вашому сервері. - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts249 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts249 + Do you really want to remove "" files? Ви справді хочете вилучити файли «»? - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + Remove "" files Вилучити файли «» - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts274 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts274 + Removed files of . Вилучено файли з . - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts280 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts280 + Transcoding jobs created for . Завдання перекодування створено для . - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts292 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts292 + Using a syndication feed За допомогою новинної стрічки @@ -883,11 +885,11 @@ Video quota Квота відео - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html151src/app/+admin/overview/users/user-edit/user-edit.component.html151src/app/+admin/overview/users/user-list/user-list.component.ts128src/app/shared/shared-instance/instance-features-table.component.html47 + src/app/+admin/overview/users/user-edit/user-edit.component.html151 + src/app/+admin/overview/users/user-edit/user-edit.component.html151 + src/app/+admin/overview/users/user-list/user-list.component.ts128 + src/app/shared/shared-instance/instance-features-table.component.html47 + Unlimited ( per day) Без обмежень ( на день) @@ -929,8 +931,10 @@ Loading instance statistics... Завантаження статистики сервера... src/app/shared/shared-instance/instance-statistics.component.html1 - - By users on this instanceBy users on this instance + + + By users on this instance + By users on this instance src/app/shared/shared-instance/instance-statistics.component.html 4 @@ -939,9 +943,8 @@ Local Локальний - - - src/app/shared/shared-video-miniature/video-filters.model.ts126 + src/app/shared/shared-video-miniature/video-filters.model.ts126 + users користувачі @@ -952,14 +955,18 @@ відео src/app/shared/shared-instance/instance-statistics.component.html21 src/app/shared/shared-instance/instance-statistics.component.html65 - - viewsviews + + + views + views src/app/shared/shared-instance/instance-statistics.component.html 31 - - commentscomments + + + comments + comments src/app/shared/shared-instance/instance-statistics.component.html 41 @@ -968,36 +975,37 @@ src/app/shared/shared-instance/instance-statistics.component.html 75 - - hosted videohosted video + + + hosted video + hosted video src/app/shared/shared-instance/instance-statistics.component.html 51 - - In this instance federationIn this instance federation + + + In this instance federation + In this instance federation src/app/shared/shared-instance/instance-statistics.component.html 58 - - - Following Підписки - - - - src/app/+admin/admin.component.ts75src/app/+admin/follows/following-list/following-list.component.html31src/app/+admin/follows/follows.routes.ts26 + src/app/+admin/admin.component.ts75 + src/app/+admin/follows/following-list/following-list.component.html31 + src/app/+admin/follows/follows.routes.ts26 + Followers Підписники - - - - src/app/+admin/admin.component.ts80src/app/+admin/follows/follows.routes.ts35src/app/+my-library/my-library.component.ts72 + src/app/+admin/admin.component.ts80 + src/app/+admin/follows/follows.routes.ts35 + src/app/+my-library/my-library.component.ts72 + followers підписники @@ -1038,10 +1046,8 @@ Заблокований користувач більше не зможе входити в систему. - - src/app/shared/shared-moderation/user-ban-modal.component.html9 - - + src/app/shared/shared-moderation/user-ban-modal.component.html9 + Block video "" Заблокуват відео «» @@ -1138,13 +1144,13 @@ 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. - Цей сервер дозволяє реєстрацію. Однак будьте обережні, перевірте УмовиУмови перед створенням облікового запису. Ви також можете знайти інший сервер, який точно задовольняє ваш потреби, на: 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 - 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. - Наразі цей сервер не дозволяє реєстрацію користувачів, перевірте Умови для отримання додаткової інформації, або знайдіть екземпляр який дасть вам змогу зареєструвати обліковий запис та вивантажувати свої відео. Знайдіть свій серед багатьох серверів на: 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. + Наразі цей сервер не дозволяє реєстрацію користувачів, перевірте Умови для отримання додаткової інформації, або знайдіть екземпляр який дасть вам змогу зареєструвати обліковий запис та вивантажувати свої відео. Знайдіть свій серед багатьох серверів на: https://joinpeertube.org/instances. src/app/+login/login.component.html69 @@ -1212,23 +1218,22 @@ src/app/+login/login.component.html110 - 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. Лист з настановами щодо скидання пароля буде надіслано на . Посилання буде дійсне впродовж 1 години. src/app/+login/login.component.ts122 Email Email - - - - - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html105src/app/+admin/overview/users/user-edit/user-edit.component.html105src/app/+admin/overview/users/user-list/user-list.component.ts127src/app/+login/login.component.html115src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html6src/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/overview/users/user-edit/user-edit.component.html105 + src/app/+admin/overview/users/user-edit/user-edit.component.html105 + src/app/+admin/overview/users/user-list/user-list.component.ts127 + src/app/+login/login.component.html115 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html6 + 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 Адреса електронної пошти @@ -1252,8 +1257,8 @@ The link will expire within 1 hour. src/app/+search/search.component.html8 - for - для + for + для src/app/+search/search.component.html 10 @@ -1595,8 +1600,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html269 - ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server - ⚠️ Якщо увімкнено, радимо використовувати HTTP-проксі, щоб запобігти доступу до приватної URL-адреси з вашого сервера PeerTube + ⚠️ If enabled, we recommend to use a HTTP proxy to prevent private URL access from your PeerTube server + ⚠️ Якщо увімкнено, радимо використовувати HTTP-проксі, щоб запобігти доступу до приватної URL-адреси з вашого сервера PeerTube src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 272 @@ -1660,18 +1665,18 @@ The link will expire within 1 hour. 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 @@ -2023,20 +2028,26 @@ The link will expire within 1 hour. Add this caption Додати цей підпис src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html42 - - Edit captionEdit caption + + + Edit caption + Edit caption src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html 5 - - CaptionCaption + + + Caption + Caption src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html 10 - - Edit this captionEdit this caption + + + Edit this caption + Edit this caption src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html 31 @@ -2106,8 +2117,8 @@ The link will expire within 1 hour. src/app/shared/shared-actor-image/actor-avatar.component.ts47 - Markdown compatible that also supports custom PeerTube HTML tags - Сумісність із Markdown також підтримує власні HTML-теґи PeerTube + Markdown compatible that also supports custom PeerTube HTML tags + Сумісність із Markdown також підтримує власні HTML-теґи PeerTube src/app/shared/shared-custom-markup/custom-markup-help.component.html 2 @@ -2153,12 +2164,12 @@ The link will expire within 1 hour. Advanced filters Розширені фільтри - - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts30src/app/+admin/overview/comments/video-comment-list.component.ts47src/app/+admin/overview/users/user-list/user-list.component.ts41src/app/+my-library/my-videos/my-videos.component.ts92src/app/shared/shared-abuse-list/abuse-list-table.component.ts39 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts30 + src/app/+admin/overview/comments/video-comment-list.component.ts47 + src/app/+admin/overview/users/user-list/user-list.component.ts41 + src/app/+my-library/my-videos/my-videos.component.ts92 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts39 + No items found Елементів не знайдено @@ -2182,8 +2193,8 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/shared/video-edit.component.html48 - Choose the appropriate licence for your work. - Оберіть відповідну ліцензію для своєї роботи. + Choose the appropriate licence for your work. + Оберіть відповідну ліцензію для своєї роботи. src/app/+videos/+video-edit/shared/video-edit.component.html85 @@ -2259,27 +2270,31 @@ The link will expire within 1 hour. src/app/+videos/+video-edit/shared/video-edit.component.html183 - Already uploaded ✔ + Already uploaded ✔ Вже вивантажено ✔ src/app/+videos/+video-edit/shared/video-edit.component.html187 Will be created on update Буде створено після оновлення - - src/app/+videos/+video-edit/shared/video-edit.component.html196 + src/app/+videos/+video-edit/shared/video-edit.component.html196 + Cancel create Скасувати створення - - src/app/+videos/+video-edit/shared/video-edit.component.html198 - Will be edited on updateWill be edited on update + src/app/+videos/+video-edit/shared/video-edit.component.html198 + + + Will be edited on update + Will be edited on update src/app/+videos/+video-edit/shared/video-edit.component.html 204 - - Cancel editionCancel edition + + + Cancel edition + Cancel edition src/app/+videos/+video-edit/shared/video-edit.component.html 206 @@ -2288,44 +2303,44 @@ The link will expire within 1 hour. Will be deleted on update Буде видалено після оновлення - - src/app/+videos/+video-edit/shared/video-edit.component.html212 + src/app/+videos/+video-edit/shared/video-edit.component.html212 + Cancel deletion Скасувати видалення - - src/app/+videos/+video-edit/shared/video-edit.component.html214 + src/app/+videos/+video-edit/shared/video-edit.component.html214 + No captions for now. Підписів поки немає. - - src/app/+videos/+video-edit/shared/video-edit.component.html226 + src/app/+videos/+video-edit/shared/video-edit.component.html226 + Live settings Налаштування трансляції - - src/app/+videos/+video-edit/shared/video-edit.component.html235 + src/app/+videos/+video-edit/shared/video-edit.component.html235 + ⚠️ If you enable this option, your live will be terminated if you exceed your video quota ⚠️ Якщо ви увімкнете цю опцію, ваша трансляція буде припинена після перевищення відео квоти - - src/app/+videos/+video-edit/shared/video-edit.component.html288 + src/app/+videos/+video-edit/shared/video-edit.component.html288 + Automatically publish a replay when your live ends Автоматично публікувати повтор після завершення трансляції - - src/app/+videos/+video-edit/shared/video-edit.component.html284 + src/app/+videos/+video-edit/shared/video-edit.component.html284 + Video preview Попередній перегляд відео - - src/app/+videos/+video-edit/shared/video-edit.component.html307 + src/app/+videos/+video-edit/shared/video-edit.component.html307 + Support Підтримка - - - src/app/+video-channels/video-channels.component.html17src/app/+videos/+video-edit/shared/video-edit.component.html316 + src/app/+video-channels/video-channels.component.html17 + src/app/+videos/+video-edit/shared/video-edit.component.html316 + View account Переглянути обліковий запис @@ -2359,44 +2374,44 @@ The link will expire within 1 hour. Short text to tell people how they can support you (membership platform...). Короткий текст, щоб розповісти людям, як вони можуть вас підтримати (платформа участі...). - - src/app/+videos/+video-edit/shared/video-edit.component.html319 + src/app/+videos/+video-edit/shared/video-edit.component.html319 + Original publication date Дата публікації - - src/app/+videos/+video-edit/shared/video-edit.component.html336 + src/app/+videos/+video-edit/shared/video-edit.component.html336 + This is the date when the content was originally published (e.g. the release date for a film) Дата першої публікації вмісту (наприклад, дата виходу фільму) - - src/app/+videos/+video-edit/shared/video-edit.component.html339 + src/app/+videos/+video-edit/shared/video-edit.component.html339 + Plugin settings Налаштування плагінів - - src/app/+videos/+video-edit/shared/video-edit.component.html370 + src/app/+videos/+video-edit/shared/video-edit.component.html370 + Other Інше - - - src/app/+videos/+video-edit/shared/video-edit.component.ts190src/app/shared/shared-forms/select/select-languages.component.ts50 + src/app/+videos/+video-edit/shared/video-edit.component.ts190 + src/app/shared/shared-forms/select/select-languages.component.ts50 + Enable video comments Увімкнути коментарі до відео - - src/app/+videos/+video-edit/shared/video-edit.component.html357 + src/app/+videos/+video-edit/shared/video-edit.component.html357 + Enable download Дозволити завантаження - - src/app/+videos/+video-edit/shared/video-edit.component.html362 + src/app/+videos/+video-edit/shared/video-edit.component.html362 + Advanced settings Розширені налаштування - - src/app/+videos/+video-edit/shared/video-edit.component.html300 + src/app/+videos/+video-edit/shared/video-edit.component.html300 + URL URL-адреса @@ -2431,13 +2446,13 @@ The link will expire within 1 hour. Scheduled Заплановано - - src/app/+videos/+video-edit/shared/video-edit.component.ts209 + src/app/+videos/+video-edit/shared/video-edit.component.ts209 + Hide the video until a specific date Сховати відео до певної дати - - src/app/+videos/+video-edit/shared/video-edit.component.ts210 + src/app/+videos/+video-edit/shared/video-edit.component.ts210 + Normal live Звичайні трансляції @@ -2483,9 +2498,9 @@ The link will expire within 1 hour. Total video quota Загальна квота відео - - - src/app/+admin/overview/users/user-list/user-list.component.html131src/app/shared/shared-main/users/user-quota.component.html3 + src/app/+admin/overview/users/user-list/user-list.component.html131 + src/app/shared/shared-main/users/user-quota.component.html3 + Congratulations! Your video is now available in your private library. Вітаємо! Ваше відео тепер доступне у вашій приватній бібліотеці. @@ -2785,9 +2800,10 @@ The link will expire within 1 hour. Muted Вимкнено - - - src/app/+admin/overview/users/user-list/user-list.component.html104src/app/shared/shared-moderation/account-block-badges.component.html1src/app/shared/shared-share-modal/video-share.component.html192 + src/app/+admin/overview/users/user-list/user-list.component.html104 + src/app/shared/shared-moderation/account-block-badges.component.html1 + src/app/shared/shared-share-modal/video-share.component.html192 + Loop Повторювати @@ -2834,13 +2850,13 @@ The link will expire within 1 hour. This video is blocked. Це відео заблоковано. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html38 + src/app/+videos/+video-watch/shared/information/video-alert.component.html38 + Published Опубліковано - - src/app/+videos/+video-watch/video-watch.component.html27 + src/app/+videos/+video-watch/video-watch.component.html27 + SUPPORT ПІДТРИМКА @@ -2874,13 +2890,13 @@ The link will expire within 1 hour. Support options for this video Опції підтримки цього відео - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + By Від - - src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+videos/+video-watch/video-watch.component.html67 + Subscribe Підписатись @@ -2952,9 +2968,9 @@ The link will expire within 1 hour. NSFW NSFW - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html56src/app/+admin/overview/videos/video-list.component.html75 + src/app/+admin/moderation/video-block-list/video-block-list.component.html56 + src/app/+admin/overview/videos/video-list.component.html75 + Get more information Докладніше @@ -2990,9 +3006,10 @@ The link will expire within 1 hour. The video is being transcoded, it may not work properly. Відео перекодовано, воно може не працювати належним чином. src/app/+videos/+video-watch/shared/information/video-alert.component.html13 - - The video is being edited, it may not work properly. - The video is being edited, it may not work properly. + + + The video is being edited, it may not work properly. + The video is being edited, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html @@ -3002,23 +3019,23 @@ The link will expire within 1 hour. The video is being moved to an external server, it may not work properly. Відео переміщено на зовнішній сервер, воно може не працювати належним чином. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html21 + src/app/+videos/+video-watch/shared/information/video-alert.component.html21 + This video will be published on . Це відео оприлюднено . - - src/app/+videos/+video-watch/shared/information/video-alert.component.html25 + src/app/+videos/+video-watch/shared/information/video-alert.component.html25 + This live has not started yet. Цю трансляцію ще не розпочато. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html29 + src/app/+videos/+video-watch/shared/information/video-alert.component.html29 + This live has ended. Цю трансляцію завершено. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html33 + src/app/+videos/+video-watch/shared/information/video-alert.component.html33 + SORT BY СОРТУВАТИ ЗА @@ -3175,8 +3192,8 @@ The link will expire within 1 hour. Video redundancies Video redundancies - - src/app/+admin/admin.component.ts85 + src/app/+admin/admin.component.ts85 + 1 host (without "http://") per line 1 хост (без «http://») на рядок @@ -3395,12 +3412,12 @@ The link will expire within 1 hour. Username Ім'я користувача - - - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html83src/app/+admin/overview/users/user-edit/user-edit.component.html83src/app/+admin/overview/users/user-list/user-list.component.ts125src/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/overview/users/user-edit/user-edit.component.html83 + src/app/+admin/overview/users/user-edit/user-edit.component.html83 + src/app/+admin/overview/users/user-list/user-list.component.ts125 + 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 @@ -3428,17 +3445,17 @@ The link will expire within 1 hour. Role Роль - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html136src/app/+admin/overview/users/user-edit/user-edit.component.html136src/app/+admin/overview/users/user-list/user-list.component.ts126 + src/app/+admin/overview/users/user-edit/user-edit.component.html136 + src/app/+admin/overview/users/user-edit/user-edit.component.html136 + src/app/+admin/overview/users/user-list/user-list.component.ts126 + Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . Transcoding is enabled. The video quota only takes into account - original - video size. - + original + video size. + At most, this user could upload ~ . @@ -3456,10 +3473,10 @@ The link will expire within 1 hour. Auth plugin Плагін автентифікації - - - - src/app/+admin/overview/users/user-edit/user-edit.component.html188src/app/+admin/overview/users/user-edit/user-edit.component.html188src/app/+admin/overview/users/user-list/user-list.component.ts135 + src/app/+admin/overview/users/user-edit/user-edit.component.html188 + src/app/+admin/overview/users/user-edit/user-edit.component.html188 + src/app/+admin/overview/users/user-list/user-list.component.ts135 + None (local authentication) Немає (локальна автентифікація) @@ -3508,25 +3525,25 @@ The link will expire within 1 hour. Batch actions Batch actions - - - - src/app/+admin/overview/comments/video-comment-list.component.html22src/app/+admin/overview/users/user-list/user-list.component.html18src/app/+admin/overview/videos/video-list.component.html18 + src/app/+admin/overview/comments/video-comment-list.component.html22 + src/app/+admin/overview/users/user-list/user-list.component.html18 + src/app/+admin/overview/videos/video-list.component.html18 + The user was banned Користувача було заблоковано - - src/app/+admin/overview/users/user-list/user-list.component.html109 + src/app/+admin/overview/users/user-list/user-list.component.html109 + Open account in a new tab Відкрити обліковий запис у новій вкладці - - - - - - - src/app/+admin/overview/comments/video-comment-list.component.html69src/app/+admin/overview/users/user-list/user-list.component.html94src/app/+my-library/my-ownership/my-ownership.component.html38src/app/shared/shared-abuse-list/abuse-list-table.component.html44src/app/shared/shared-moderation/account-blocklist.component.html34src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/+admin/overview/comments/video-comment-list.component.html69 + src/app/+admin/overview/users/user-list/user-list.component.html94 + src/app/+my-library/my-ownership/my-ownership.component.html38 + src/app/shared/shared-abuse-list/abuse-list-table.component.html44 + src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/shared/shared-moderation/account-blocklist.component.html34 + Deleted account Видалений обліковий запис @@ -3535,28 +3552,28 @@ The link will expire within 1 hour. User's email must be verified to login Для входу необхідно підтвердити користувацьку електронну пошту - - src/app/+admin/overview/users/user-list/user-list.component.html120 + src/app/+admin/overview/users/user-list/user-list.component.html120 + User's email is verified / User can login without email verification User's email is verified / User can login without email verification - - src/app/+admin/overview/users/user-list/user-list.component.html124 + src/app/+admin/overview/users/user-list/user-list.component.html124 + Total daily video quota Загальна денна квота відео - - src/app/+admin/overview/users/user-list/user-list.component.html141 + src/app/+admin/overview/users/user-list/user-list.component.html141 + Ban reason: Причина блокування: - - src/app/+admin/overview/users/user-list/user-list.component.html163 + src/app/+admin/overview/users/user-list/user-list.component.html163 + Banned users Заблоковані користувачі - - src/app/+admin/overview/users/user-list/user-list.component.ts45 + src/app/+admin/overview/users/user-list/user-list.component.ts45 + Showing to of users Показано до з користувачів @@ -3565,26 +3582,26 @@ The link will expire within 1 hour. Moderation Модерація - - - - src/app/+admin/admin.component.ts95src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts70src/app/+my-account/my-account.component.ts28 + src/app/+admin/admin.component.ts95 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts70 + src/app/+my-account/my-account.component.ts28 + Video blocks Заблоковані відео - - - src/app/+admin/admin.component.ts109src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + src/app/+admin/admin.component.ts109 + src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + Muted accounts Вимкнені облікові записи - - - - - - - src/app/+admin/admin.component.ts117src/app/+admin/moderation/moderation.routes.ts90src/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.ts117 + src/app/+admin/moderation/moderation.routes.ts90 + 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 Вимкнені сервери @@ -3662,30 +3679,30 @@ The link will expire within 1 hour. Date Дата - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html29src/app/+admin/overview/comments/video-comment-list.component.html46 + src/app/+admin/moderation/video-block-list/video-block-list.component.html29 + src/app/+admin/overview/comments/video-comment-list.component.html46 + Select this row Вибрати цей рядок - - - - src/app/+admin/overview/comments/video-comment-list.component.html54src/app/+admin/overview/users/user-list/user-list.component.html79src/app/+admin/overview/videos/video-list.component.html51 + src/app/+admin/overview/comments/video-comment-list.component.html54 + src/app/+admin/overview/users/user-list/user-list.component.html79 + src/app/+admin/overview/videos/video-list.component.html51 + See full comment Переглянути увесь коментар - - src/app/+admin/overview/comments/video-comment-list.component.html58 + src/app/+admin/overview/comments/video-comment-list.component.html58 + Actions Дії - - - - - - src/app/+admin/follows/followers-list/followers-list.component.html23src/app/+admin/moderation/video-block-list/video-block-list.component.html43src/app/+admin/overview/comments/video-comment-list.component.html64src/app/+my-library/my-ownership/my-ownership.component.html18src/app/shared/shared-abuse-list/abuse-list-table.component.html39 + src/app/+admin/follows/followers-list/followers-list.component.html23 + src/app/+admin/moderation/video-block-list/video-block-list.component.html43 + src/app/+admin/overview/comments/video-comment-list.component.html64 + src/app/+my-library/my-ownership/my-ownership.component.html18 + src/app/shared/shared-abuse-list/abuse-list-table.component.html39 + Follower Підписник @@ -3697,28 +3714,28 @@ The link will expire within 1 hour. Commented video Коментоване відео - - src/app/+admin/overview/comments/video-comment-list.component.html81 + src/app/+admin/overview/comments/video-comment-list.component.html81 + No comments found matching current filters. No comments found matching current filters. - - src/app/+admin/overview/comments/video-comment-list.component.html106 + src/app/+admin/overview/comments/video-comment-list.component.html106 + No comments found. Немає коментарів. - - src/app/+admin/overview/comments/video-comment-list.component.html107 + src/app/+admin/overview/comments/video-comment-list.component.html107 + Local comments Локальні коментарі - - src/app/+admin/overview/comments/video-comment-list.component.ts51 + src/app/+admin/overview/comments/video-comment-list.component.ts51 + Remote comments Віддалені коментарі - - src/app/+admin/overview/comments/video-comment-list.component.ts55 + src/app/+admin/overview/comments/video-comment-list.component.ts55 + No abuses found matching current filters. No abuses found matching current filters. @@ -3787,11 +3804,11 @@ The link will expire within 1 hour. Reports Звіти - - - - - src/app/+admin/admin.component.ts101src/app/+admin/moderation/abuse-list/abuse-list.component.html3src/app/+admin/moderation/moderation.routes.ts34src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + src/app/+admin/admin.component.ts101 + src/app/+admin/moderation/abuse-list/abuse-list.component.html3 + src/app/+admin/moderation/moderation.routes.ts34 + src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + Moderation comment Коментар модератора @@ -3816,18 +3833,18 @@ The link will expire within 1 hour. Video Відео - - - - - - src/app/+admin/overview/comments/video-comment-list.component.html44src/app/+admin/overview/videos/video-list.component.html40src/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/overview/comments/video-comment-list.component.html44 + src/app/+admin/overview/videos/video-list.component.html40 + 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 Коментар - - - src/app/+admin/overview/comments/video-comment-list.component.html45src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/overview/comments/video-comment-list.component.html45 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + This video has been reported multiple times. На це відео поскаржилися кілька разів.. @@ -3891,8 +3908,8 @@ The link will expire within 1 hour. src/app/shared/shared-abuse-list/abuse-details.component.html28 - - + + src/app/shared/shared-abuse-list/abuse-details.component.html21 src/app/shared/shared-abuse-list/abuse-details.component.html41 @@ -3971,10 +3988,10 @@ The link will expire within 1 hour. Account Обліковий запис - - - - src/app/+admin/overview/comments/video-comment-list.component.html43src/app/shared/shared-moderation/account-blocklist.component.html23src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/+admin/overview/comments/video-comment-list.component.html43 + src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/shared/shared-moderation/account-blocklist.component.html23 + No account found matching current filters. No account found matching current filters. @@ -4162,34 +4179,36 @@ The link will expire within 1 hour. Delete this comment Видалити цей коментар - - src/app/+admin/overview/comments/video-comment-list.component.ts80 + src/app/+admin/overview/comments/video-comment-list.component.ts80 + Delete all comments of this account Видалити всі коментарі цього облікового запису - - src/app/+admin/overview/comments/video-comment-list.component.ts86 + src/app/+admin/overview/comments/video-comment-list.component.ts86 + Comments are deleted after a few minutes Коментарі видаляються за кілька хвилин - - src/app/+admin/overview/comments/video-comment-list.component.ts87 + src/app/+admin/overview/comments/video-comment-list.component.ts87 + comments deleted. коментарів видалено. - - src/app/+admin/overview/comments/video-comment-list.component.ts148 + src/app/+admin/overview/comments/video-comment-list.component.ts148 + Do you really want to delete all comments of ? Ви справді хочете видалити всі коментарі ? - - src/app/+admin/overview/comments/video-comment-list.component.ts168 + src/app/+admin/overview/comments/video-comment-list.component.ts168 + Comments of will be deleted in a few minutes Коментарі буде видалено за кілька хвилин - - src/app/+admin/overview/comments/video-comment-list.component.ts180 - Comments listComments list + src/app/+admin/overview/comments/video-comment-list.component.ts180 + + + Comments list + Comments list src/app/+admin/overview/comments/video-comment.routes.ts 24 @@ -4198,27 +4217,25 @@ The link will expire within 1 hour. Video comments Коментарі до відео - - - - src/app/+admin/overview/comments/video-comment-list.component.html3 + src/app/+admin/overview/comments/video-comment-list.component.html3 + This view also shows comments from muted accounts. This view also shows comments from muted accounts. - - src/app/+admin/overview/comments/video-comment-list.component.html8 + src/app/+admin/overview/comments/video-comment-list.component.html8 + Showing to of comments Показано до з коментарів - - src/app/+admin/overview/comments/video-comment-list.component.html15 + src/app/+admin/overview/comments/video-comment-list.component.html15 + Select all rows Вибрати всі рядки - - - - src/app/+admin/overview/comments/video-comment-list.component.html39src/app/+admin/overview/users/user-list/user-list.component.html39src/app/+admin/overview/videos/video-list.component.html36 + src/app/+admin/overview/comments/video-comment-list.component.html39 + src/app/+admin/overview/users/user-list/user-list.component.html39 + src/app/+admin/overview/videos/video-list.component.html36 + Job type Тип завдання @@ -4249,8 +4266,8 @@ The link will expire within 1 hour. src/app/+admin/system/jobs/jobs.component.html46 - Priority (1 = highest priority) - Важливість (1 = найважливіше) + Priority (1 = highest priority) + Важливість (1 = найважливіше) src/app/+admin/system/jobs/jobs.component.html 47 @@ -4270,8 +4287,8 @@ The link will expire within 1 hour. src/app/+admin/system/jobs/jobs.component.html105 - No jobs found. - Не знайдено завдань. + No jobs found. + Не знайдено завдань. src/app/+admin/system/jobs/jobs.component.html106 @@ -4287,10 +4304,11 @@ The link will expire within 1 hour. Refresh Оновити - - - - src/app/+admin/overview/comments/video-comment-list.component.html31src/app/+admin/overview/videos/video-list.component.html27src/app/+admin/system/jobs/jobs.component.html30src/app/+admin/system/logs/logs.component.html33 + src/app/+admin/overview/comments/video-comment-list.component.html31 + src/app/+admin/overview/videos/video-list.component.html27 + src/app/+admin/system/jobs/jobs.component.html30 + src/app/+admin/system/logs/logs.component.html33 + now зараз @@ -4318,8 +4336,8 @@ The link will expire within 1 hour. - By -> - Від -> + By -> + Від -> src/app/+admin/system/logs/logs.component.html47 @@ -4391,8 +4409,8 @@ The link will expire within 1 hour. 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. + 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.html83 @@ -4401,8 +4419,8 @@ The link will expire within 1 hour. 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. + 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.html97 @@ -4521,8 +4539,8 @@ The link will expire within 1 hour. 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. + 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.html5 @@ -4628,8 +4646,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html150 - Manage users to set their quota individually. - Manage users to set their quota individually. + 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.html151 @@ -4674,8 +4692,10 @@ The link will expire within 1 hour. src/app/+admin/overview/users/user-edit/user-edit.component.html4 src/app/+admin/overview/users/user-edit/user-edit.component.html4 src/app/+admin/overview/users/user-list/user-list.component.html3 - - CommentsComments + + + Comments + Comments src/app/+admin/admin.component.ts 57 @@ -4818,8 +4838,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html376 - 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. + 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.html378 @@ -4853,8 +4873,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html426 - Manage relations with other instances. - Manage relations with other instances. + Manage relations with other instances. + Manage relations with other instances. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html427 @@ -4890,8 +4910,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 - See the documentation for more information about the expected URL - See the documentation for more information about the expected URL + 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.html478 @@ -4940,8 +4960,8 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html559 - 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. + 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.html563 @@ -4979,13 +4999,13 @@ The link will expire within 1 hour. src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html33 - 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.html40 - Max simultaneous lives created per user (-1 for "unlimited") - Max simultaneous lives created per user (-1 for "unlimited") + 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.html53 @@ -5129,8 +5149,8 @@ The link will expire within 1 hour. 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 + 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 @@ -5192,26 +5212,34 @@ The link will expire within 1 hour. 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 - - VIDEO EDITORVIDEO EDITOR + + + VIDEO EDITOR + VIDEO EDITOR src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 198 - - Allows your users to edit their video (cut, add intro/outro, add a watermark etc) Allows your users to edit their video (cut, add intro/outro, add a watermark etc) + + + Allows your users to edit their video (cut, add intro/outro, add a watermark etc) + Allows your users to edit their video (cut, add intro/outro, add a watermark etc) src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 199,201 - - Enable video editorEnable video editor + + + Enable video editor + Enable video editor src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 210 - - ⚠️ You need to enable transcoding first to enable video editor⚠️ You need to enable transcoding first to enable video editor + + + ⚠️ You need to enable transcoding first to enable video editor + ⚠️ You need to enable transcoding first to enable video editor src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 213 @@ -5285,25 +5313,19 @@ The link will expire within 1 hour. 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'); + 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.html77 - Write CSS code directly. Example:#custom-css -color: red; - - 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 color: red; + 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.html96 @@ -5320,8 +5342,8 @@ color: red; - There are errors in the form: - There are errors in the form: + There are errors in the form: + There are errors in the form: src/app/+admin/config/edit-custom-config/edit-custom-config.component.html71 @@ -5397,8 +5419,8 @@ color: red; 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.html2 @@ -5418,40 +5440,40 @@ color: red; - 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 "Recent Views" - Sort by "Recent Views" + Sort by "Recent Views" + Sort by "Recent 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 @@ -5567,8 +5589,8 @@ color: red; 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/+admin/config/edit-custom-config/edit-instance-information.component.html110 src/app/shared/shared-user-settings/user-video-settings.component.html7 @@ -5688,9 +5710,9 @@ color: red; Account page Сторінка облікового запису - - - src/app/+videos/+video-watch/video-watch.component.html66src/app/+videos/+video-watch/video-watch.component.html72 + src/app/+videos/+video-watch/video-watch.component.html66 + src/app/+videos/+video-watch/video-watch.component.html72 + No ownership change request found. Запит на зміну власника не знайдено. @@ -5788,10 +5810,10 @@ color: red; Channel page Сторінка каналу - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html25src/app/+my-library/my-follows/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html63 + src/app/+my-library/+my-video-channels/my-video-channels.component.html25 + src/app/+my-library/my-follows/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html63 + Created by Створено @@ -5828,8 +5850,8 @@ 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. + 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 @@ -5938,8 +5960,8 @@ color: red; src/app/+signup/shared/signup-success.component.html13 - 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.html17 @@ -6013,8 +6035,9 @@ color: red; Banned Заблоковано - - src/app/+accounts/accounts.component.html21src/app/+admin/overview/users/user-list/user-list.component.html105 + src/app/+accounts/accounts.component.html21 + src/app/+admin/overview/users/user-list/user-list.component.html105 + Instance muted Сервер вимкнено @@ -6070,36 +6093,36 @@ color: red; {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} {VAR_PLURAL, plural, =1 {1 підписник} few { підписники} many { підписників} other { підписника}} - - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html36src/app/+my-library/+my-video-channels/my-video-channels.component.html34src/app/+video-channels/video-channels.component.html75src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html36 + src/app/+my-library/+my-video-channels/my-video-channels.component.html34 + src/app/+video-channels/video-channels.component.html75 + 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 відео} other { відео}} - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html29src/app/+accounts/accounts.component.html39src/app/+video-channels/video-channels.component.html78src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/+accounts/account-video-channels/account-video-channels.component.html29 + src/app/+accounts/accounts.component.html39 + src/app/+video-channels/video-channels.component.html78 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + - - - - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html28src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html33src/app/+video-channels/video-channels.component.html77src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html15src/app/shared/shared-video/video-views-counter.component.html2src/app/shared/shared-video/video-views-counter.component.html6 + src/app/+accounts/account-video-channels/account-video-channels.component.html28 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html33 + src/app/+video-channels/video-channels.component.html77 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html15 + src/app/shared/shared-video/video-views-counter.component.html2 + src/app/shared/shared-video/video-views-counter.component.html6 + Show this channel Показати цей канал - - src/app/+accounts/account-video-channels/account-video-channels.component.html38 + src/app/+accounts/account-video-channels/account-video-channels.component.html38 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {Немає відео} =1 {1 відео} other { відео}} @@ -6107,9 +6130,7 @@ color: red; src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 - 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 ()! + 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 ()! Ви справді хочете видалити ? Буде видалено відео, вивантажених у цей канал, і ви більше не зможете створити інший канал з такою ж назвою ()! src/app/+my-library/+my-video-channels/my-video-channels.component.ts44 @@ -6130,21 +6151,21 @@ channel with the same name ()! See this video channel Переглянути цей відеоканал - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html15src/app/+accounts/account-video-channels/account-video-channels.component.html20src/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.html15 + src/app/+accounts/account-video-channels/account-video-channels.component.html20 + 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. На цьому каналі немає відео. - - src/app/+accounts/account-video-channels/account-video-channels.component.html41 + src/app/+accounts/account-video-channels/account-video-channels.component.html41 + - SHOW THIS CHANNEL > - ПОКАЗАТИ ЦЕЙ КАНАЛ > - - src/app/+accounts/account-video-channels/account-video-channels.component.html49 + SHOW THIS CHANNEL > + ПОКАЗАТИ ЦЕЙ КАНАЛ > + src/app/+accounts/account-video-channels/account-video-channels.component.html49 + Stats Статистика @@ -6423,8 +6444,8 @@ channel with the same name ()!src/app/+about/about-peertube/about-peertube.component.html111 - 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.html115 @@ -6534,7 +6555,7 @@ channel with the same name ()! About this instance's network - About this instance's network + Про мережу цього сервера src/app/+about/about-routing.module.ts58 @@ -6543,8 +6564,8 @@ channel with the same name ()!src/app/+about/about-instance/about-instance.component.ts98 - Contact the administrator(s) - Contact the administrator(s) + Contact the administrator(s) + Зв'язатися з адміністраторами src/app/+about/about-instance/contact-admin-modal.component.html 3 @@ -6582,12 +6603,12 @@ channel with the same name ()! How long do we plan to maintain this instance? - How long do we plan to maintain this instance? + Як довго ми плануємо підтримувати цей сервер? src/app/shared/shared-instance/instance-about-accordion.component.html24 How will we finance this instance? - How will we finance this instance? + Як ми фінансуватимемо цей сервер? src/app/shared/shared-instance/instance-about-accordion.component.html29 @@ -6598,14 +6619,14 @@ channel with the same name ()! Step - Step + Крок src/app/+signup/+register/custom-stepper.component.html9 A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. - + For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. @@ -6654,8 +6675,8 @@ channel with the same name ()!src/app/+signup/+register/register-step-channel.component.html50 - 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 @@ -6829,8 +6850,8 @@ channel with the same name ()!src/app/+admin/config/edit-custom-config/edit-configuration.service.ts17 - A <code>.mp4</code> that keeps the original audio track, with no video - <code>.mp4</code> лишає тільки оригінальну аудіодоріжку без відео + A <code>.mp4</code> that keeps the original audio track, with no video + <code>.mp4</code> лишає тільки оригінальну аудіодоріжку без відео src/app/+admin/config/edit-custom-config/edit-configuration.service.ts18 @@ -6978,8 +6999,8 @@ channel with the same name ()! Configuration updated. Конфігурацію оновлено. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts309 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts309 + INSTANCE HOMEPAGE ДОМІВКА СЕРВЕРА @@ -7186,32 +7207,32 @@ channel with the same name ()! Delete Видалити - - - - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/+admin/moderation/video-block-list/video-block-list.component.ts95src/app/+admin/overview/comments/video-comment-list.component.ts100src/app/+admin/overview/comments/video-comment-list.component.ts169src/app/+admin/overview/users/user-list/user-list.component.ts95src/app/+admin/overview/users/user-list/user-list.component.ts209src/app/+admin/overview/videos/video-list.component.ts74src/app/+admin/overview/videos/video-list.component.ts198src/app/+admin/overview/videos/video-list.component.ts229src/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.ts151src/app/+my-library/my-videos/my-videos.component.ts178src/app/+my-library/my-videos/my-videos.component.ts225src/app/+videos/+video-edit/shared/video-edit.component.html190src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts134src/app/shared/shared-abuse-list/abuse-list-table.component.ts376src/app/shared/shared-abuse-list/abuse-list-table.component.ts411src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts366 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts95 + src/app/+admin/overview/comments/video-comment-list.component.ts100 + src/app/+admin/overview/comments/video-comment-list.component.ts169 + src/app/+admin/overview/users/user-list/user-list.component.ts95 + src/app/+admin/overview/users/user-list/user-list.component.ts209 + src/app/+admin/overview/videos/video-list.component.ts74 + src/app/+admin/overview/videos/video-list.component.ts198 + src/app/+admin/overview/videos/video-list.component.ts229 + 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.ts151 + src/app/+my-library/my-videos/my-videos.component.ts178 + src/app/+my-library/my-videos/my-videos.component.ts225 + src/app/+videos/+video-edit/shared/video-edit.component.html190 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts134 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts376 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts411 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts366 + removed from instance followers @@ -7487,17 +7508,17 @@ channel with the same name ()! Unblock Розблокувати - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts86src/app/+admin/moderation/video-block-list/video-block-list.component.ts133src/app/+admin/overview/videos/video-list.component.ts86src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts354 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts86 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts133 + src/app/+admin/overview/videos/video-list.component.ts86 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts354 + Video unblocked. Відео розблоковано. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts139src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts211 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts139 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts211 + yes так @@ -7617,8 +7638,8 @@ channel with the same name ()! - PeerTube thinks your web browser public IP is . - PeerTube вважає, що загальнодоступна IP-адреса вашого переглядача . + PeerTube thinks your web browser public IP is . + PeerTube вважає, що загальнодоступна IP-адреса вашого переглядача . src/app/+admin/system/debug/debug.component.html 4 @@ -7665,16 +7686,16 @@ channel with the same name ()! - Check the trust_proxy configuration key - Перевірте ключ конфігурації trust_proxy + Check the trust_proxy configuration key + Перевірте ключ конфігурації trust_proxy 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) - Якщо ваш PeerTube працює у Docker, перевірте, чи працює reverse-proxy with network_mode: "host" (перегляньте обговорення 1643) + If you run PeerTube using Docker, check you run the reverse-proxy with network_mode: "host" (see issue 1643) + Якщо ваш PeerTube працює у Docker, перевірте, чи працює reverse-proxy with network_mode: "host" (перегляньте обговорення 1643) src/app/+admin/system/debug/debug.component.html 16,17 @@ -7724,19 +7745,19 @@ channel with the same name ()! Info Відомості - - - src/app/+admin/overview/videos/video-list.component.html41src/app/core/notification/notifier.service.ts11 + src/app/+admin/overview/videos/video-list.component.html41 + src/app/core/notification/notifier.service.ts11 + Files Файли - - src/app/+admin/overview/videos/video-list.component.html42 + src/app/+admin/overview/videos/video-list.component.html42 + - Published - Опубліковано - - src/app/+admin/overview/videos/video-list.component.html43 + Published + Опубліковано + src/app/+admin/overview/videos/video-list.component.html43 + Warning Попередження @@ -7772,13 +7793,13 @@ channel with the same name ()! Blocked videos Заблоковані відео - - src/app/+admin/moderation/moderation.routes.ts66 + src/app/+admin/moderation/moderation.routes.ts66 + Muted instances Вимкнені сервери - - src/app/+admin/moderation/moderation.routes.ts101 + src/app/+admin/moderation/moderation.routes.ts101 + Password changed for user . Змінено пароль для . @@ -7872,105 +7893,103 @@ channel with the same name ()! Federation Федерація - - - src/app/+admin/admin.component.ts72 + src/app/+admin/admin.component.ts72 + Videos will be deleted, comments will be tombstoned. Videos will be deleted, comments will be tombstoned. - - - src/app/+admin/overview/users/user-list/user-list.component.ts96src/app/shared/shared-moderation/user-moderation-dropdown.component.ts345 + src/app/+admin/overview/users/user-list/user-list.component.ts96 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts345 + Ban Заблокувати - - - - src/app/+admin/overview/users/user-list/user-list.component.ts101src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + src/app/+admin/overview/users/user-list/user-list.component.ts101 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts350 + User won't be able to login anymore, but videos and comments will be kept as is. Користувач більше не зможе ввійти, але відео та коментарі залишаться. - - - src/app/+admin/overview/users/user-list/user-list.component.ts102src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351 + src/app/+admin/overview/users/user-list/user-list.component.ts102 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351 + Unban Розблокувати - - - - src/app/+admin/overview/users/user-list/user-list.component.ts107src/app/+admin/overview/users/user-list/user-list.component.ts186src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + src/app/+admin/overview/users/user-list/user-list.component.ts107 + src/app/+admin/overview/users/user-list/user-list.component.ts186 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + Set Email as Verified Позначити е-пошту підтвердженою - - - src/app/+admin/overview/users/user-list/user-list.component.ts114src/app/shared/shared-moderation/user-moderation-dropdown.component.ts362 + src/app/+admin/overview/users/user-list/user-list.component.ts114 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts362 + Created Створено - - src/app/+admin/overview/users/user-list/user-list.component.ts129 + src/app/+admin/overview/users/user-list/user-list.component.ts129 + Daily quota Daily quota - - src/app/+admin/overview/users/user-list/user-list.component.ts134 + src/app/+admin/overview/users/user-list/user-list.component.ts134 + Last login Last login - - src/app/+admin/overview/users/user-list/user-list.component.ts136 + src/app/+admin/overview/users/user-list/user-list.component.ts136 + You cannot ban root. You cannot ban root. - - - src/app/+admin/overview/users/user-list/user-list.component.ts173src/app/shared/shared-moderation/user-moderation-dropdown.component.ts71 + src/app/+admin/overview/users/user-list/user-list.component.ts173 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts71 + Do you really want to unban users? Справді розблокувати користувачів? - - src/app/+admin/overview/users/user-list/user-list.component.ts186 + src/app/+admin/overview/users/user-list/user-list.component.ts186 + users unbanned. користувачів розблоковано. - - src/app/+admin/overview/users/user-list/user-list.component.ts192 + src/app/+admin/overview/users/user-list/user-list.component.ts192 + You cannot delete root. You cannot delete root. - - - src/app/+admin/overview/users/user-list/user-list.component.ts203src/app/shared/shared-moderation/user-moderation-dropdown.component.ts99 + src/app/+admin/overview/users/user-list/user-list.component.ts203 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts99 + If you remove these users, you will not be able to create others with the same username! If you remove these users, you will not be able to create others with the same username! - - src/app/+admin/overview/users/user-list/user-list.component.ts208 + src/app/+admin/overview/users/user-list/user-list.component.ts208 + users deleted. користувачів видалено. - - src/app/+admin/overview/users/user-list/user-list.component.ts215 + src/app/+admin/overview/users/user-list/user-list.component.ts215 + users email set as verified. електронних адрес позначено підтвердженими. - - src/app/+admin/overview/users/user-list/user-list.component.ts227 + src/app/+admin/overview/users/user-list/user-list.component.ts227 + Account unmuted. Обліковий запис увімкнено. - - - src/app/shared/shared-moderation/account-blocklist.component.ts42src/app/shared/shared-moderation/user-moderation-dropdown.component.ts148 + src/app/shared/shared-moderation/account-blocklist.component.ts42 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts148 + Instance unmuted. Сервер увімкнено. - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts176 + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts176 + Videos history is enabled Історію відео увімкнено @@ -8008,8 +8027,8 @@ channel with the same name ()!src/app/+my-library/my-history/my-history.component.html13 - Clear all history - Очистити історію + Clear all history + Очистити історію src/app/+my-library/my-history/my-history.component.html 17,19 @@ -8031,8 +8050,8 @@ channel with the same name ()!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. + Ваша поточна електронна адреса . Вона ніколи не показується на загал. src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html4 @@ -8446,9 +8465,9 @@ channel with the same name ()! Change ownership Змінити власника - - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts220 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts220 + Playlist deleted. Добірку видалено. @@ -8483,18 +8502,20 @@ channel with the same name ()! 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.ts177src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts226 + 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.ts177 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts226 + Video deleted. Відео видалено. - - - src/app/+my-library/my-videos/my-videos.component.ts185src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts237 - EditorEditor + src/app/+my-library/my-videos/my-videos.component.ts185 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts237 + + + Editor + Editor src/app/+my-library/my-videos/my-videos.component.ts 208 @@ -8628,122 +8649,162 @@ channel with the same name ()!PLAYLISTS ДОБІРКИ src/app/+video-channels/video-channels.component.ts82 - - Edit Edit + + + Edit + Edit src/app/+video-editor/edit/video-editor-edit.component.html 2 - - CUT VIDEOCUT VIDEO + + + CUT VIDEO + CUT VIDEO src/app/+video-editor/edit/video-editor-edit.component.html 8 - - Set a new start/end.Set a new start/end. + + + Set a new start/end. + Set a new start/end. src/app/+video-editor/edit/video-editor-edit.component.html 10 - - New startNew start + + + New start + New start src/app/+video-editor/edit/video-editor-edit.component.html 13 - - New endNew end + + + New end + New end src/app/+video-editor/edit/video-editor-edit.component.html 18 - - ADD INTROADD INTRO + + + ADD INTRO + ADD INTRO src/app/+video-editor/edit/video-editor-edit.component.html 24 - - Concatenate a file at the beginning of the video.Concatenate a file at the beginning of the video. + + + Concatenate a file at the beginning of the video. + Concatenate a file at the beginning of the video. src/app/+video-editor/edit/video-editor-edit.component.html 26 - - Select the intro video fileSelect the intro video file + + + Select the intro video file + Select the intro video file src/app/+video-editor/edit/video-editor-edit.component.html 30 - - ADD OUTROADD OUTRO + + + ADD OUTRO + ADD OUTRO src/app/+video-editor/edit/video-editor-edit.component.html 38 - - Concatenate a file at the end of the video.Concatenate a file at the end of the video. + + + Concatenate a file at the end of the video. + Concatenate a file at the end of the video. src/app/+video-editor/edit/video-editor-edit.component.html 40 - - Select the outro video fileSelect the outro video file + + + Select the outro video file + Select the outro video file src/app/+video-editor/edit/video-editor-edit.component.html 44 - - ADD WATERMARKADD WATERMARK + + + ADD WATERMARK + ADD WATERMARK src/app/+video-editor/edit/video-editor-edit.component.html 52 - - Add a watermark image to the video.Add a watermark image to the video. + + + Add a watermark image to the video. + Add a watermark image to the video. src/app/+video-editor/edit/video-editor-edit.component.html 54 - - Select watermark image fileSelect watermark image file + + + Select watermark image file + Select watermark image file src/app/+video-editor/edit/video-editor-edit.component.html 58 - - Run video editionRun video edition + + + Run video edition + Run video edition src/app/+video-editor/edit/video-editor-edit.component.html 66 - - Video before editionVideo before edition + + + Video before edition + Video before edition src/app/+video-editor/edit/video-editor-edit.component.html 75 - - Edition tasks:Edition tasks: + + + Edition tasks: + Edition tasks: src/app/+video-editor/edit/video-editor-edit.component.html 80 - - Are you sure you want to edit ""?Are you sure you want to edit ""? + + + Are you sure you want to edit ""? + Are you sure you want to edit ""? src/app/+video-editor/edit/video-editor-edit.component.ts 72 - - The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br />The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> + + + The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> + The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /> src/app/+video-editor/edit/video-editor-edit.component.ts 76 - - As a reminder, the following tasks will be executed: <ol></ol>As a reminder, the following tasks will be executed: <ol></ol> + + + As a reminder, the following tasks will be executed: <ol></ol> + As a reminder, the following tasks will be executed: <ol></ol> src/app/+video-editor/edit/video-editor-edit.component.ts 77 @@ -8805,8 +8866,7 @@ channel with the same name ()!src/app/core/auth/auth.service.ts73 - 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. Cannot retrieve OAuth Client credentials: . Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section. src/app/core/auth/auth.service.ts100 @@ -8905,41 +8965,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Today Сьогодні - - - - src/app/+search/search-filters.component.ts40src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/videos-list.component.ts134 + src/app/+search/search-filters.component.ts40 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/videos-list.component.ts134 + Yesterday Учора - - src/app/shared/shared-video-miniature/videos-list.component.ts135 + src/app/shared/shared-video-miniature/videos-list.component.ts135 + This week Цього тижня - - src/app/shared/shared-video-miniature/videos-list.component.ts136 + src/app/shared/shared-video-miniature/videos-list.component.ts136 + This month Цього місяця - - src/app/shared/shared-video-miniature/videos-list.component.ts137 + src/app/shared/shared-video-miniature/videos-list.component.ts137 + Last month Минулого місяця - - src/app/shared/shared-video-miniature/videos-list.component.ts138 + src/app/shared/shared-video-miniature/videos-list.component.ts138 + Older Давніше - - src/app/shared/shared-video-miniature/videos-list.component.ts139 + src/app/shared/shared-video-miniature/videos-list.component.ts139 + Cannot load more videos. Try again later. Неможливо завантажити більше відео. Повторіть спробу пізніше. - - - src/app/shared/shared-video-miniature/videos-list.component.ts246src/app/shared/shared-video-miniature/videos-selection.component.ts129 + src/app/shared/shared-video-miniature/videos-list.component.ts246 + src/app/shared/shared-video-miniature/videos-selection.component.ts129 + Last 7 days Останні 7 днів @@ -8980,8 +9040,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/+search/search-filters.component.ts63 - Long (> 10 min) - Довгі (> 10 хв) + Long (> 10 min) + Довгі (> 10 хв) src/app/+search/search-filters.component.ts67 @@ -9608,8 +9668,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video caption file is required. Video caption file is required. src/app/shared/form-validators/video-captions-validators.ts14 - - Caption content is required.Caption content is required. + + + Caption content is required. + Caption content is required. src/app/shared/form-validators/video-captions-validators.ts 21 @@ -9656,8 +9718,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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. + 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. src/app/shared/shared-video-live/live-documentation-link.component.html1 @@ -9707,47 +9769,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Live RTMP Url Live RTMP Url - - - src/app/+videos/+video-edit/shared/video-edit.component.html245src/app/shared/shared-video-live/live-stream-information.component.html19 + src/app/+videos/+video-edit/shared/video-edit.component.html245 + src/app/shared/shared-video-live/live-stream-information.component.html19 + Live RTMPS Url Live RTMPS Url - - - src/app/+videos/+video-edit/shared/video-edit.component.html250src/app/shared/shared-video-live/live-stream-information.component.html24 + src/app/+videos/+video-edit/shared/video-edit.component.html250 + src/app/shared/shared-video-live/live-stream-information.component.html24 + Live stream key Live stream key - - - src/app/+videos/+video-edit/shared/video-edit.component.html255src/app/shared/shared-video-live/live-stream-information.component.html29 + src/app/+videos/+video-edit/shared/video-edit.component.html255 + src/app/shared/shared-video-live/live-stream-information.component.html29 + ⚠️ Never share your stream key with anyone. ⚠️ Never share your stream key with anyone. - - - src/app/+videos/+video-edit/shared/video-edit.component.html258src/app/shared/shared-video-live/live-stream-information.component.html32 + src/app/+videos/+video-edit/shared/video-edit.component.html258 + src/app/shared/shared-video-live/live-stream-information.component.html32 + This is a normal live This is a normal live - - src/app/+videos/+video-edit/shared/video-edit.component.html264 + src/app/+videos/+video-edit/shared/video-edit.component.html264 + You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL - - src/app/+videos/+video-edit/shared/video-edit.component.html266 + src/app/+videos/+video-edit/shared/video-edit.component.html266 + This is a permanent/recurring live This is a permanent/recurring live - - src/app/+videos/+video-edit/shared/video-edit.component.html273 + src/app/+videos/+video-edit/shared/video-edit.component.html273 + You can stream multiple times in a permanent/recurring 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/recurring live. The URL for your viewers won't change but you cannot save replays of your lives - - src/app/+videos/+video-edit/shared/video-edit.component.html275 + src/app/+videos/+video-edit/shared/video-edit.component.html275 + Replay will be saved Повтор буде збережено @@ -10244,14 +10306,14 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Instance languages Мови сервера - - src/app/+videos/+video-edit/shared/video-edit.component.ts193 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 + All languages Усі мови - - - src/app/+videos/+video-edit/shared/video-edit.component.ts194src/app/shared/shared-forms/select/select-languages.component.ts25 + src/app/+videos/+video-edit/shared/video-edit.component.ts194 + src/app/shared/shared-forms/select/select-languages.component.ts25 + Hidden Сховані @@ -10341,20 +10403,24 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular users banned. користувачів заблоковано. - - src/app/shared/shared-moderation/user-ban-modal.component.ts67 + src/app/shared/shared-moderation/user-ban-modal.component.ts67 + User banned. Користувача заблоковано. - - src/app/shared/shared-moderation/user-ban-modal.component.ts68 - Ban usersBan users + src/app/shared/shared-moderation/user-ban-modal.component.ts68 + + + Ban users + Ban users src/app/shared/shared-moderation/user-ban-modal.component.ts 82 - - Ban ""Ban "" + + + Ban "" + Ban "" src/app/shared/shared-moderation/user-ban-modal.component.ts 84 @@ -10363,52 +10429,52 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to unban ? Справді розблокувати ? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts83 + User unbanned. Користувача розблоковано. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts89 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts89 + If you remove user , you won't be able to create another with the same username! Якщо ви вилучите користувача , ви не зможете створити іншого користувача з таким же іменем! - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + Delete Видалити - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts104src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts231 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts104 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts231 + User deleted. Користувача видалено. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts110 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts110 + User email set as verified Електронну пошту користувача встановлено підтвердженою - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts122 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts122 + Account muted. Обліковий запис вимкнено. - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts134src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts263 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts134 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts263 + Instance muted. Сервер вимкнено. - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts162 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts162 + Account muted by the instance. Обліковий запис вимкнено сервером. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts434src/app/shared/shared-moderation/user-moderation-dropdown.component.ts190 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts434 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts190 + Mute server Вимкнути сервер @@ -10432,156 +10498,156 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. Обліковий запис увімкнено сервером. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts204 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts204 + Instance muted by the instance. Сервер вимкнено сервером. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts218 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts218 + Instance unmuted by the instance. Сервер увімкнено сервером. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts232 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts232 + Are you sure you want to remove all the comments of this account? Ви впевнені, що хочете вилучити всі коментарі цього облікового запису? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts243 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts243 + Delete account comments Видалити коментарі облікового запису - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts244 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts244 + Will remove comments of this account (may take several minutes). Вилучить коментарі цього облікового запису (може тривати кілька хвилин). - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts250 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts250 + My account moderation My account moderation - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts290 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts290 + Edit user Редагувати користувача - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339 + Change quota, role, and more. Change quota, role, and more. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts340 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts340 + Delete user Видалити користувача - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts344 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts344 + Unban user Розблокувати користувача - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts356 + 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.ts357 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts357 + Mute this account Вимкнути цей обліковий запис - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295src/app/shared/shared-moderation/user-moderation-dropdown.component.ts373 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts295 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts373 + 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.ts301src/app/shared/shared-moderation/user-moderation-dropdown.component.ts379 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts301 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts379 + 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 Вимкнути цей сервер - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307src/app/shared/shared-moderation/user-moderation-dropdown.component.ts391 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts307 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts391 + 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 Увімкнути цей сервер - - 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 + 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.ts374 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts374 + 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.ts380 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts380 + 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.ts392 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts392 + Unmute the instance by your instance Unmute the instance by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts397 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts397 + 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.ts398 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts398 + Remove comments from your instance Вилучити коментарі з вашого сервера - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts408 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts408 + 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.ts409 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts409 + Instance moderation Модерування сервера - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts418 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts418 + Block videos Заблокувати відео @@ -10872,77 +10938,77 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Download Завантажити - - - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts324src/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.ts324 + src/app/shared/shared-video-miniature/video-download.component.html4 + src/app/shared/shared-video-miniature/video-download.component.html156 + Display live information Display live information - - - src/app/+my-library/my-videos/my-videos.component.ts214src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts330 + src/app/+my-library/my-videos/my-videos.component.ts214 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts330 + Update Оновити - - - - - - - - - - - src/app/+manage/video-channel-edit/video-channel-update.component.ts181src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts115src/app/+videos/+video-edit/video-add-components/video-go-live.component.html62src/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.html20src/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.ts336 + src/app/+manage/video-channel-edit/video-channel-update.component.ts181 + 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.html62 + 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.html20 + 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.ts336 + Block Блокувати - - - - src/app/+admin/overview/videos/video-list.component.ts80src/app/shared/shared-moderation/video-block.component.html50src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts348 + src/app/+admin/overview/videos/video-list.component.ts80 + src/app/shared/shared-moderation/video-block.component.html50 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts348 + Run HLS transcoding Запустити перекодування HLS - - - src/app/+admin/overview/videos/video-list.component.ts94src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts380 + src/app/+admin/overview/videos/video-list.component.ts94 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts380 + Run WebTorrent transcoding Запустити перекодування WebTorrent - - - src/app/+admin/overview/videos/video-list.component.ts100src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts386 + src/app/+admin/overview/videos/video-list.component.ts100 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts386 + Delete HLS files Видалити файли HLS - - - src/app/+admin/overview/videos/video-list.component.ts106src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts392 + src/app/+admin/overview/videos/video-list.component.ts106 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts392 + Delete WebTorrent files Видалити файли WebTorrent - - - src/app/+admin/overview/videos/video-list.component.ts112src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts398 + src/app/+admin/overview/videos/video-list.component.ts112 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts398 + Save to playlist Зберегти у добірку - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts58src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts316 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts58 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts316 + - You need to be <a href="/login">logged in</a> to rate this video. - <a href="/login">Увійдіть</a>, щоб оцінити це відео. + 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 Дзеркало - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts360 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts360 + Subtitles Субтитри @@ -10977,9 +11043,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mute account Вимкнути обліковий запис - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts292src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts406 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts292 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts406 + Open video actions Відкрити дії з відео @@ -10995,13 +11061,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to unblock ? It will be available again in the videos list. Do you really want to unblock ? It will be available again in the videos list. - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + Unblock Розблокувати - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205 + Mute server account Mute server account @@ -11010,10 +11076,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Report Поскаржитися - - - - src/app/+accounts/accounts.component.ts198src/app/shared/shared-abuse-list/abuse-details.component.html55src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts372 + src/app/+accounts/accounts.component.ts198 + src/app/shared/shared-abuse-list/abuse-details.component.html55 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts372 + Reported part Reported part @@ -11094,8 +11160,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular To import Імпортувати src/app/shared/shared-video-miniature/video-miniature.component.ts195 - - To editTo edit + + + To edit + To edit src/app/shared/shared-video-miniature/video-miniature.component.ts 199 @@ -11112,21 +11180,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular - - - - - - - - - - - - - - - src/app/+admin/overview/videos/video-list.component.html77src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4src/app/+videos/+video-edit/video-add-components/video-go-live.component.html31src/app/+videos/+video-watch/video-watch.component.html73src/app/menu/menu.component.html110src/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-moderation/user-ban-modal.component.html3src/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/+admin/overview/videos/video-list.component.html77 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html31 + src/app/+videos/+video-watch/video-watch.component.html73 + src/app/menu/menu.component.html110 + 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-moderation/user-ban-modal.component.html3 + 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 + Add to watch later Додати до списку переглянути пізніше @@ -11165,13 +11234,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular viewers переглядачів - - src/app/shared/shared-main/video/video.model.ts266 + src/app/shared/shared-main/video/video.model.ts266 + views переглядів - - src/app/shared/shared-main/video/video.model.ts269 + src/app/shared/shared-main/video/video.model.ts269 + Video to import updated. Відео для імпорту оновлено. @@ -11216,9 +11285,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video updated. Відео оновлено. - - src/app/+video-editor/edit/video-editor-edit.component.ts90src/app/+videos/+video-edit/video-update.component.ts146 - (extensions: )(extensions: ) + src/app/+video-editor/edit/video-editor-edit.component.ts90 + src/app/+videos/+video-edit/video-update.component.ts146 + + + (extensions: ) + (extensions: ) src/app/+video-editor/edit/video-editor-edit.component.ts 104 @@ -11227,44 +11299,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular src/app/+video-editor/edit/video-editor-edit.component.ts 108 - - "" will be added at the beggining of the video"" will be added at the beggining of the video + + + "" will be added at the beggining of the video + "" will be added at the beggining of the video src/app/+video-editor/edit/video-editor-edit.component.ts 120 - - "" will be added at the end of the video"" will be added at the end of the video + + + "" will be added at the end of the video + "" will be added at the end of the video src/app/+video-editor/edit/video-editor-edit.component.ts 124 - - "" image watermark will be added to the video"" image watermark will be added to the video + + + "" image watermark will be added to the video + "" image watermark will be added to the video src/app/+video-editor/edit/video-editor-edit.component.ts 128 - - Video will begin at and stop at Video will begin at and stop at + + + Video will begin at and stop at + Video will begin at and stop at src/app/+video-editor/edit/video-editor-edit.component.ts 135 - - Video will begin at Video will begin at + + + Video will begin at + Video will begin at src/app/+video-editor/edit/video-editor-edit.component.ts 139 - - Video will stop at Video will stop at + + + Video will stop at + Video will stop at src/app/+video-editor/edit/video-editor-edit.component.ts 143 - - Edit videoEdit video + + + Edit video + Edit video src/app/+video-editor/video-editor-routing.module.ts 15 @@ -11278,23 +11364,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Stop autoplaying next video Припинити автовідтворення наступного відео - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts234 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts234 + Autoplay next video Автовідтворення наступного відео - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts235 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts235 + Stop looping playlist videos Stop looping playlist videos - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts240 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts240 + Loop playlist videos Loop playlist videos - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts241 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts241 + Placeholder image Placeholder image @@ -11304,8 +11390,8 @@ 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>? + 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.ts301 @@ -11331,27 +11417,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Cancel Скасувати - - - - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+admin/follows/following-list/follow-modal.component.html33src/app/+login/login.component.html125src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-video-imports/my-video-imports.component.html31src/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/shared/video-caption-edit-modal/video-caption-edit-modal.component.html26src/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.ts425src/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.html90src/app/shared/shared-moderation/user-ban-modal.component.html34src/app/shared/shared-moderation/video-block.component.html46src/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.html125 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-video-imports/my-video-imports.component.html31 + 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/shared/video-caption-edit-modal/video-caption-edit-modal.component.html26 + 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.ts425 + 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.html90 + src/app/shared/shared-moderation/user-ban-modal.component.html34 + src/app/shared/shared-moderation/video-block.component.html46 + src/app/shared/shared-video-miniature/video-download.component.html152 + Autoplay is suspended Автовідтворення зупинено diff --git a/client/src/standalone/videos/embed.ts b/client/src/standalone/videos/embed.ts index 38ff39890..9e4d87911 100644 --- a/client/src/standalone/videos/embed.ts +++ b/client/src/standalone/videos/embed.ts @@ -6,6 +6,7 @@ import { peertubeTranslate } from '../../../../shared/core-utils/i18n' import { HTMLServerConfig, HttpStatusCode, + LiveVideo, OAuth2ErrorCode, ResultList, UserRefreshToken, @@ -94,6 +95,10 @@ export class PeerTubeEmbed { return window.location.origin + '/api/v1/videos/' + id } + getLiveUrl (videoId: string) { + return window.location.origin + '/api/v1/videos/live/' + videoId + } + refreshFetch (url: string, options?: RequestInit) { return fetch(url, options) .then((res: Response) => { @@ -166,6 +171,12 @@ export class PeerTubeEmbed { return this.refreshFetch(this.getVideoUrl(videoId) + '/captions', { headers: this.headers }) } + loadWithLive (video: VideoDetails) { + return this.refreshFetch(this.getLiveUrl(video.uuid), { headers: this.headers }) + .then(res => res.json()) + .then((live: LiveVideo) => ({ video, live })) + } + loadPlaylistInfo (playlistId: string): Promise { return this.refreshFetch(this.getPlaylistUrl(playlistId), { headers: this.headers }) } @@ -475,13 +486,15 @@ export class PeerTubeEmbed { .then(res => res.json()) } - const videoInfoPromise = videoResponse.json() + const videoInfoPromise: Promise<{ video: VideoDetails, live?: LiveVideo }> = videoResponse.json() .then((videoInfo: VideoDetails) => { this.loadParams(videoInfo) - if (!alreadyHadPlayer && !this.autoplay) this.loadPlaceholder(videoInfo) + if (!alreadyHadPlayer && !this.autoplay) this.buildPlaceholder(videoInfo) - return videoInfo + if (!videoInfo.isLive) return { video: videoInfo } + + return this.loadWithLive(videoInfo) }) const [ videoInfoTmp, serverTranslations, captionsResponse, PeertubePlayerManagerModule ] = await Promise.all([ @@ -493,11 +506,15 @@ export class PeerTubeEmbed { await this.loadPlugins(serverTranslations) - const videoInfo: VideoDetails = videoInfoTmp + const { video: videoInfo, live } = videoInfoTmp const PeertubePlayerManager = PeertubePlayerManagerModule.PeertubePlayerManager const videoCaptions = await this.buildCaptions(serverTranslations, captionsResponse) + const liveOptions = videoInfo.isLive + ? { latencyMode: live.latencyMode } + : undefined + const playlistPlugin = this.currentPlaylistElement ? { elements: this.playlistElements, @@ -545,6 +562,7 @@ export class PeerTubeEmbed { videoUUID: videoInfo.uuid, isLive: videoInfo.isLive, + liveOptions, playerElement: this.playerElement, onPlayerElementChange: (element: HTMLVideoElement) => { @@ -726,7 +744,7 @@ export class PeerTubeEmbed { return [] } - private loadPlaceholder (video: VideoDetails) { + private buildPlaceholder (video: VideoDetails) { const placeholder = this.getPlaceholderElement() const url = window.location.origin + video.previewPath diff --git a/config/default.yaml b/config/default.yaml index d76894b52..898395705 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -392,6 +392,12 @@ live: # /!\ transcoding.enabled (and not live.transcoding.enabled) has to be true to create a replay allow_replay: true + # Allow your users to change latency settings (small latency/default/high latency) + # Small latency live streams cannot use P2P + # High latency live streams can increase P2P ratio + latency_setting: + enabled: true + # Your firewall should accept traffic from this port in TCP if you enable live rtmp: enabled: true diff --git a/config/production.yaml.example b/config/production.yaml.example index 45d26190a..03afe5841 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example @@ -400,6 +400,12 @@ live: # /!\ transcoding.enabled (and not live.transcoding.enabled) has to be true to create a replay allow_replay: true + # Allow your users to change latency settings (small latency/default/high latency) + # Small latency live streams cannot use P2P + # High latency live streams can increase P2P ratio + latency_setting: + enabled: true + # Your firewall should accept traffic from this port in TCP if you enable live rtmp: enabled: true diff --git a/server/controllers/api/config.ts b/server/controllers/api/config.ts index 821ed4ad3..376143cb8 100644 --- a/server/controllers/api/config.ts +++ b/server/controllers/api/config.ts @@ -237,6 +237,9 @@ function customConfig (): CustomConfig { live: { enabled: CONFIG.LIVE.ENABLED, allowReplay: CONFIG.LIVE.ALLOW_REPLAY, + latencySetting: { + enabled: CONFIG.LIVE.LATENCY_SETTING.ENABLED + }, maxDuration: CONFIG.LIVE.MAX_DURATION, maxInstanceLives: CONFIG.LIVE.MAX_INSTANCE_LIVES, maxUserLives: CONFIG.LIVE.MAX_USER_LIVES, diff --git a/server/controllers/api/videos/live.ts b/server/controllers/api/videos/live.ts index 49cabb6f3..c6f038079 100644 --- a/server/controllers/api/videos/live.ts +++ b/server/controllers/api/videos/live.ts @@ -1,4 +1,5 @@ import express from 'express' +import { exists } from '@server/helpers/custom-validators/misc' import { createReqFiles } from '@server/helpers/express-utils' import { ASSETS_PATH, MIMETYPES } from '@server/initializers/constants' import { getLocalVideoActivityPubUrl } from '@server/lib/activitypub/url' @@ -9,7 +10,7 @@ import { videoLiveAddValidator, videoLiveGetValidator, videoLiveUpdateValidator import { VideoLiveModel } from '@server/models/video/video-live' import { MVideoDetails, MVideoFullLight } from '@server/types/models' import { buildUUID, uuidToShort } from '@shared/extra-utils' -import { HttpStatusCode, LiveVideoCreate, LiveVideoUpdate, VideoState } from '@shared/models' +import { HttpStatusCode, LiveVideoCreate, LiveVideoLatencyMode, LiveVideoUpdate, VideoState } from '@shared/models' import { logger } from '../../../helpers/logger' import { sequelizeTypescript } from '../../../initializers/database' import { updateVideoMiniatureFromExisting } from '../../../lib/thumbnail' @@ -60,8 +61,9 @@ async function updateLiveVideo (req: express.Request, res: express.Response) { const video = res.locals.videoAll const videoLive = res.locals.videoLive - videoLive.saveReplay = body.saveReplay || false - videoLive.permanentLive = body.permanentLive || false + if (exists(body.saveReplay)) videoLive.saveReplay = body.saveReplay + if (exists(body.permanentLive)) videoLive.permanentLive = body.permanentLive + if (exists(body.latencyMode)) videoLive.latencyMode = body.latencyMode video.VideoLive = await videoLive.save() @@ -87,6 +89,7 @@ async function addLiveVideo (req: express.Request, res: express.Response) { const videoLive = new VideoLiveModel() videoLive.saveReplay = videoInfo.saveReplay || false videoLive.permanentLive = videoInfo.permanentLive || false + videoLive.latencyMode = videoInfo.latencyMode || LiveVideoLatencyMode.DEFAULT videoLive.streamKey = buildUUID() const [ thumbnailModel, previewModel ] = await buildVideoThumbnailsFromReq({ diff --git a/server/helpers/activitypub.ts b/server/helpers/activitypub.ts index cbba2f51c..d0bcc6785 100644 --- a/server/helpers/activitypub.ts +++ b/server/helpers/activitypub.ts @@ -50,6 +50,10 @@ function getContextData (type: ContextType) { '@type': 'sc:Boolean', '@id': 'pt:permanentLive' }, + latencyMode: { + '@type': 'sc:Number', + '@id': 'pt:latencyMode' + }, Infohash: 'pt:Infohash', Playlist: 'pt:Playlist', diff --git a/server/helpers/custom-validators/activitypub/videos.ts b/server/helpers/custom-validators/activitypub/videos.ts index a41d37810..80a321117 100644 --- a/server/helpers/custom-validators/activitypub/videos.ts +++ b/server/helpers/custom-validators/activitypub/videos.ts @@ -1,10 +1,11 @@ import validator from 'validator' import { logger } from '@server/helpers/logger' import { ActivityTrackerUrlObject, ActivityVideoFileMetadataUrlObject } from '@shared/models' -import { VideoState } from '../../../../shared/models/videos' +import { LiveVideoLatencyMode, VideoState } from '../../../../shared/models/videos' import { ACTIVITY_PUB, CONSTRAINTS_FIELDS } from '../../../initializers/constants' import { peertubeTruncate } from '../../core-utils' import { exists, isArray, isBooleanValid, isDateValid, isUUIDValid } from '../misc' +import { isLiveLatencyModeValid } from '../video-lives' import { isVideoDurationValid, isVideoNameValid, @@ -65,6 +66,7 @@ function sanitizeAndCheckVideoTorrentObject (video: any) { if (!isBooleanValid(video.isLiveBroadcast)) video.isLiveBroadcast = false if (!isBooleanValid(video.liveSaveReplay)) video.liveSaveReplay = false if (!isBooleanValid(video.permanentLive)) video.permanentLive = false + if (!isLiveLatencyModeValid(video.latencyMode)) video.latencyMode = LiveVideoLatencyMode.DEFAULT return isActivityPubUrlValid(video.id) && isVideoNameValid(video.name) && diff --git a/server/helpers/custom-validators/video-lives.ts b/server/helpers/custom-validators/video-lives.ts new file mode 100644 index 000000000..69d08ae68 --- /dev/null +++ b/server/helpers/custom-validators/video-lives.ts @@ -0,0 +1,11 @@ +import { LiveVideoLatencyMode } from '@shared/models' + +function isLiveLatencyModeValid (value: any) { + return [ LiveVideoLatencyMode.DEFAULT, LiveVideoLatencyMode.SMALL_LATENCY, LiveVideoLatencyMode.HIGH_LATENCY ].includes(value) +} + +// --------------------------------------------------------------------------- + +export { + isLiveLatencyModeValid +} diff --git a/server/helpers/ffmpeg/ffmpeg-live.ts b/server/helpers/ffmpeg/ffmpeg-live.ts index ff571626c..fd20971eb 100644 --- a/server/helpers/ffmpeg/ffmpeg-live.ts +++ b/server/helpers/ffmpeg/ffmpeg-live.ts @@ -1,7 +1,7 @@ import { FfmpegCommand, FilterSpecification } from 'fluent-ffmpeg' import { join } from 'path' import { VIDEO_LIVE } from '@server/initializers/constants' -import { AvailableEncoders } from '@shared/models' +import { AvailableEncoders, LiveVideoLatencyMode } from '@shared/models' import { logger, loggerTagsFactory } from '../logger' import { buildStreamSuffix, getFFmpeg, getScaleFilter, StreamType } from './ffmpeg-commons' import { getEncoderBuilderResult } from './ffmpeg-encoders' @@ -15,6 +15,7 @@ async function getLiveTranscodingCommand (options: { outPath: string masterPlaylistName: string + latencyMode: LiveVideoLatencyMode resolutions: number[] @@ -26,7 +27,7 @@ async function getLiveTranscodingCommand (options: { availableEncoders: AvailableEncoders profile: string }) { - const { inputUrl, outPath, resolutions, fps, bitrate, availableEncoders, profile, masterPlaylistName, ratio } = options + const { inputUrl, outPath, resolutions, fps, bitrate, availableEncoders, profile, masterPlaylistName, ratio, latencyMode } = options const command = getFFmpeg(inputUrl, 'live') @@ -120,14 +121,21 @@ async function getLiveTranscodingCommand (options: { command.complexFilter(complexFilter) - addDefaultLiveHLSParams(command, outPath, masterPlaylistName) + addDefaultLiveHLSParams({ command, outPath, masterPlaylistName, latencyMode }) command.outputOption('-var_stream_map', varStreamMap.join(' ')) return command } -function getLiveMuxingCommand (inputUrl: string, outPath: string, masterPlaylistName: string) { +function getLiveMuxingCommand (options: { + inputUrl: string + outPath: string + masterPlaylistName: string + latencyMode: LiveVideoLatencyMode +}) { + const { inputUrl, outPath, masterPlaylistName, latencyMode } = options + const command = getFFmpeg(inputUrl, 'live') command.outputOption('-c:v copy') @@ -135,22 +143,39 @@ function getLiveMuxingCommand (inputUrl: string, outPath: string, masterPlaylist command.outputOption('-map 0:a?') command.outputOption('-map 0:v?') - addDefaultLiveHLSParams(command, outPath, masterPlaylistName) + addDefaultLiveHLSParams({ command, outPath, masterPlaylistName, latencyMode }) return command } +function getLiveSegmentTime (latencyMode: LiveVideoLatencyMode) { + if (latencyMode === LiveVideoLatencyMode.SMALL_LATENCY) { + return VIDEO_LIVE.SEGMENT_TIME_SECONDS.SMALL_LATENCY + } + + return VIDEO_LIVE.SEGMENT_TIME_SECONDS.DEFAULT_LATENCY +} + // --------------------------------------------------------------------------- export { + getLiveSegmentTime, + getLiveTranscodingCommand, getLiveMuxingCommand } // --------------------------------------------------------------------------- -function addDefaultLiveHLSParams (command: FfmpegCommand, outPath: string, masterPlaylistName: string) { - command.outputOption('-hls_time ' + VIDEO_LIVE.SEGMENT_TIME_SECONDS) +function addDefaultLiveHLSParams (options: { + command: FfmpegCommand + outPath: string + masterPlaylistName: string + latencyMode: LiveVideoLatencyMode +}) { + const { command, outPath, masterPlaylistName, latencyMode } = options + + command.outputOption('-hls_time ' + getLiveSegmentTime(latencyMode)) command.outputOption('-hls_list_size ' + VIDEO_LIVE.SEGMENTS_LIST_SIZE) command.outputOption('-hls_flags delete_segments+independent_segments') command.outputOption(`-hls_segment_filename ${join(outPath, '%v-%06d.ts')}`) diff --git a/server/initializers/checker-before-init.ts b/server/initializers/checker-before-init.ts index 10dd98f43..fa311f708 100644 --- a/server/initializers/checker-before-init.ts +++ b/server/initializers/checker-before-init.ts @@ -49,8 +49,8 @@ function checkMissedConfig () { 'peertube.check_latest_version.enabled', 'peertube.check_latest_version.url', 'search.remote_uri.users', 'search.remote_uri.anonymous', 'search.search_index.enabled', 'search.search_index.url', 'search.search_index.disable_local_search', 'search.search_index.is_default_search', - 'live.enabled', 'live.allow_replay', 'live.max_duration', 'live.max_user_lives', 'live.max_instance_lives', - 'live.rtmp.enabled', 'live.rtmp.port', 'live.rtmp.hostname', + 'live.enabled', 'live.allow_replay', 'live.latency_setting.enabled', 'live.max_duration', + 'live.max_user_lives', 'live.max_instance_lives', 'live.rtmp.enabled', 'live.rtmp.port', 'live.rtmp.hostname', 'live.rtmps.enabled', 'live.rtmps.port', 'live.rtmps.hostname', 'live.rtmps.key_file', 'live.rtmps.cert_file', 'live.transcoding.enabled', 'live.transcoding.threads', 'live.transcoding.profile', 'live.transcoding.resolutions.144p', 'live.transcoding.resolutions.240p', 'live.transcoding.resolutions.360p', diff --git a/server/initializers/config.ts b/server/initializers/config.ts index 7a13a1368..6dcca9b67 100644 --- a/server/initializers/config.ts +++ b/server/initializers/config.ts @@ -4,9 +4,9 @@ import { dirname, join } from 'path' import { decacheModule } from '@server/helpers/decache' import { VideoRedundancyConfigFilter } from '@shared/models/redundancy/video-redundancy-config-filter.type' import { BroadcastMessageLevel } from '@shared/models/server' +import { buildPath, root } from '../../shared/core-utils' import { VideoPrivacy, VideosRedundancyStrategy } from '../../shared/models' import { NSFWPolicyType } from '../../shared/models/videos/nsfw-policy.type' -import { buildPath, root } from '../../shared/core-utils' import { parseBytes, parseDurationToMs } from '../helpers/core-utils' // Use a variable to reload the configuration if we need @@ -296,6 +296,10 @@ const CONFIG = { get ALLOW_REPLAY () { return config.get('live.allow_replay') }, + LATENCY_SETTING: { + get ENABLED () { return config.get('live.latency_setting.enabled') } + }, + RTMP: { get ENABLED () { return config.get('live.rtmp.enabled') }, get PORT () { return config.get('live.rtmp.port') }, diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 7bc2877aa..1c849b561 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts @@ -24,7 +24,7 @@ import { CONFIG, registerConfigChangedHandler } from './config' // --------------------------------------------------------------------------- -const LAST_MIGRATION_VERSION = 685 +const LAST_MIGRATION_VERSION = 690 // --------------------------------------------------------------------------- @@ -700,7 +700,10 @@ const RESUMABLE_UPLOAD_SESSION_LIFETIME = SCHEDULER_INTERVALS_MS.REMOVE_DANGLING const VIDEO_LIVE = { EXTENSION: '.ts', CLEANUP_DELAY: 1000 * 60 * 5, // 5 minutes - SEGMENT_TIME_SECONDS: 4, // 4 seconds + SEGMENT_TIME_SECONDS: { + DEFAULT_LATENCY: 4, // 4 seconds + SMALL_LATENCY: 2 // 2 seconds + }, SEGMENTS_LIST_SIZE: 15, // 15 maximum segments in live playlist REPLAY_DIRECTORY: 'replay', EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION: 4, @@ -842,7 +845,8 @@ if (isTestInstance() === true) { PLUGIN_EXTERNAL_AUTH_TOKEN_LIFETIME = 5000 VIDEO_LIVE.CLEANUP_DELAY = 5000 - VIDEO_LIVE.SEGMENT_TIME_SECONDS = 2 + VIDEO_LIVE.SEGMENT_TIME_SECONDS.DEFAULT_LATENCY = 2 + VIDEO_LIVE.SEGMENT_TIME_SECONDS.SMALL_LATENCY = 1 VIDEO_LIVE.EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION = 1 } diff --git a/server/initializers/migrations/0690-live-latency-mode.ts b/server/initializers/migrations/0690-live-latency-mode.ts new file mode 100644 index 000000000..c31a61364 --- /dev/null +++ b/server/initializers/migrations/0690-live-latency-mode.ts @@ -0,0 +1,35 @@ +import { LiveVideoLatencyMode } from '@shared/models' +import * as Sequelize from 'sequelize' + +async function up (utils: { + transaction: Sequelize.Transaction + queryInterface: Sequelize.QueryInterface + sequelize: Sequelize.Sequelize + db: any +}): Promise { + await utils.queryInterface.addColumn('videoLive', 'latencyMode', { + type: Sequelize.INTEGER, + defaultValue: null, + allowNull: true + }, { transaction: utils.transaction }) + + { + const query = `UPDATE "videoLive" SET "latencyMode" = ${LiveVideoLatencyMode.DEFAULT}` + await utils.sequelize.query(query, { type: Sequelize.QueryTypes.UPDATE, transaction: utils.transaction }) + } + + await utils.queryInterface.changeColumn('videoLive', 'latencyMode', { + type: Sequelize.INTEGER, + defaultValue: null, + allowNull: false + }, { transaction: utils.transaction }) +} + +function down () { + throw new Error('Not implemented.') +} + +export { + up, + down +} diff --git a/server/lib/activitypub/videos/shared/object-to-model-attributes.ts b/server/lib/activitypub/videos/shared/object-to-model-attributes.ts index 1e1479869..c97217669 100644 --- a/server/lib/activitypub/videos/shared/object-to-model-attributes.ts +++ b/server/lib/activitypub/videos/shared/object-to-model-attributes.ts @@ -151,6 +151,7 @@ function getLiveAttributesFromObject (video: MVideoId, videoObject: VideoObject) return { saveReplay: videoObject.liveSaveReplay, permanentLive: videoObject.permanentLive, + latencyMode: videoObject.latencyMode, videoId: video.id } } diff --git a/server/lib/live/live-manager.ts b/server/lib/live/live-manager.ts index 21c34a9a4..920d3a5ec 100644 --- a/server/lib/live/live-manager.ts +++ b/server/lib/live/live-manager.ts @@ -5,9 +5,10 @@ import { createServer as createServerTLS, Server as ServerTLS } from 'tls' import { computeLowerResolutionsToTranscode, ffprobePromise, + getLiveSegmentTime, getVideoStreamBitrate, - getVideoStreamFPS, - getVideoStreamDimensionsInfo + getVideoStreamDimensionsInfo, + getVideoStreamFPS } from '@server/helpers/ffmpeg' import { logger, loggerTagsFactory } from '@server/helpers/logger' import { CONFIG, registerConfigChangedHandler } from '@server/initializers/config' @@ -353,7 +354,7 @@ class LiveManager { .catch(err => logger.error('Cannot federate live video %s.', video.url, { err, ...localLTags })) PeerTubeSocket.Instance.sendVideoLiveNewState(video) - }, VIDEO_LIVE.SEGMENT_TIME_SECONDS * 1000 * VIDEO_LIVE.EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION) + }, getLiveSegmentTime(live.latencyMode) * 1000 * VIDEO_LIVE.EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION) } catch (err) { logger.error('Cannot save/federate live video %d.', videoId, { err, ...localLTags }) } diff --git a/server/lib/live/shared/muxing-session.ts b/server/lib/live/shared/muxing-session.ts index f5f473039..a703f5b5f 100644 --- a/server/lib/live/shared/muxing-session.ts +++ b/server/lib/live/shared/muxing-session.ts @@ -125,6 +125,8 @@ class MuxingSession extends EventEmitter { outPath, masterPlaylistName: this.streamingPlaylist.playlistFilename, + latencyMode: this.videoLive.latencyMode, + resolutions: this.allResolutions, fps: this.fps, bitrate: this.bitrate, @@ -133,7 +135,12 @@ class MuxingSession extends EventEmitter { availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(), profile: CONFIG.LIVE.TRANSCODING.PROFILE }) - : getLiveMuxingCommand(this.inputUrl, outPath, this.streamingPlaylist.playlistFilename) + : getLiveMuxingCommand({ + inputUrl: this.inputUrl, + outPath, + masterPlaylistName: this.streamingPlaylist.playlistFilename, + latencyMode: this.videoLive.latencyMode + }) logger.info('Running live muxing/transcoding for %s.', this.videoUUID, this.lTags()) diff --git a/server/lib/server-config-manager.ts b/server/lib/server-config-manager.ts index 43ca2332b..744186cfc 100644 --- a/server/lib/server-config-manager.ts +++ b/server/lib/server-config-manager.ts @@ -137,6 +137,10 @@ class ServerConfigManager { enabled: CONFIG.LIVE.ENABLED, allowReplay: CONFIG.LIVE.ALLOW_REPLAY, + latencySetting: { + enabled: CONFIG.LIVE.LATENCY_SETTING.ENABLED + }, + maxDuration: CONFIG.LIVE.MAX_DURATION, maxInstanceLives: CONFIG.LIVE.MAX_INSTANCE_LIVES, maxUserLives: CONFIG.LIVE.MAX_USER_LIVES, diff --git a/server/middlewares/validators/videos/video-live.ts b/server/middlewares/validators/videos/video-live.ts index 6c7601e05..8e52c953f 100644 --- a/server/middlewares/validators/videos/video-live.ts +++ b/server/middlewares/validators/videos/video-live.ts @@ -1,12 +1,21 @@ import express from 'express' import { body } from 'express-validator' +import { isLiveLatencyModeValid } from '@server/helpers/custom-validators/video-lives' import { CONSTRAINTS_FIELDS } from '@server/initializers/constants' import { isLocalLiveVideoAccepted } from '@server/lib/moderation' import { Hooks } from '@server/lib/plugins/hooks' import { VideoModel } from '@server/models/video/video' import { VideoLiveModel } from '@server/models/video/video-live' -import { HttpStatusCode, ServerErrorCode, UserRight, VideoState } from '@shared/models' -import { isBooleanValid, isIdValid, toBooleanOrNull, toIntOrNull } from '../../../helpers/custom-validators/misc' +import { + HttpStatusCode, + LiveVideoCreate, + LiveVideoLatencyMode, + LiveVideoUpdate, + ServerErrorCode, + UserRight, + VideoState +} from '@shared/models' +import { exists, isBooleanValid, isIdValid, toBooleanOrNull, toIntOrNull } from '../../../helpers/custom-validators/misc' import { isVideoNameValid } from '../../../helpers/custom-validators/videos' import { cleanUpReqFiles } from '../../../helpers/express-utils' import { logger } from '../../../helpers/logger' @@ -67,6 +76,12 @@ const videoLiveAddValidator = getCommonVideoEditAttributes().concat([ .customSanitizer(toBooleanOrNull) .custom(isBooleanValid).withMessage('Should have a valid permanentLive attribute'), + body('latencyMode') + .optional() + .customSanitizer(toIntOrNull) + .custom(isLiveLatencyModeValid) + .withMessage('Should have a valid latency mode attribute'), + async (req: express.Request, res: express.Response, next: express.NextFunction) => { logger.debug('Checking videoLiveAddValidator parameters', { parameters: req.body }) @@ -82,7 +97,9 @@ const videoLiveAddValidator = getCommonVideoEditAttributes().concat([ }) } - if (CONFIG.LIVE.ALLOW_REPLAY !== true && req.body.saveReplay === true) { + const body: LiveVideoCreate = req.body + + if (hasValidSaveReplay(body) !== true) { cleanUpReqFiles(req) return res.fail({ @@ -92,14 +109,23 @@ const videoLiveAddValidator = getCommonVideoEditAttributes().concat([ }) } - if (req.body.permanentLive && req.body.saveReplay) { + if (hasValidLatencyMode(body) !== true) { + cleanUpReqFiles(req) + + return res.fail({ + status: HttpStatusCode.FORBIDDEN_403, + message: 'Custom latency mode is not allowed by this instance' + }) + } + + if (body.permanentLive && body.saveReplay) { cleanUpReqFiles(req) return res.fail({ message: 'Cannot set this live as permanent while saving its replay' }) } const user = res.locals.oauth.token.User - if (!await doesVideoChannelOfAccountExist(req.body.channelId, user, res)) return cleanUpReqFiles(req) + if (!await doesVideoChannelOfAccountExist(body.channelId, user, res)) return cleanUpReqFiles(req) if (CONFIG.LIVE.MAX_INSTANCE_LIVES !== -1) { const totalInstanceLives = await VideoModel.countLocalLives() @@ -141,19 +167,34 @@ const videoLiveUpdateValidator = [ .customSanitizer(toBooleanOrNull) .custom(isBooleanValid).withMessage('Should have a valid saveReplay attribute'), + body('latencyMode') + .optional() + .customSanitizer(toIntOrNull) + .custom(isLiveLatencyModeValid) + .withMessage('Should have a valid latency mode attribute'), + (req: express.Request, res: express.Response, next: express.NextFunction) => { logger.debug('Checking videoLiveUpdateValidator parameters', { parameters: req.body }) if (areValidationErrors(req, res)) return - if (req.body.permanentLive && req.body.saveReplay) { + const body: LiveVideoUpdate = req.body + + if (body.permanentLive && body.saveReplay) { return res.fail({ message: 'Cannot set this live as permanent while saving its replay' }) } - if (CONFIG.LIVE.ALLOW_REPLAY !== true && req.body.saveReplay === true) { + if (hasValidSaveReplay(body) !== true) { return res.fail({ status: HttpStatusCode.FORBIDDEN_403, - message: 'Saving live replay is not allowed instance' + message: 'Saving live replay is not allowed by this instance' + }) + } + + if (hasValidLatencyMode(body) !== true) { + return res.fail({ + status: HttpStatusCode.FORBIDDEN_403, + message: 'Custom latency mode is not allowed by this instance' }) } @@ -203,3 +244,19 @@ async function isLiveVideoAccepted (req: express.Request, res: express.Response) return true } + +function hasValidSaveReplay (body: LiveVideoUpdate | LiveVideoCreate) { + if (CONFIG.LIVE.ALLOW_REPLAY !== true && body.saveReplay === true) return false + + return true +} + +function hasValidLatencyMode (body: LiveVideoUpdate | LiveVideoCreate) { + if ( + CONFIG.LIVE.LATENCY_SETTING.ENABLED !== true && + exists(body.latencyMode) && + body.latencyMode !== LiveVideoLatencyMode.DEFAULT + ) return false + + return true +} diff --git a/server/models/video/formatter/video-format-utils.ts b/server/models/video/formatter/video-format-utils.ts index 7456f37c5..611edf0b9 100644 --- a/server/models/video/formatter/video-format-utils.ts +++ b/server/models/video/formatter/video-format-utils.ts @@ -411,15 +411,6 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoObject { views: video.views, sensitive: video.nsfw, waitTranscoding: video.waitTranscoding, - isLiveBroadcast: video.isLive, - - liveSaveReplay: video.isLive - ? video.VideoLive.saveReplay - : null, - - permanentLive: video.isLive - ? video.VideoLive.permanentLive - : null, state: video.state, commentsEnabled: video.commentsEnabled, @@ -431,10 +422,13 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoObject { : null, updated: video.updatedAt.toISOString(), + mediaType: 'text/markdown', content: video.description, support: video.support, + subtitleLanguage, + icon: icons.map(i => ({ type: 'Image', url: i.getFileUrl(video), @@ -442,11 +436,14 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoObject { width: i.width, height: i.height })), + url, + likes: getLocalVideoLikesActivityPubUrl(video), dislikes: getLocalVideoDislikesActivityPubUrl(video), shares: getLocalVideoSharesActivityPubUrl(video), comments: getLocalVideoCommentsActivityPubUrl(video), + attributedTo: [ { type: 'Person', @@ -456,7 +453,9 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoObject { type: 'Group', id: video.VideoChannel.Actor.url } - ] + ], + + ...buildLiveAPAttributes(video) } } @@ -500,3 +499,23 @@ export { getPrivacyLabel, getStateLabel } + +// --------------------------------------------------------------------------- + +function buildLiveAPAttributes (video: MVideoAP) { + if (!video.isLive) { + return { + isLiveBroadcast: false, + liveSaveReplay: null, + permanentLive: null, + latencyMode: null + } + } + + return { + isLiveBroadcast: true, + liveSaveReplay: video.VideoLive.saveReplay, + permanentLive: video.VideoLive.permanentLive, + latencyMode: video.VideoLive.latencyMode + } +} diff --git a/server/models/video/sql/video/shared/video-table-attributes.ts b/server/models/video/sql/video/shared/video-table-attributes.ts index f4d9e99fd..e2c1c0f6d 100644 --- a/server/models/video/sql/video/shared/video-table-attributes.ts +++ b/server/models/video/sql/video/shared/video-table-attributes.ts @@ -158,6 +158,7 @@ export class VideoTableAttributes { 'streamKey', 'saveReplay', 'permanentLive', + 'latencyMode', 'videoId', 'createdAt', 'updatedAt' diff --git a/server/models/video/video-live.ts b/server/models/video/video-live.ts index e3fdcc0ba..904f712b4 100644 --- a/server/models/video/video-live.ts +++ b/server/models/video/video-live.ts @@ -1,11 +1,11 @@ import { AllowNull, BelongsTo, Column, CreatedAt, DataType, DefaultScope, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript' +import { CONFIG } from '@server/initializers/config' import { WEBSERVER } from '@server/initializers/constants' import { MVideoLive, MVideoLiveVideo } from '@server/types/models' +import { LiveVideo, LiveVideoLatencyMode, VideoState } from '@shared/models' import { AttributesOnly } from '@shared/typescript-utils' -import { LiveVideo, VideoState } from '@shared/models' import { VideoModel } from './video' import { VideoBlacklistModel } from './video-blacklist' -import { CONFIG } from '@server/initializers/config' @DefaultScope(() => ({ include: [ @@ -44,6 +44,10 @@ export class VideoLiveModel extends Model @Column permanentLive: boolean + @AllowNull(false) + @Column + latencyMode: LiveVideoLatencyMode + @CreatedAt createdAt: Date @@ -113,7 +117,8 @@ export class VideoLiveModel extends Model streamKey: this.streamKey, permanentLive: this.permanentLive, - saveReplay: this.saveReplay + saveReplay: this.saveReplay, + latencyMode: this.latencyMode } } } diff --git a/server/tests/api/check-params/config.ts b/server/tests/api/check-params/config.ts index ce067a892..900f642c2 100644 --- a/server/tests/api/check-params/config.ts +++ b/server/tests/api/check-params/config.ts @@ -125,6 +125,9 @@ describe('Test config API validators', function () { enabled: true, allowReplay: false, + latencySetting: { + enabled: false + }, maxDuration: 30, maxInstanceLives: -1, maxUserLives: 50, diff --git a/server/tests/api/check-params/live.ts b/server/tests/api/check-params/live.ts index 8aee6164c..b253f5e20 100644 --- a/server/tests/api/check-params/live.ts +++ b/server/tests/api/check-params/live.ts @@ -3,7 +3,7 @@ import 'mocha' import { omit } from 'lodash' import { buildAbsoluteFixturePath } from '@shared/core-utils' -import { HttpStatusCode, VideoCreateResult, VideoPrivacy } from '@shared/models' +import { HttpStatusCode, LiveVideoLatencyMode, VideoCreateResult, VideoPrivacy } from '@shared/models' import { cleanupTests, createSingleServer, @@ -38,6 +38,9 @@ describe('Test video lives API validator', function () { newConfig: { live: { enabled: true, + latencySetting: { + enabled: false + }, maxInstanceLives: 20, maxUserLives: 20, allowReplay: true @@ -81,7 +84,8 @@ describe('Test video lives API validator', function () { privacy: VideoPrivacy.PUBLIC, channelId, saveReplay: false, - permanentLive: false + permanentLive: false, + latencyMode: LiveVideoLatencyMode.DEFAULT } }) @@ -214,6 +218,18 @@ describe('Test video lives API validator', function () { await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields }) }) + it('Should fail with bad latency setting', async function () { + const fields = { ...baseCorrectParams, latencyMode: 42 } + + await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields }) + }) + + it('Should fail to set latency if the server does not allow it', async function () { + const fields = { ...baseCorrectParams, latencyMode: LiveVideoLatencyMode.HIGH_LATENCY } + + await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields, expectedStatus: HttpStatusCode.FORBIDDEN_403 }) + }) + it('Should succeed with the correct parameters', async function () { this.timeout(30000) @@ -393,6 +409,18 @@ describe('Test video lives API validator', function () { await command.update({ videoId: video.id, fields, expectedStatus: HttpStatusCode.BAD_REQUEST_400 }) }) + it('Should fail with bad latency setting', async function () { + const fields = { latencyMode: 42 } + + await command.update({ videoId: video.id, fields, expectedStatus: HttpStatusCode.BAD_REQUEST_400 }) + }) + + it('Should fail to set latency if the server does not allow it', async function () { + const fields = { latencyMode: LiveVideoLatencyMode.HIGH_LATENCY } + + await command.update({ videoId: video.id, fields, expectedStatus: HttpStatusCode.FORBIDDEN_403 }) + }) + it('Should succeed with the correct params', async function () { await command.update({ videoId: video.id, fields: { saveReplay: false } }) await command.update({ videoId: video.uuid, fields: { saveReplay: false } }) diff --git a/server/tests/api/live/live.ts b/server/tests/api/live/live.ts index d756a02c1..aeb039696 100644 --- a/server/tests/api/live/live.ts +++ b/server/tests/api/live/live.ts @@ -10,6 +10,7 @@ import { HttpStatusCode, LiveVideo, LiveVideoCreate, + LiveVideoLatencyMode, VideoDetails, VideoPrivacy, VideoState, @@ -52,6 +53,9 @@ describe('Test live', function () { live: { enabled: true, allowReplay: true, + latencySetting: { + enabled: true + }, transcoding: { enabled: false } @@ -85,6 +89,7 @@ describe('Test live', function () { commentsEnabled: false, downloadEnabled: false, saveReplay: true, + latencyMode: LiveVideoLatencyMode.SMALL_LATENCY, privacy: VideoPrivacy.PUBLIC, previewfile: 'video_short1-preview.webm.jpg', thumbnailfile: 'video_short1.webm.jpg' @@ -131,6 +136,7 @@ describe('Test live', function () { } expect(live.saveReplay).to.be.true + expect(live.latencyMode).to.equal(LiveVideoLatencyMode.SMALL_LATENCY) } }) @@ -175,7 +181,7 @@ describe('Test live', function () { it('Should update the live', async function () { this.timeout(10000) - await commands[0].update({ videoId: liveVideoUUID, fields: { saveReplay: false } }) + await commands[0].update({ videoId: liveVideoUUID, fields: { saveReplay: false, latencyMode: LiveVideoLatencyMode.DEFAULT } }) await waitJobs(servers) }) @@ -192,6 +198,7 @@ describe('Test live', function () { } expect(live.saveReplay).to.be.false + expect(live.latencyMode).to.equal(LiveVideoLatencyMode.DEFAULT) } }) diff --git a/server/tests/api/server/config.ts b/server/tests/api/server/config.ts index 565b2953a..5028b65e6 100644 --- a/server/tests/api/server/config.ts +++ b/server/tests/api/server/config.ts @@ -82,6 +82,7 @@ function checkInitialConfig (server: PeerTubeServer, data: CustomConfig) { expect(data.live.enabled).to.be.false expect(data.live.allowReplay).to.be.false + expect(data.live.latencySetting.enabled).to.be.true expect(data.live.maxDuration).to.equal(-1) expect(data.live.maxInstanceLives).to.equal(20) expect(data.live.maxUserLives).to.equal(3) @@ -185,6 +186,7 @@ function checkUpdatedConfig (data: CustomConfig) { expect(data.live.enabled).to.be.true expect(data.live.allowReplay).to.be.true + expect(data.live.latencySetting.enabled).to.be.false expect(data.live.maxDuration).to.equal(5000) expect(data.live.maxInstanceLives).to.equal(-1) expect(data.live.maxUserLives).to.equal(10) @@ -326,6 +328,9 @@ const newCustomConfig: CustomConfig = { live: { enabled: true, allowReplay: true, + latencySetting: { + enabled: false + }, maxDuration: 5000, maxInstanceLives: -1, maxUserLives: 10, diff --git a/shared/models/activitypub/objects/video-torrent-object.ts b/shared/models/activitypub/objects/video-torrent-object.ts index 9faa3bb87..23d54bdbd 100644 --- a/shared/models/activitypub/objects/video-torrent-object.ts +++ b/shared/models/activitypub/objects/video-torrent-object.ts @@ -5,7 +5,7 @@ import { ActivityTagObject, ActivityUrlObject } from './common-objects' -import { VideoState } from '../../videos' +import { LiveVideoLatencyMode, VideoState } from '../../videos' export interface VideoObject { type: 'Video' @@ -25,6 +25,7 @@ export interface VideoObject { isLiveBroadcast: boolean liveSaveReplay: boolean permanentLive: boolean + latencyMode: LiveVideoLatencyMode commentsEnabled: boolean downloadEnabled: boolean diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index c9e7654de..5df606566 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts @@ -131,6 +131,10 @@ export interface CustomConfig { allowReplay: boolean + latencySetting: { + enabled: boolean + } + maxDuration: number maxInstanceLives: number maxUserLives: number diff --git a/shared/models/server/server-config.model.ts b/shared/models/server/server-config.model.ts index b06019bb8..d7fbed13c 100644 --- a/shared/models/server/server-config.model.ts +++ b/shared/models/server/server-config.model.ts @@ -149,10 +149,14 @@ export interface ServerConfig { live: { enabled: boolean + allowReplay: boolean + latencySetting: { + enabled: boolean + } + maxDuration: number maxInstanceLives: number maxUserLives: number - allowReplay: boolean transcoding: { enabled: boolean diff --git a/shared/models/videos/live/index.ts b/shared/models/videos/live/index.ts index a36f42a7d..68f32092a 100644 --- a/shared/models/videos/live/index.ts +++ b/shared/models/videos/live/index.ts @@ -1,5 +1,6 @@ export * from './live-video-create.model' export * from './live-video-event-payload.model' export * from './live-video-event.type' +export * from './live-video-latency-mode.enum' export * from './live-video-update.model' export * from './live-video.model' diff --git a/shared/models/videos/live/live-video-create.model.ts b/shared/models/videos/live/live-video-create.model.ts index caa7acc17..49ccaf45b 100644 --- a/shared/models/videos/live/live-video-create.model.ts +++ b/shared/models/videos/live/live-video-create.model.ts @@ -1,6 +1,8 @@ +import { LiveVideoLatencyMode } from '.' import { VideoCreate } from '../video-create.model' export interface LiveVideoCreate extends VideoCreate { saveReplay?: boolean permanentLive?: boolean + latencyMode?: LiveVideoLatencyMode } diff --git a/shared/models/videos/live/live-video-latency-mode.enum.ts b/shared/models/videos/live/live-video-latency-mode.enum.ts new file mode 100644 index 000000000..4285e1d41 --- /dev/null +++ b/shared/models/videos/live/live-video-latency-mode.enum.ts @@ -0,0 +1,5 @@ +export const enum LiveVideoLatencyMode { + DEFAULT = 1, + HIGH_LATENCY = 2, + SMALL_LATENCY = 3 +} diff --git a/shared/models/videos/live/live-video-update.model.ts b/shared/models/videos/live/live-video-update.model.ts index a39c44797..93bb4d30d 100644 --- a/shared/models/videos/live/live-video-update.model.ts +++ b/shared/models/videos/live/live-video-update.model.ts @@ -1,4 +1,7 @@ +import { LiveVideoLatencyMode } from './live-video-latency-mode.enum' + export interface LiveVideoUpdate { permanentLive?: boolean saveReplay?: boolean + latencyMode?: LiveVideoLatencyMode } diff --git a/shared/models/videos/live/live-video.model.ts b/shared/models/videos/live/live-video.model.ts index 815a93804..2d3169941 100644 --- a/shared/models/videos/live/live-video.model.ts +++ b/shared/models/videos/live/live-video.model.ts @@ -1,8 +1,12 @@ +import { LiveVideoLatencyMode } from './live-video-latency-mode.enum' + export interface LiveVideo { rtmpUrl: string rtmpsUrl: string streamKey: string + saveReplay: boolean permanentLive: boolean + latencyMode: LiveVideoLatencyMode } diff --git a/shared/server-commands/server/config-command.ts b/shared/server-commands/server/config-command.ts index c0042060b..e47a0d346 100644 --- a/shared/server-commands/server/config-command.ts +++ b/shared/server-commands/server/config-command.ts @@ -292,6 +292,9 @@ export class ConfigCommand extends AbstractCommand { live: { enabled: true, allowReplay: false, + latencySetting: { + enabled: false + }, maxDuration: -1, maxInstanceLives: -1, maxUserLives: 50, diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml index 70f2d97f5..5ce1f228a 100644 --- a/support/doc/api/openapi.yaml +++ b/support/doc/api/openapi.yaml @@ -2295,6 +2295,9 @@ paths: permanentLive: description: User can stream multiple times in a permanent live type: boolean + latencyMode: + description: User can select live latency mode if enabled by the instance + $ref: '#/components/schemas/LiveVideoLatencyMode' thumbnailfile: description: Live video/replay thumbnail file type: string @@ -5291,6 +5294,14 @@ components: description: 'Admin flags for the user (None = `0`, Bypass video blocklist = `1`)' example: 1 + LiveVideoLatencyMode: + type: integer + enum: + - 1 + - 2 + - 3 + description: 'The live latency mode (Default = `1`, HIght latency = `2`, Small Latency = `3`)' + VideoStateConstant: properties: id: @@ -7482,6 +7493,9 @@ components: permanentLive: description: User can stream multiple times in a permanent live type: boolean + latencyMode: + description: User can select live latency mode if enabled by the instance + $ref: '#/components/schemas/LiveVideoLatencyMode' LiveVideoResponse: properties: @@ -7497,8 +7511,9 @@ components: permanentLive: description: User can stream multiple times in a permanent live type: boolean - - + latencyMode: + description: User can select live latency mode if enabled by the instance + $ref: '#/components/schemas/LiveVideoLatencyMode' callbacks: searchIndex: