From: Chocobozzz Date: Wed, 21 Jul 2021 13:45:42 +0000 (+0200) Subject: Merge branch 'constant-registry' into develop X-Git-Tag: v3.4.0-rc.1~201 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=5f26f13b3c16ac5ae0a3b0a7142d84a9528cf565;hp=2b9f672b58bc2c13c96ee79f522003979e4bfc02;p=github%2FChocobozzz%2FPeerTube.git Merge branch 'constant-registry' into develop --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 714ac7f9f..2253c5b6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v3.3.0-rc.1 +## v3.3.0 ### IMPORTANT NOTES @@ -78,6 +78,11 @@ * Correctly handle broken plugin install * Fix channel deletion when it has videos * Force TLS for webfinger in production + * Correctly support `wav` mimetype + * Fix default video privacy when plugins deleted private video privacy + * Fix subscribe hotkey + * Fix HTTP fallback with a video that does not have webtorrent files + * Fill video information when importing a peertube video ## v3.2.1 diff --git a/client/package.json b/client/package.json index efdc0b84b..30cb3a188 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "peertube-client", - "version": "3.3.0-rc.1", + "version": "3.3.0", "private": true, "license": "AGPL-3.0", "author": { diff --git a/client/src/app/+admin/users/user-edit/user-create.component.ts b/client/src/app/+admin/users/user-edit/user-create.component.ts index da333240c..c26ad1208 100644 --- a/client/src/app/+admin/users/user-edit/user-create.component.ts +++ b/client/src/app/+admin/users/user-edit/user-create.component.ts @@ -1,5 +1,5 @@ import { Component, OnInit } from '@angular/core' -import { ActivatedRoute, Router } from '@angular/router' +import { Router } from '@angular/router' import { ConfigService } from '@app/+admin/config/shared/config.service' import { AuthService, Notifier, ScreenService, ServerService, UserService } from '@app/core' import { @@ -30,7 +30,6 @@ export class UserCreateComponent extends UserEdit implements OnInit { protected configService: ConfigService, protected screenService: ScreenService, protected auth: AuthService, - private route: ActivatedRoute, private router: Router, private notifier: Notifier, private userService: UserService @@ -87,8 +86,7 @@ export class UserCreateComponent extends UserEdit implements OnInit { } isPasswordOptional () { - const serverConfig = this.route.snapshot.data.serverConfig - return serverConfig.email.enabled + return this.serverConfig.email.enabled } getFormButtonTitle () { 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 aebd53318..90a0e8f52 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 @@ -185,6 +185,7 @@ export class VideoEditComponent implements OnInit, OnDestroy { this.serverService.getVideoPrivacies() .subscribe(privacies => { this.videoPrivacies = this.videoService.explainedPrivacyLabels(privacies).videoPrivacies + if (this.schedulePublicationPossible) { this.videoPrivacies.push({ id: this.SPECIAL_SCHEDULED_PRIVACY, diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts b/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts index 01c9fcb16..db25dc6be 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts +++ b/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts @@ -62,7 +62,7 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, AfterView const video: LiveVideoCreate = { name, - privacy: VideoPrivacy.PRIVATE, + privacy: this.highestPrivacy, nsfw: this.serverConfig.instance.isNSFW, waitTranscoding: true, commentsEnabled: true, diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts b/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts index 172dd5ba5..62aaeb019 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts +++ b/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts @@ -79,7 +79,7 @@ export class VideoImportTorrentComponent extends VideoSend implements OnInit, Af this.isImportingVideo = true const videoUpdate: VideoUpdate = { - privacy: VideoPrivacy.PRIVATE, + privacy: this.highestPrivacy, waitTranscoding: false, commentsEnabled: true, downloadEnabled: true, diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts b/client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts index 2994d05fa..3243b4d38 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts +++ b/client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts @@ -66,7 +66,7 @@ export class VideoImportUrlComponent extends VideoSend implements OnInit, AfterV this.isImportingVideo = true const videoUpdate: VideoUpdate = { - privacy: VideoPrivacy.PRIVATE, + privacy: this.highestPrivacy, waitTranscoding: false, commentsEnabled: true, downloadEnabled: true, diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-send.ts b/client/src/app/+videos/+video-edit/video-add-components/video-send.ts index 0e7a26a47..ce8de049d 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-send.ts +++ b/client/src/app/+videos/+video-edit/video-add-components/video-send.ts @@ -15,8 +15,8 @@ export abstract class VideoSend extends FormReactive implements OnInit { videoPrivacies: VideoConstant[] = [] videoCaptions: VideoCaptionEdit[] = [] - firstStepPrivacyId = 0 - firstStepChannelId = 0 + firstStepPrivacyId: VideoPrivacy + firstStepChannelId: number abstract firstStepDone: EventEmitter abstract firstStepError: EventEmitter @@ -24,11 +24,15 @@ export abstract class VideoSend extends FormReactive implements OnInit { protected loadingBar: LoadingBarService protected notifier: Notifier protected authService: AuthService + protected serverService: ServerService protected videoService: VideoService protected videoCaptionService: VideoCaptionService + protected serverConfig: HTMLServerConfig + protected highestPrivacy: VideoPrivacy + abstract canDeactivate (): CanComponentDeactivateResult ngOnInit () { @@ -49,6 +53,8 @@ export abstract class VideoSend extends FormReactive implements OnInit { this.videoPrivacies = videoPrivacies this.firstStepPrivacyId = defaultPrivacyId + + this.highestPrivacy = this.videoService.getHighestAvailablePrivacy(privacies) }) } diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts index ec027f257..627de33c0 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts +++ b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts @@ -265,7 +265,7 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy downloadEnabled: true, channelId: this.firstStepChannelId, nsfw: this.serverConfig.instance.isNSFW, - privacy: VideoPrivacy.PRIVATE.toString(), + privacy: this.highestPrivacy.toString(), filename: file.name, previewfile: previewfile as any } diff --git a/client/src/app/+videos/+video-watch/shared/information/privacy-concerns.component.scss b/client/src/app/+videos/+video-watch/shared/information/privacy-concerns.component.scss index b42be318f..a6479c7ec 100644 --- a/client/src/app/+videos/+video-watch/shared/information/privacy-concerns.component.scss +++ b/client/src/app/+videos/+video-watch/shared/information/privacy-concerns.component.scss @@ -25,6 +25,13 @@ } } +// Avoid higher z-index when overlay on touchscreens +:host-context(.menu-open) { + .privacy-concerns { + z-index: z(overlay) - 1; + } +} + // Or if we are in the small view @media screen and (max-width: $small-view) { .privacy-concerns { diff --git a/client/src/app/menu/menu.component.ts b/client/src/app/menu/menu.component.ts index be6e8af51..627a8712f 100644 --- a/client/src/app/menu/menu.component.ts +++ b/client/src/app/menu/menu.component.ts @@ -122,6 +122,9 @@ export class MenuComponent implements OnInit { .subscribe(() => this.buildUserLanguages()) }) + this.serverService.getConfig() + .subscribe(config => this.serverConfig = config) + this.modalService.openQuickSettingsSubject .subscribe(() => this.openQuickSettings()) } diff --git a/client/src/app/shared/shared-main/video/video.service.ts b/client/src/app/shared/shared-main/video/video.service.ts index 1c1d06291..49d6fc1c7 100644 --- a/client/src/app/shared/shared-main/video/video.service.ts +++ b/client/src/app/shared/shared-main/video/video.service.ts @@ -404,6 +404,18 @@ export class VideoService implements VideosProvider { } } + getHighestAvailablePrivacy (serverPrivacies: VideoConstant[]) { + const order = [ VideoPrivacy.PRIVATE, VideoPrivacy.INTERNAL, VideoPrivacy.UNLISTED, VideoPrivacy.PUBLIC ] + + for (const privacy of order) { + if (serverPrivacies.find(p => p.id === privacy)) { + return privacy + } + } + + throw new Error('No highest privacy available') + } + nsfwPolicyToParam (nsfwPolicy: NSFWPolicyType) { return nsfwPolicy === 'do_not_list' ? 'false' diff --git a/client/src/locale/angular.ar.xlf b/client/src/locale/angular.ar.xlf index f95903729..f7102b68d 100644 --- a/client/src/locale/angular.ar.xlf +++ b/client/src/locale/angular.ar.xlf @@ -1846,9 +1846,9 @@ Create user إنشاء مستخدِم - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters معاملات الجدول @@ -5869,13 +5869,13 @@ The link will expire within 1 hour. Scheduled مجدول - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date أخفِ الفيديو حتى تاريخ معين - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image صورة خلفية الفيديو @@ -7371,8 +7371,8 @@ The link will expire within 1 hour. User created. أُنشئ المستخدم . - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user أنشئ مستخدما @@ -8152,7 +8152,7 @@ The link will expire within 1 hour. الاشتراك في الحساب - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTS diff --git a/client/src/locale/angular.bn-BD.xlf b/client/src/locale/angular.bn-BD.xlf index bd95bf41f..b11b85a4d 100644 --- a/client/src/locale/angular.bn-BD.xlf +++ b/client/src/locale/angular.bn-BD.xlf @@ -220,7 +220,7 @@ SS - সেসে + সেকে node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts 57 @@ -812,7 +812,7 @@ Blacklisted - + অবরুদ্ধ তালিকাকৃত src/app/shared/video/video-miniature.component.html 41 @@ -1548,7 +1548,7 @@ In Recently added, Trending, Local, Most liked and Search pages - + সাম্প্রতিক যুক্ত, চলমান, স্থানীয়, সবচেয়ে পছন্দকৃত এবং অনুসন্ধান পাতা src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html 26 @@ -2384,7 +2384,7 @@ Trending - + চলমান src/app/menu/menu.component.html 116 @@ -5932,7 +5932,7 @@ Trending videos - + চলমান ভিডিও src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 267 @@ -9612,7 +9612,7 @@ Go to the trending videos page - + চলমান ভিডিও পাতায় যাও src/app/app.component.ts 1 @@ -12310,7 +12310,7 @@ Trending for the last 24 hours - + শেষ ২৪ ঘণ্টায় চলমান src/app/videos/video-list/video-trending.component.ts 1 @@ -12318,7 +12318,7 @@ Trending videos are those totalizing the greatest number of views during the last 24 hours - + শেষ ২৪ ঘণ্টায় যেসব ভিডিও সবচেয়ে বেশি দর্শক পেয়েছে তাই চলমান src/app/videos/video-list/video-trending.component.ts 1 @@ -12326,7 +12326,7 @@ Trending for the last days - + শেষ দিনে চলমান src/app/videos/video-list/video-trending.component.ts 1 @@ -12334,7 +12334,7 @@ Trending videos are those totalizing the greatest number of views during the last days - + শেষ দিনে যেসব ভিডিও সবচেয়ে বেশি দর্শক পেয়েছে তাই চলমান src/app/videos/video-list/video-trending.component.ts 1 diff --git a/client/src/locale/angular.ca-ES.xlf b/client/src/locale/angular.ca-ES.xlf index 2c40eb63c..38f39ab48 100644 --- a/client/src/locale/angular.ca-ES.xlf +++ b/client/src/locale/angular.ca-ES.xlf @@ -1,16 +1,17 @@ - - + - Close the left menuClose the left menu - - src/app/app.component.ts118 - Open the left menuOpen the left menu - - src/app/app.component.ts120 - + Close the left menu + Tancar el menú de l'esquerra + src/app/app.component.ts118 + + + Open the left menu + Obrir el menú de l'esquerra + src/app/app.component.ts120 + You don't have notifications. No teniu notificacions. @@ -94,13 +95,14 @@ - - 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 La notificació es refereix a un comentari que ara no està disponible - - src/app/shared/shared-main/users/user-notifications.component.html107src/app/shared/shared-main/users/user-notifications.component.html172 + src/app/shared/shared-main/users/user-notifications.component.html107 + src/app/shared/shared-main/users/user-notifications.component.html172 + Your video has been published El teu vídeo @@ -108,8 +110,8 @@ ha sigut publicat - - src/app/shared/shared-main/users/user-notifications.component.html116 + src/app/shared/shared-main/users/user-notifications.component.html116 + Your video import succeeded @@ -117,8 +119,8 @@ s'ha importat correctament - - src/app/shared/shared-main/users/user-notifications.component.html124 + src/app/shared/shared-main/users/user-notifications.component.html124 + Your video import failed @@ -126,8 +128,8 @@ ha fallat - - 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 @@ -135,8 +137,8 @@ registrat en la vostra instància - - src/app/shared/shared-main/users/user-notifications.component.html140 + src/app/shared/shared-main/users/user-notifications.component.html140 + is following your channel your account @@ -149,15 +151,16 @@ el vostre compte - - 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 + et menciona en el vídeo src/app/shared/shared-main/users/user-notifications.component.html 164 - Your instance has a new follower () awaiting your approval La vostra instància te @@ -167,8 +170,8 @@ awaiting your approval - - src/app/shared/shared-main/users/user-notifications.component.html181 + src/app/shared/shared-main/users/user-notifications.component.html181 + Your instance automatically followed La vostra instància va seguir automàticament @@ -176,15 +179,19 @@ - - src/app/shared/shared-main/users/user-notifications.component.html190 - A new version of the plugin/theme is available: A new version of the plugin/theme is available: + src/app/shared/shared-main/users/user-notifications.component.html190 + + + A new version of the plugin/theme is available: + 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 @@ -193,24 +200,40 @@ The notification points to content now unavailable La notificació apunta cap a un contingut que no és disponible - - src/app/shared/shared-main/users/user-notifications.component.html214 + src/app/shared/shared-main/users/user-notifications.component.html214 + Change your avatar Canvieu l'avatar - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html18 - Remove avatarRemove avatar - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html40 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html18 + + + Remove avatar + Borrar avatar + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html40 + - - src/app/+videos/+video-watch/video-watch.component.html77src/app/menu/menu.component.html105src/app/shared/shared-main/buttons/action-dropdown.component.html22src/app/shared/shared-main/misc/top-menu-dropdown.component.html14src/app/shared/shared-main/misc/top-menu-dropdown.component.html24src/app/shared/shared-moderation/batch-domains-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 - My watch historyMy watch history - - src/app/+my-library/my-history/my-history.component.html3src/app/+my-library/my-history/my-history.component.ts67 + src/app/+videos/+video-watch/video-watch.component.html77 + src/app/menu/menu.component.html105 + src/app/shared/shared-main/buttons/action-dropdown.component.html22 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html14 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html24 + src/app/shared/shared-moderation/batch-domains-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 + + + My watch history + My watch history + src/app/+my-library/my-history/my-history.component.html3 + src/app/+my-library/my-history/my-history.component.ts67 + Save to Guardar a @@ -219,8 +242,8 @@ Options Opcions - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + Start at Comença a @@ -262,34 +285,41 @@ Display name Mostra el nom - - - - - - - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html60src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html60src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html33src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html33src/app/+signup/+register/register-step-user.component.html8src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html60 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html60 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html33 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html33 + src/app/+signup/+register/register-step-user.component.html8 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71 + Create Crea - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html8src/app/+admin/users/user-edit/user-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts103src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+admin/users/user-edit/user-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts103 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html8 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.html81 + video vídeo - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts288src/app/shared/shared-video-miniature/video-download.component.ts55 - The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. - - src/app/shared/shared-video-miniature/video-download.component.html19 - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts288 + src/app/shared/shared-video-miniature/video-download.component.ts55 + + + The following link contains a private token and should not be shared with anyone. + El següent enllaç conté un token privat i no es deuria compartir amb cap persona. + src/app/shared/shared-video-miniature/video-download.component.html19 + + + + src/app/shared/shared-video-miniature/video-download.component.html 39 @@ -298,76 +328,84 @@ subtitles subtítols - - src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/shared/shared-video-miniature/video-download.component.ts56 + Format Format - - src/app/shared/shared-video-miniature/video-download.component.html74 + src/app/shared/shared-video-miniature/video-download.component.html74 + - - - - - - - src/app/shared/shared-video-miniature/video-download.component.html65src/app/shared/shared-video-miniature/video-download.component.html76src/app/shared/shared-video-miniature/video-download.component.html88 + + src/app/shared/shared-video-miniature/video-download.component.html65 + src/app/shared/shared-video-miniature/video-download.component.html76 + src/app/shared/shared-video-miniature/video-download.component.html88 + Video stream Flux de vídeo - - src/app/shared/shared-video-miniature/video-download.component.html85 + src/app/shared/shared-video-miniature/video-download.component.html85 + Audio stream Flux d'àudio - - src/app/shared/shared-video-miniature/video-download.component.html97 + src/app/shared/shared-video-miniature/video-download.component.html97 + Direct download Baixada directa - - src/app/shared/shared-video-miniature/video-download.component.html116 + src/app/shared/shared-video-miniature/video-download.component.html116 + Torrent (.torrent file) Torrent (fitxer .torrent) - - src/app/shared/shared-video-miniature/video-download.component.html121 - Advanced Advanced - - src/app/shared/shared-video-miniature/video-download.component.html135 - Simple Simple - - src/app/shared/shared-video-miniature/video-download.component.html143 + src/app/shared/shared-video-miniature/video-download.component.html121 + + + Advanced + Avançat + src/app/shared/shared-video-miniature/video-download.component.html135 + + + Simple + Simple + src/app/shared/shared-video-miniature/video-download.component.html143 + video vídeo - - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289src/app/shared/shared-video-miniature/video-download.component.ts54 - Your video quota is exceeded with this video (video size: , used: , quota: )Your video quota is exceeded with this video (video size: , used: , quota: ) - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts323 - 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.ts341 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289 + src/app/shared/shared-video-miniature/video-download.component.ts54 + + + Your video quota is exceeded with this video (video size: , used: , quota: ) + La seua cuota de vídeo s'excedeix amb aquest vídeo (tamany del vídeo: , utilitzat: , quota: ) + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts323 + + + Your daily video quota is exceeded with this video (video size: , used: , quota: ) + La seua quota diària de vídeo s'excedeix amb aquest vídeo (tamany del vídeo: , utilitzat: , quota: ) + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts341 + subtitles subtítols - - src/app/shared/shared-video-miniature/video-download.component.ts55 + src/app/shared/shared-video-miniature/video-download.component.ts55 + Cancel Cancel·lar - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html19 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 + src/app/shared/shared-video-miniature/videos-selection.component.html19 + Download Baixa - - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272src/app/shared/shared-video-miniature/video-download.component.html4src/app/shared/shared-video-miniature/video-download.component.html156 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + src/app/shared/shared-video-miniature/video-download.component.html4 + src/app/shared/shared-video-miniature/video-download.component.html156 + Reason... Motiu... @@ -376,22 +414,34 @@ Cancel Cancel·lar - - src/app/shared/shared-video-miniature/videos-selection.component.html19 - No results.No results. - - src/app/+videos/video-list/overview/video-overview.component.html4src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/videos-selection.component.ts34 + src/app/shared/shared-video-miniature/videos-selection.component.html19 + + + No results. + No results. + src/app/+videos/video-list/overview/video-overview.component.html4 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/videos-selection.component.ts34 + Submit Envia - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html52src/app/+my-library/my-videos/modals/video-change-ownership.component.html27src/app/shared/shared-moderation/report-modals/report.component.html58src/app/shared/shared-moderation/report-modals/report.component.html58src/app/shared/shared-moderation/report-modals/video-report.component.html96src/app/shared/shared-moderation/video-block.component.html42 - The contact form is not enabled on this instance.The contact form is not enabled on this instance. + src/app/+about/about-instance/contact-admin-modal.component.html52 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html27 + src/app/shared/shared-moderation/report-modals/report.component.html58 + src/app/shared/shared-moderation/report-modals/report.component.html58 + src/app/shared/shared-moderation/report-modals/video-report.component.html96 + src/app/shared/shared-moderation/video-block.component.html42 + + + The contact form is not enabled on this instance. + El formulari de contacte no està habilitat en aquesta instància. src/app/+about/about-instance/contact-admin-modal.component.html 56 @@ -427,78 +477,87 @@ Unlisted No llistat - - - 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 Privat - - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10src/app/shared/shared-video-miniature/video-miniature.component.html7src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10 + src/app/shared/shared-video-miniature/video-miniature.component.html7 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + {VAR_PLURAL, plural, =1 {1 view} other { views}} {VAR_PLURAL, plural, =1 {1 view} other { vistes} } - - src/app/shared/shared-video/video-views-counter.component.html3 - - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16src/app/shared/shared-video/video-views-counter.component.html3src/app/shared/shared-video/video-views-counter.component.html7 - {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}}{VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} + src/app/shared/shared-video/video-views-counter.component.html3 + + + + + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/shared/shared-video/video-views-counter.component.html3 + src/app/shared/shared-video/video-views-counter.component.html7 + + + {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} + {VAR_PLURAL, plural, =1 {1 espectador} other { espectadors}} src/app/shared/shared-video/video-views-counter.component.html 7 - - + + + + src/app/shared/shared-video/video-views-counter.component.html 7,8 - - Cannot fetch information of this remote accountCannot fetch information of this remote account + + + Cannot fetch information of this remote account + Cannot fetch information of this remote account src/app/shared/shared-user-subscription/remote-subscribe.component.ts 60 - Blocked Bloquejat - - src/app/shared/shared-video-miniature/video-miniature.component.html57 + src/app/shared/shared-video-miniature/video-miniature.component.html57 + Sensitive Sensible - - src/app/shared/shared-video-miniature/video-miniature.component.html62 + src/app/shared/shared-video-miniature/video-miniature.component.html62 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {Cap vídeo} =1 {1 vídeo} other { vídeos} } - - src/app/+my-library/+my-video-channels/my-video-channels.component.html30src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9 + - - - - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + Updated Actualitzat - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + Unavailable No disponible @@ -507,10 +566,10 @@ Deleted Suprimit - - - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html47src/app/shared/shared-abuse-list/abuse-list-table.component.html91src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html47 + src/app/shared/shared-abuse-list/abuse-list-table.component.html91 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + Edit starts/stops at Edita iniciar/parar a @@ -519,13 +578,13 @@ Save Desa - - - - - - - src/app/shared/shared-user-settings/user-interface-settings.component.html16src/app/shared/shared-user-settings/user-interface-settings.component.html16src/app/shared/shared-user-settings/user-video-settings.component.html77src/app/shared/shared-user-settings/user-video-settings.component.html77src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82src/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-interface-settings.component.html16 + src/app/shared/shared-user-settings/user-video-settings.component.html77 + src/app/shared/shared-user-settings/user-video-settings.component.html77 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html82 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html38 + Delete from Suprimir de @@ -536,30 +595,57 @@ No results. Sense resultats. - - - - - - - - - - src/app/+videos/video-list/overview/video-overview.component.html4src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44src/app/shared/shared-video-miniature/abstract-video-list.html44 - BestBest - + src/app/+videos/video-list/overview/video-overview.component.html4 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + src/app/shared/shared-video-miniature/abstract-video-list.html44 + + + Best + El Millor A variant of Trending videos based on the number of recent interactions, minus user history - src/app/+videos/video-list/trending/video-trending-header.component.ts41 - 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/trending/video-trending-header.component.ts44 + src/app/+videos/video-list/trending/video-trending-header.component.ts41 + + + Videos with the most interactions for recent videos, minus user history + Vídeos amb més interaccions per a vídeos recents, menys l'historial d'usuari. + src/app/+videos/video-list/trending/video-trending-header.component.ts44 + Delete Esborra - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts87src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163src/app/+admin/users/user-list/user-list.component.ts81src/app/+admin/users/user-list/user-list.component.ts195src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.html50src/app/+my-library/my-videos/my-videos.component.ts115src/app/+my-library/my-videos/my-videos.component.ts142src/app/+my-library/my-videos/my-videos.component.ts183src/app/+videos/+video-edit/shared/video-edit.component.html178src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts144src/app/shared/shared-abuse-list/abuse-list-table.component.ts386src/app/shared/shared-abuse-list/abuse-list-table.component.ts421src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 - Only live videosOnly live videos + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts87 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + src/app/+admin/users/user-list/user-list.component.ts81 + src/app/+admin/users/user-list/user-list.component.ts195 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.html50 + src/app/+my-library/my-videos/my-videos.component.ts115 + src/app/+my-library/my-videos/my-videos.component.ts142 + src/app/+my-library/my-videos/my-videos.component.ts183 + src/app/+videos/+video-edit/shared/video-edit.component.html178 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts144 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts386 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts421 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + + + Only live videos + Només vídeos en directe src/app/+my-library/my-videos/my-videos.component.ts 53 @@ -568,17 +654,17 @@ Edit Editar - - - - - - - - - - - src/app/+admin/users/user-edit/user-edit.component.html11src/app/+admin/users/user-edit/user-edit.component.html11src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85src/app/+videos/+video-edit/shared/video-edit.component.html270src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + src/app/+admin/users/user-edit/user-edit.component.html11 + src/app/+admin/users/user-edit/user-edit.component.html11 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85 + src/app/+videos/+video-edit/shared/video-edit.component.html270 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html43 + Truncated preview Vista prèvia truncada @@ -587,13 +673,17 @@ Hide Hide - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-forms/input-toggle-hidden.component.ts38src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-forms/input-toggle-hidden.component.ts38 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + Show Mostra - - src/app/+admin/users/user-edit/user-password.component.html10src/app/shared/shared-forms/input-toggle-hidden.component.ts39 + src/app/+admin/users/user-edit/user-password.component.html10 + src/app/shared/shared-forms/input-toggle-hidden.component.ts39 + Complete preview Vista prèvia completa @@ -612,9 +702,11 @@ Using an ActivityPub account Utilitzant un compte d'ActivityPub - - src/app/shared/shared-user-subscription/subscribe-button.component.html54 - Subscribe with a remote account:Subscribe with a remote account: + src/app/shared/shared-user-subscription/subscribe-button.component.html54 + + + Subscribe with a remote account: + Subscriu-te amb un compte remot: src/app/shared/shared-user-subscription/subscribe-button.component.html 62 @@ -623,32 +715,33 @@ Subscribe with an account on this instance Subscriu-te amb un compte d'aquesta instància - - src/app/shared/shared-user-subscription/subscribe-button.component.html57 + src/app/shared/shared-user-subscription/subscribe-button.component.html57 + Subscribe with your local account Subscriure amb el vostre compte local - - src/app/shared/shared-user-subscription/subscribe-button.component.html58 - Published videos matching ""Published videos matching "" - - src/app/+accounts/account-search/account-search.component.ts94 + src/app/shared/shared-user-subscription/subscribe-button.component.html58 + + + Published videos matching "" + Publicats vídeos que coincideixen amb "" + src/app/+accounts/account-search/account-search.component.ts94 + The live stream will be automatically terminated. L'emissió en directe finalitzarà automàticament. src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205 - Using a syndication feed Fent us d'una ristra sindicada - RSS - - - src/app/shared/shared-user-subscription/subscribe-button.component.html68 + src/app/shared/shared-user-subscription/subscribe-button.component.html68 + Subscribe via RSS Subscriure via RSS - - src/app/shared/shared-user-subscription/subscribe-button.component.html69 + src/app/shared/shared-user-subscription/subscribe-button.component.html69 + PROFILE SETTINGS CONFIGURACIÓ DEL PERFIL @@ -663,21 +756,23 @@ src/app/shared/shared-user-subscription/remote-subscribe.component.html11 - - You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + + + You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + Pots subscriure't al canal amb qualsevol instància de fediverse compatible amb ActivityPub (PeerTube, Mastodon o Pleroma, per exemple). src/app/shared/shared-user-subscription/remote-subscribe.component.html 18,19 - - You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + + + You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). + Pots interactuar amb açó mitjançant qualsevol instància de fediverse compatible amb ActivityPub (PeerTube, Mastodon o Pleroma, per exemple). src/app/shared/shared-user-subscription/remote-subscribe.component.html 26,27 - - PeerTube version Versió de PeerTube @@ -742,10 +837,10 @@ Video quota Quota de vídeo - - - - src/app/shared/shared-instance/instance-features-table.component.html47src/app/+admin/users/user-edit/user-edit.component.html151src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/shared/shared-instance/instance-features-table.component.html47 + src/app/+admin/users/user-edit/user-edit.component.html151 + src/app/+admin/users/user-edit/user-edit.component.html151 + Unlimited ( per day) Sense limit @@ -758,15 +853,15 @@ Import Importar - - - - src/app/shared/shared-instance/instance-features-table.component.html92src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html44src/app/+videos/+video-edit/video-add-components/video-import-url.component.html36 + 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 + 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. Podeu importar qualsevol fitxer torrent que apunti a un fitxer multimèdia. Assegureu-vos que teniu els drets de difusió dels continguts a què apunteu, altrament podríeu tenir problemes legals i generar-los a la instància. - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html20 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html20 + HTTP import (YouTube, Vimeo, direct URL...) Importa HTTP (YouTube, Vimeo, URL directe ...) @@ -827,8 +922,9 @@ Federation Federació - - src/app/+admin/admin.component.ts26src/app/shared/shared-instance/instance-statistics.component.html58 + src/app/+admin/admin.component.ts26 + src/app/shared/shared-instance/instance-statistics.component.html58 + followers seguidors @@ -842,14 +938,16 @@ The upload failed La pujada ha fallat - - src/app/helpers/utils.ts186 + src/app/helpers/utils.ts186 + The connection was interrupted La connexió ha estat interrompuda - - src/app/helpers/utils.ts190 - The server encountered an errorThe server encountered an error + src/app/helpers/utils.ts190 + + + The server encountered an error + El servidor ha trobat un error src/app/helpers/utils.ts 193 @@ -858,23 +956,27 @@ Your file couldn't be transferred before the set timeout (usually 10min) El teu fitxer no ha pogut ser transferit dins el temps estipulat (normalment 10min) - - src/app/helpers/utils.ts196 + src/app/helpers/utils.ts196 + Your file was too large (max. size: ) El teu fitxer era massa gran (mida maxima permesa: ) - - src/app/helpers/utils.ts200 + src/app/helpers/utils.ts200 + User Usuari - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts405 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts405 + Ban Prohibició - - src/app/+admin/users/user-list/user-list.component.ts87src/app/shared/shared-moderation/user-ban-modal.component.html3src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269 + src/app/+admin/users/user-list/user-list.component.ts87 + src/app/shared/shared-moderation/user-ban-modal.component.html3 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269 + A banned user will no longer be able to login. Un usuari prohibit ja no podrà iniciar la sessió. @@ -883,30 +985,30 @@ Cancel Cancel·la - - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+login/login.component.html117src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/video-add-components/video-upload.component.html81src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73src/app/+videos/+video-watch/video-watch.component.ts408src/app/modal/confirm.component.html20src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-video-miniature/video-download.component.html152 + src/app/+about/about-instance/contact-admin-modal.component.html48 + src/app/+login/login.component.html117 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html22 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html69 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73 + src/app/+videos/+video-watch/video-watch.component.ts408 + src/app/modal/confirm.component.html20 + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26 + src/app/shared/shared-moderation/batch-domains-modal.component.html31 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/video-report.component.html92 + src/app/shared/shared-moderation/user-ban-modal.component.html26 + src/app/shared/shared-moderation/video-block.component.html38 + src/app/shared/shared-video-miniature/video-download.component.html152 + Ban this user Expulsa aquesta usuaria - - src/app/shared/shared-moderation/user-ban-modal.component.html30 + src/app/shared/shared-moderation/user-ban-modal.component.html30 + Block video "" Bloqueja el vídeo " " @@ -957,21 +1059,23 @@ Hi ha hagut un problema amb el procés extern d'identificació. Poseu-vos en contacte amb l'administració. src/app/+login/login.component.html7 - - Request new verification email. Demana nou correu de verificació.. - - - src/app/+login/login.component.html12src/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.html12 + src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html16 + + + This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. + Aquesta instància permet el registre. No obstant aixó , tinga cura de comprovar les Condicions Condicions abans de crear un compte. També pot buscar una altra instància que coincideixi amb les vostres necessitats: https://joinpeertube.org/instances. src/app/+login/login.component.html 60,62 - - 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.html 65,67 @@ -980,39 +1084,42 @@ User Usuari - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html26 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html26 + Username or email address Nom d'usuari o adreça de correu electrònic - - src/app/+login/login.component.html23 - + src/app/+login/login.component.html23 + Password Contrasenya - - - - - - - - - src/app/+login/login.component.html34src/app/+login/login.component.html36src/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.html58src/app/+admin/users/user-edit/user-edit.component.html117src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+login/login.component.html34 + src/app/+login/login.component.html36 + 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 + src/app/+admin/users/user-edit/user-edit.component.html117 + src/app/+admin/users/user-edit/user-edit.component.html117 + Click here to reset your password Premeu aquí per restablir la contrasenya - - src/app/+login/login.component.html47 - I forgot my passwordI forgot my password + src/app/+login/login.component.html47 + + + I forgot my password + He oblidat la meua contrasenya src/app/+login/login.component.html 47 - - Logging into an account lets you publish content Logging into an account lets you publish content + + + Logging into an account lets you publish content + Iniciar sessió amb un compte et permet publicar contingut src/app/+login/login.component.html 56,57 @@ -1021,59 +1128,59 @@ Login Inicia sessió - - - src/app/+login/login-routing.module.ts12src/app/+login/login.component.html44src/app/menu/menu.component.html99 + src/app/+login/login-routing.module.ts12 + src/app/+login/login.component.html44 + src/app/menu/menu.component.html99 + Or sign in with O identifiqueu-vos amb - - src/app/+login/login.component.html72 + src/app/+login/login.component.html72 + Forgot your password Has oblidat la teva contrasenya - - src/app/+login/login.component.html91 + src/app/+login/login.component.html91 + We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. No podem recuperar la vostra contrasenya perquè l'administració de la vostra instància no ha configurat cap sistema de correus de PeerTube. - - src/app/+login/login.component.html99 + src/app/+login/login.component.html99 + Enter your email address and we will send you a link to reset your password. Inseriu la vostra adreça de correu electrònic i us enviarem un enllaç per a restablir la contrasenya. - - src/app/+login/login.component.html103 + src/app/+login/login.component.html103 + An email with the reset password instructions will be sent to . The link will expire within 1 hour. S'enviarà un correu amb les instruccions per restablir la contrasenya a . L'enllaç caducarà al cap d'una hora. - - src/app/+login/login.component.ts121 + src/app/+login/login.component.ts121 + Email Correu - - - - - - - - src/app/+login/login.component.html107src/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.html8src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4src/app/+admin/users/user-edit/user-edit.component.html105src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+login/login.component.html107 + 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 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html4 + src/app/+admin/users/user-edit/user-edit.component.html105 + src/app/+admin/users/user-edit/user-edit.component.html105 + Email address Adreça de correu - - - src/app/+login/login.component.html109src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + src/app/+login/login.component.html109 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10 + Reset Restableix - Password reset button - src/app/+login/login.component.html122 - + src/app/+login/login.component.html122 + on this instance en aquesta instància @@ -1083,8 +1190,10 @@ The link will expire within 1 hour. on the vidiverse en el vidivers src/app/+search/search.component.html8 - - for for + + + for + per a src/app/+search/search.component.html 10 @@ -1111,26 +1220,31 @@ The link will expire within 1 hour. Reset my password Reinicia la meva contrasenya src/app/+reset-password/reset-password.component.html29 - - BackBack + + + Back + Arrere src/app/+signup/+register/register.component.ts 41 Button on the registration form to go to the previous step - - NextNext + + + Next + Següent src/app/+signup/+register/register.component.ts 42 Button on the registration form to go to the previous step - - SignupSignup - + + + Signup + Registrar-se Button on the registration form to finalize the account and channel creation - src/app/+signup/+register/register.component.ts68 - + src/app/+signup/+register/register.component.ts68 + Filters Filtres @@ -1138,22 +1252,24 @@ The link will expire within 1 hour. - - src/app/+search/search.component.html19 + src/app/+search/search.component.html19 + No results found Cap resultat - - src/app/+search/search.component.html31 + src/app/+search/search.component.html31 + subscribers subscriptores - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html25src/app/+search/search.component.html53src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 + src/app/+search/search.component.html53 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + Welcome to PeerTube, dear administrator! ¡Benvinguda a PeerTube, estimada administradora! @@ -1235,73 +1351,76 @@ The link will expire within 1 hour. 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. + Si vol obrir registres, decidisca quines sónles vostres regles de moderació i les condicions de servei de la instància , a més d'especificar les categories i les llengües que parlen els vostres moderadors . D'aquesta forma, ajudarà els usuaris a registrar-se en la instància Peertube apropiada src/app/modal/welcome-modal.component.html64 Remind me later - Remind me later + Recorda'm més tard src/app/modal/welcome-modal.component.html74 Configure my instance - - Configure my instance - + Configurar la meua instància src/app/modal/welcome-modal.component.html81 Configuration warning! - Configuration warning! + Advertència de configuració! 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: + Has habilitat el registre d'usuaris en la instància però no has configurat el següents camps: src/app/modal/instance-config-warning-modal.component.html10 Instance name - Instance name + Nom de la instància src/app/modal/instance-config-warning-modal.component.html13 Instance short description - Instance short description + Descripció breu de la instància src/app/modal/instance-config-warning-modal.component.html14 Who you are - Who you are + Qui eres o qui sou 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 + Quant de temps penses mantenir la instància 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 + Com planeges pagar per a mantenir la instància en execució src/app/modal/instance-config-warning-modal.component.html 18 - How you will moderate your instance - How you will moderate your instance + Com moderaràs la instància src/app/modal/instance-config-warning-modal.component.html20 Instance terms - Instance terms + Termes i condicions de la instància src/app/modal/instance-config-warning-modal.component.html21 - - My settingsMy settings - - - src/app/menu/menu.component.html119src/app/modal/quick-settings-modal.component.html3 - These settings apply only to your session on this instance.These settings apply only to your session on this instance. + + + My settings + La meua configuració + src/app/menu/menu.component.html119 + src/app/modal/quick-settings-modal.component.html3 + + + These settings apply only to your session on this instance. + Aquestos ajustos només s'apliquen a aquesta sessió en la instància src/app/modal/quick-settings-modal.component.html 8 @@ -1309,40 +1428,30 @@ 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 - . - - + Considera configurar aquestos camps per a ajudar a les persones a triar la instància apropiada. Sense ells, la instància podria no estar referenciada en la pàgina web de JoinPeertube. src/app/modal/instance-config-warning-modal.component.html25 Don't show me this warning anymore - Don't show me this warning anymore + No em mostres més aquesta advertència src/app/modal/instance-config-warning-modal.component.html33 Close Tanca - - - src/app/modal/instance-config-warning-modal.component.html38src/app/shared/shared-video-live/live-stream-information.component.html33 + src/app/modal/instance-config-warning-modal.component.html38 + src/app/shared/shared-video-live/live-stream-information.component.html33 + Update live settings - Update live settings - - src/app/shared/shared-video-live/live-stream-information.component.html36 + Actualitzar la configuració en viu + src/app/shared/shared-video-live/live-stream-information.component.html36 + Configure - - Configure - - - src/app/modal/instance-config-warning-modal.component.html44 + Configurar + src/app/modal/instance-config-warning-modal.component.html44 + Change the language Canvia la llengua @@ -1350,250 +1459,277 @@ The link will expire within 1 hour. Help to translate PeerTube! - - Help to translate PeerTube! - + Ajuda a traduir PeerTube! src/app/menu/language-chooser.component.html9 Public profile Perfil públic - - src/app/menu/menu.component.html28 + src/app/menu/menu.component.html28 + Interface: - Interface: - - src/app/menu/menu.component.html35 + Interfaç: + src/app/menu/menu.component.html35 + Videos: - Videos: - - src/app/menu/menu.component.html42 + Vídeos: + src/app/menu/menu.component.html42 + Sensitive: - Sensitive: - - src/app/menu/menu.component.html52 + Sensible: + src/app/menu/menu.component.html52 + Help share videos - Help share videos - - src/app/menu/menu.component.html58 + Ajuda a compartir vídeos + src/app/menu/menu.component.html58 + Keyboard shortcuts - Keyboard shortcuts - - - src/app/menu/menu.component.html67src/app/menu/menu.component.html141 - powered by PeerTube - CopyLeft 2015-2021powered by PeerTube - CopyLeft 2015-2021 - - src/app/menu/menu.component.html146 + Dreceres de teclat + src/app/menu/menu.component.html67 + src/app/menu/menu.component.html141 + + + powered by PeerTube - CopyLeft 2015-2021 + impulsat per PeerTube - CopyLeft 2015-2021 + src/app/menu/menu.component.html146 + Help - Help - - src/app/menu/menu.component.html137 + Ajuda + src/app/menu/menu.component.html137 + Get help using PeerTube - Get help using PeerTube - - src/app/menu/menu.component.html137 + Obtinga ajuda per a usar PeerTube + src/app/menu/menu.component.html137 + powered by PeerTube - powered by PeerTube - - src/app/menu/menu.component.html147 - - + funcionant amb PeerTube + src/app/menu/menu.component.html147 + Log out - Log out - - src/app/menu/menu.component.html72 + Tancar sesió + src/app/menu/menu.component.html72 + My account - My account - - src/app/menu/menu.component.html83 + El meu compte + src/app/menu/menu.component.html83 + My library - My library - - src/app/menu/menu.component.html88 + La meua biblioteca + src/app/menu/menu.component.html88 + Create an account Registrar un compte - - src/app/+login/login.component.html50src/app/menu/menu.component.html100 - + src/app/+login/login.component.html50 + src/app/menu/menu.component.html100 + My videos My videos - - - src/app/+my-library/my-library-routing.module.ts76src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts69src/app/core/menu/menu.service.ts77 + src/app/+my-library/my-library-routing.module.ts76 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts69 + src/app/core/menu/menu.service.ts77 + My video imports - My video imports - - src/app/+my-library/my-library-routing.module.ts89 + Vídeos importats + src/app/+my-library/my-library-routing.module.ts89 + My playlists My playlists - - src/app/+my-library/my-library-routing.module.ts39src/app/+my-library/my-video-playlists/my-video-playlists.component.html3src/app/core/menu/menu.service.ts86 + src/app/+my-library/my-library-routing.module.ts39 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 + src/app/core/menu/menu.service.ts86 + Create a new playlist - Create a new playlist - - src/app/+my-library/my-library-routing.module.ts48 + Crear una llista de reproducció + src/app/+my-library/my-library-routing.module.ts48 + My subscriptions My subscriptions - - src/app/+my-library/my-library-routing.module.ts98src/app/+my-library/my-subscriptions/my-subscriptions.component.html4src/app/core/menu/menu.service.ts92 + src/app/+my-library/my-library-routing.module.ts98 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html4 + src/app/core/menu/menu.service.ts92 + Videos Vídeos - - src/app/+my-library/my-library.component.ts52src/app/core/menu/menu.service.ts76 + src/app/+my-library/my-library.component.ts52 + src/app/core/menu/menu.service.ts76 + Interface: - Interface: - - src/app/menu/menu.component.html132 + Interfaç: + src/app/menu/menu.component.html132 + Playlists Playlists - - src/app/+my-library/my-library.component.ts59src/app/core/menu/menu.service.ts85 + src/app/+my-library/my-library.component.ts59 + src/app/core/menu/menu.service.ts85 + Subscriptions Subscriptions - - src/app/+my-library/my-library.component.ts64src/app/+videos/video-list/video-user-subscriptions.component.ts46src/app/+videos/videos-routing.module.ts57src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts64 + src/app/+videos/video-list/video-user-subscriptions.component.ts46 + src/app/+videos/videos-routing.module.ts57 + src/app/core/menu/menu.service.ts91 + History History - - src/app/+my-library/my-library.component.ts69src/app/core/menu/menu.service.ts97 + src/app/+my-library/my-library.component.ts69 + src/app/core/menu/menu.service.ts97 + VIDEOS VIDEOS - - src/app/+accounts/accounts.component.ts83src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215src/app/+video-channels/video-channels.component.ts76 - Import jobs concurrencyImport jobs concurrency - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 - allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 - jobs in paralleljobs in parallel - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 - Allow import with HTTP URL (e.g. YouTube)Allow import with HTTP URL (e.g. YouTube) - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + src/app/+accounts/accounts.component.ts83 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215 + src/app/+video-channels/video-channels.component.ts76 + + + Import jobs concurrency + Import jobs concurrency + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 + + + allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. + permet importar múltiples vídeos en paralel. ⚠️ Requereix reiniciar PeerTube. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + + + jobs in parallel + treballs en paral·lel + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + + + Allow import with HTTP URL (e.g. YouTube) + Permetre importació amb URL HTTP (per exemple, YouTube) + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + Discover Descobreix - - - 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 Administració - - src/app/menu/menu.component.html93 + src/app/menu/menu.component.html93 + About Quant a - - - src/app/menu/menu.component.html124 + src/app/menu/menu.component.html124 + Contact - Contact - - src/app/+about/about-routing.module.ts37src/app/menu/menu.component.html136 + Contactes + src/app/+about/about-routing.module.ts37 + src/app/menu/menu.component.html136 + View your notifications - View your notifications - - src/app/menu/notification.component.html3src/app/menu/notification.component.html11src/app/menu/notification.component.html11 + Veure les teues notificacions + src/app/menu/notification.component.html3 + src/app/menu/notification.component.html11 + src/app/menu/notification.component.html11 + 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 + Mark all as read - Mark all as read - - - - src/app/menu/notification.component.html27src/app/menu/notification.component.html27src/app/+my-account/my-account-notifications/my-account-notifications.component.html20 + Marcar tot com a llegit + src/app/menu/notification.component.html27 + src/app/menu/notification.component.html27 + src/app/+my-account/my-account-notifications/my-account-notifications.component.html20 + Update your notification preferences - Update your notification preferences - - src/app/menu/notification.component.html31 + Actualitzar preferències de notificació + src/app/menu/notification.component.html31 + See all your notifications - See all your notifications - - src/app/menu/notification.component.html49 + Veure totes les notificacions + src/app/menu/notification.component.html49 + I'm a teapot - I'm a teapot - - src/app/+page-not-found/page-not-found.component.ts26 + Sóc una tetera + src/app/+page-not-found/page-not-found.component.ts26 + That's an error. - That's an error. + Això és un error. 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. + No s'ha pogut trobar cap vídeo vinculat a la URL que buscaves. 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. + No s'ha pogut trobar cap recurs vinculat a la URL que buscaves. src/app/+page-not-found/page-not-found.component.html 8 - Possible reasons: - Possible reasons: - + Possibles raons: 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 + Potser hages utilitzat un enllaç obsolet o trancat + src/app/+page-not-found/page-not-found.component.html15 + + + The video may have been moved or deleted + El vídeo pot haver estat mogut o eliminat 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 + El recurs pot haver estat mogut o eliminat src/app/+page-not-found/page-not-found.component.html 18 @@ -1601,19 +1737,25 @@ The link will expire within 1 hour. You may have typed the address or URL incorrectly - You may have typed the address or URL incorrectly - - 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. + És possible que hages escrit la direcció o URL incorrectament + src/app/+page-not-found/page-not-found.component.html20 + + + You are not authorized here. + No estàs autoritzat ací. + 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. + És possible que dega verificar que el seu compte estiga permès pel propietari del vídeo o de la instància. 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. + És possible que dega verificar que el seu compte estiga permès pel recurs o el propietari de la instància. src/app/+page-not-found/page-not-found.component.html 31 @@ -1621,40 +1763,39 @@ The link will expire within 1 hour. The requested entity body blends sweet bits with a mellow earthiness. - The requested entity body blends sweet bits with a mellow earthiness. - + El cos de l'entitat sol·licitada mescla trossos dolços amb un una essència terrosa. Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request - src/app/+page-not-found/page-not-found.component.html40 + src/app/+page-not-found/page-not-found.component.html40 + Sepia seems to like it. - Sepia seems to like it. - + A Sepia pareix que li agrada. 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.ts62 - + El mitjà es massa gran per al servidor. Contacta amb l'administrador si desitja augmentar la grandària límit. + src/app/core/rest/rest-extractor.service.ts62 + GLOBAL SEARCH - GLOBAL SEARCH - - src/app/header/search-typeahead.component.html26 + CERCA GLOBAL + src/app/header/search-typeahead.component.html26 + using - using - - - - src/app/header/search-typeahead.component.html28 + utilitzant + src/app/header/search-typeahead.component.html28 + 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. + Els resultats seran augmentats amb aquells d'un índex de tercers. Solament s'enviaran les dades necessàries per a la consulta. + src/app/header/search-typeahead.component.html32 + + + Your query will be matched against video names or descriptions, channel names. + La consulta es compararà amb noms de vídeos o descripcions, els noms de canals. src/app/header/search-typeahead.component.html 37 @@ -1662,36 +1803,35 @@ The link will expire within 1 hour. ADVANCED SEARCH - ADVANCED SEARCH - - src/app/header/search-typeahead.component.html39 + CERCA AVANÇADA + src/app/header/search-typeahead.component.html39 + any instance - any instance - - src/app/header/search-typeahead.component.html42 + qualsevol instància + src/app/header/search-typeahead.component.html42 + only followed instances - only followed instances - - src/app/header/search-typeahead.component.html43 + solament instàncies seguides + 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 + Determina si es pot resoldre qualsevol contingut distant, o si aquesta instància sols permet fer-ho per a les instàncies que segueix. + 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 + llistarà el canal corresponent + 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 - + llistarà el vídeo corresponent + src/app/header/search-typeahead.component.html56 + Search... Cerca... @@ -1699,12 +1839,12 @@ The link will expire within 1 hour. In this instance's network - In this instance's network + En la xarxa d'aquesta instància src/app/header/suggestion.component.html14 In the vidiverse - In the vidiverse + En el vidivers src/app/header/suggestion.component.html15 @@ -1717,145 +1857,158 @@ The link will expire within 1 hour. Reset - - - - - - src/app/+search/search-filters.component.html9src/app/+search/search-filters.component.html23src/app/+search/search-filters.component.html42src/app/+search/search-filters.component.html61src/app/+search/search-filters.component.html75src/app/+search/search-filters.component.html110src/app/+search/search-filters.component.html123src/app/+search/search-filters.component.html136src/app/+search/search-filters.component.html149src/app/+search/search-filters.component.html164src/app/+search/search-filters.component.html172src/app/+search/search-filters.component.html197 - Display onlyDisplay only + src/app/+search/search-filters.component.html9 + src/app/+search/search-filters.component.html23 + src/app/+search/search-filters.component.html42 + src/app/+search/search-filters.component.html61 + src/app/+search/search-filters.component.html75 + src/app/+search/search-filters.component.html110 + src/app/+search/search-filters.component.html123 + src/app/+search/search-filters.component.html136 + src/app/+search/search-filters.component.html149 + src/app/+search/search-filters.component.html164 + src/app/+search/search-filters.component.html172 + src/app/+search/search-filters.component.html197 + + + Display only + Sols mostrar src/app/+search/search-filters.component.html 21 - - Live videosLive videos - - src/app/+search/search-filters.component.html29src/app/+search/search-filters.component.ts64 - VOD videosVOD videos - - src/app/+search/search-filters.component.html34src/app/+search/search-filters.component.ts60 + + + Live videos + Live videos + src/app/+search/search-filters.component.html29 + src/app/+search/search-filters.component.ts64 + + + VOD videos + VOD videos + src/app/+search/search-filters.component.html34 + src/app/+search/search-filters.component.ts60 + Published date Data de publicació - - src/app/+search/search-filters.component.html59 + src/app/+search/search-filters.component.html59 + Original publication year - Original publication year - - src/app/+search/search-filters.component.html73 + Any de publicació original + src/app/+search/search-filters.component.html73 + After... - After... - - src/app/+search/search-filters.component.html85 + Després de... + src/app/+search/search-filters.component.html85 + Before... - Before... - - src/app/+search/search-filters.component.html95 + Abans de... + src/app/+search/search-filters.component.html95 + Duration Durada - - - src/app/+search/search-filters.component.html108src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + src/app/+search/search-filters.component.html108 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + Display sensitive content Mostra contingut sensible - - src/app/+search/search-filters.component.html40 + src/app/+search/search-filters.component.html40 + Yes Sí - - src/app/+search/search-filters.component.html48 + src/app/+search/search-filters.component.html48 + No No - - src/app/+search/search-filters.component.html53 + src/app/+search/search-filters.component.html53 + Category Categoria - - - - src/app/+search/search-filters.component.html121src/app/+videos/+video-edit/shared/video-edit.component.html63src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html17 + src/app/+search/search-filters.component.html121 + src/app/+videos/+video-edit/shared/video-edit.component.html63 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html17 + Reset Reset - - - - - - src/app/+search/search-filters.component.html123src/app/+search/search-filters.component.html136src/app/+search/search-filters.component.html149src/app/+search/search-filters.component.html164src/app/+search/search-filters.component.html172 + src/app/+search/search-filters.component.html123 + src/app/+search/search-filters.component.html136 + src/app/+search/search-filters.component.html149 + src/app/+search/search-filters.component.html164 + src/app/+search/search-filters.component.html172 + Display all categories Display all categories - - src/app/+search/search-filters.component.html127 + src/app/+search/search-filters.component.html127 + Licence Llicència - - - - src/app/+search/search-filters.component.html134src/app/+videos/+video-edit/shared/video-edit.component.html74src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html26 + src/app/+search/search-filters.component.html134 + src/app/+videos/+video-edit/shared/video-edit.component.html74 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html26 + Display all licenses Display all licenses - - src/app/+search/search-filters.component.html140 + src/app/+search/search-filters.component.html140 + Language Llengua - - - - - src/app/+search/search-filters.component.html147src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10src/app/+videos/+video-edit/shared/video-edit.component.html94src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html35 + src/app/+search/search-filters.component.html147 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10 + src/app/+videos/+video-edit/shared/video-edit.component.html94 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html35 + Display all languages Display all languages - - src/app/+search/search-filters.component.html153 + src/app/+search/search-filters.component.html153 + All of these tags Totes aquestes etiquetes - - src/app/+search/search-filters.component.html162 + src/app/+search/search-filters.component.html162 + One of these tags Una d'aquestes etiquetes - - src/app/+search/search-filters.component.html170 + src/app/+search/search-filters.component.html170 + Search target Search target - - src/app/+search/search-filters.component.html179 + src/app/+search/search-filters.component.html179 + Vidiverse Vidiverse - - src/app/+search/search-filters.component.html189 + src/app/+search/search-filters.component.html189 + Reset - - Reset - - - src/app/+search/search-filters.component.html197 + Restablir + src/app/+search/search-filters.component.html197 + Filter Filtre - - src/app/+search/search-filters.component.html200 + src/app/+search/search-filters.component.html200 + Video channels Video channels @@ -1891,11 +2044,9 @@ The link will expire within 1 hour. Tags Etiquetes - - - src/app/+videos/+video-edit/shared/video-edit.component.html19src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html44 - - + src/app/+videos/+video-edit/shared/video-edit.component.html19 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html44 + Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag. @@ -1918,49 +2069,70 @@ The link will expire within 1 hour. extensions extensions - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts48 - This image is too large.This image is too large. - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts56src/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-edit/actor-avatar-edit.component.ts48 + + + This image is too large. + This image is too large. + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts56 + 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.ts 47 - - Channel avatarChannel avatar + + + Channel avatar + Channel avatar src/app/shared/shared-actor-image/actor-avatar.component.ts 48 - - Markdown compatible that also supports custom PeerTube HTML tagsMarkdown 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 - - 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 - - Advanced filtersAdvanced filters + + + Advanced filters + Advanced filters src/app/shared/shared-forms/advanced-input-filter.component.html 8 @@ -1974,74 +2146,75 @@ The link will expire within 1 hour. Description Descripció - - - - - - - - - src/app/+about/about-instance/about-instance.component.html113src/app/+admin/config/edit-custom-config/edit-instance-information.component.html35src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html28src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html71src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html71src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html44src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html44src/app/+videos/+video-edit/shared/video-edit.component.html38 + src/app/+about/about-instance/about-instance.component.html113 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html35 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html28 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html71 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html71 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html44 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html44 + src/app/+videos/+video-edit/shared/video-edit.component.html38 + Video descriptions are truncated by default and require manual action to expand them. Video descriptions are truncated by default and require manual action to expand them. src/app/+videos/+video-edit/shared/video-edit.component.html43 - - Choose the appropriate licence for your work. Choose the appropriate licence for your work. + + + Choose the appropriate licence for your work. + Choose the appropriate licence for your work. src/app/+videos/+video-edit/shared/video-edit.component.html 79,80 - Channel Canal - - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70src/app/+signup/+register/register.component.html34src/app/+videos/+video-edit/shared/video-edit.component.html58src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+signup/+register/register.component.html34 + src/app/+videos/+video-edit/shared/video-edit.component.html58 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + Privacy Privacitat - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+videos/+video-edit/shared/video-edit.component.html106src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29src/app/+videos/+video-edit/video-add-components/video-upload.component.html26src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2src/app/shared/shared-abuse-list/abuse-details.component.ts22 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+videos/+video-edit/shared/video-edit.component.html106 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html26 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2 + src/app/shared/shared-abuse-list/abuse-details.component.ts22 + FAQ FAQ - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + Frequently asked questions about PeerTube Frequently asked questions about PeerTube - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + API API - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + API documentation API documentation - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + Schedule publication () Programa la publicació ( @@ -2053,14 +2226,15 @@ The link will expire within 1 hour. Contains sensitive content Contains sensitive content src/app/+videos/+video-edit/shared/video-edit.component.html131 - - Some instances hide videos containing mature or explicit content by default.Some instances hide videos containing mature or explicit content by default. + + + Some instances hide videos containing mature or explicit content by default. + Some instances hide videos containing mature or explicit content by default. src/app/+videos/+video-edit/shared/video-edit.component.html 135 - Publish after transcoding Publish after transcoding @@ -2126,118 +2300,138 @@ The link will expire within 1 hour. You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives - - src/app/+videos/+video-edit/shared/video-edit.component.html236 + src/app/+videos/+video-edit/shared/video-edit.component.html236 + This is a permanent live This is a permanent live - - src/app/+videos/+video-edit/shared/video-edit.component.html232 + src/app/+videos/+video-edit/shared/video-edit.component.html232 + ⚠️ 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.html248 + src/app/+videos/+video-edit/shared/video-edit.component.html248 + 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.html244 + src/app/+videos/+video-edit/shared/video-edit.component.html244 + Captions Captions - - src/app/+videos/+video-edit/shared/video-edit.component.html155src/app/shared/shared-abuse-list/abuse-details.component.ts26src/app/shared/shared-moderation/abuse.service.ts178 + src/app/+videos/+video-edit/shared/video-edit.component.html155 + src/app/shared/shared-abuse-list/abuse-details.component.ts26 + src/app/shared/shared-moderation/abuse.service.ts178 + Video preview Video preview - - src/app/+videos/+video-edit/shared/video-edit.component.html267 + src/app/+videos/+video-edit/shared/video-edit.component.html267 + Support Suporta - - src/app/+video-channels/video-channels.component.html17src/app/+videos/+video-edit/shared/video-edit.component.html276 - View accountView account - - - src/app/+video-channels/video-channels.component.html30 - View account View account + src/app/+video-channels/video-channels.component.html17 + src/app/+videos/+video-edit/shared/video-edit.component.html276 + + + View account + View account + src/app/+video-channels/video-channels.component.html30 + + + View account + View account src/app/+video-channels/video-channels.component.html 42,43 - - View owner account View owner account + + + View owner account + View owner account src/app/+video-channels/video-channels.component.html 46,47 - - VIDEO CHANNELVIDEO CHANNEL + + + VIDEO CHANNEL + VIDEO CHANNEL src/app/+video-channels/video-channels.component.html 55 - - Copy channel handleCopy channel handle + + + Copy channel handle + Copy channel handle src/app/+video-channels/video-channels.component.html 66 - - {VAR_PLURAL, plural, =1 {1 videos} other { videos}}{VAR_PLURAL, plural, =1 {1 videos} other { videos}} - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 - + + + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + + + + src/app/+video-channels/video-channels.component.html 76,77 - - OWNER ACCOUNTOWNER ACCOUNT - - - src/app/+video-channels/video-channels.component.html23 + + + OWNER ACCOUNT + OWNER ACCOUNT + src/app/+video-channels/video-channels.component.html23 + Short text to tell people how they can support you (membership platform...). Short text to tell people how they can support you (membership platform...). - - src/app/+videos/+video-edit/shared/video-edit.component.html280 + src/app/+videos/+video-edit/shared/video-edit.component.html280 + Original publication date Original publication date - - src/app/+videos/+video-edit/shared/video-edit.component.html296 + src/app/+videos/+video-edit/shared/video-edit.component.html296 + 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.html300 + src/app/+videos/+video-edit/shared/video-edit.component.html300 + Plugin settings Plugin settings - - src/app/+videos/+video-edit/shared/video-edit.component.html330 + src/app/+videos/+video-edit/shared/video-edit.component.html330 + Enable video comments Activa els comentaris de vídeo - - src/app/+videos/+video-edit/shared/video-edit.component.html317 + src/app/+videos/+video-edit/shared/video-edit.component.html317 + Enable download Habilita la baixada - - src/app/+videos/+video-edit/shared/video-edit.component.html322 + src/app/+videos/+video-edit/shared/video-edit.component.html322 + Advanced settings Ajustos avançats - - src/app/+videos/+video-edit/shared/video-edit.component.html260 + src/app/+videos/+video-edit/shared/video-edit.component.html260 + URL URL @@ -2253,11 +2447,11 @@ The link will expire within 1 hour. Sorry, but something went wrong Ens sap greu, però quelcom va malament - - - - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.html26src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html51src/app/+videos/+video-edit/video-add-components/video-import-url.component.html44src/app/+videos/+video-edit/video-add-components/video-upload.component.html86 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html26 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html51 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html44 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html86 + Congratulations, the video behind will be imported! You can already add information about this video. Enhorabona, s'importarà el vídeo allotjat en @@ -2268,80 +2462,88 @@ The link will expire within 1 hour. Update Actualitza - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts174src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts174 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61 + src/app/+videos/+video-edit/video-update.component.html3 + src/app/+videos/+video-edit/video-update.component.html18 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + Select the file to upload Trieu el fitxer a pujar - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html6src/app/+videos/+video-edit/video-add-components/video-upload.component.html8 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html6 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html8 + Scheduled Programat - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Imatge de fons del vídeo - - 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. La imatge es fusionarà amb el vostre fitxer d’àudio. La imatge escollida serà definitiva i no es podrà modificar. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html37 + Total video uploaded Total video uploaded - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html63 + 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/users/user-list/user-list.component.html119src/app/shared/shared-main/users/user-quota.component.html3 + src/app/+admin/users/user-list/user-list.component.html119 + src/app/shared/shared-main/users/user-quota.component.html3 + Congratulations! Your video is now available in your private library. Felicitats! El teu vídeo ja està disponible a la biblioteca privada. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.html91 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html91 + Publish will be available when upload is finished La publicació estarà disponible quan finalitzi la càrrega - - 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 Publica - - - 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.ts124 + 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.ts124 + 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. @@ -2355,26 +2557,29 @@ The link will expire within 1 hour. Select the torrent to import Selecciona el torrent per importar - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html6src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html8 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html6 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html8 + OR OR - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html13 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html13 + Paste magnet URI Paste magnet URI - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html16 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html16 + Congratulations, the video will be imported with BitTorrent! You can already add information about this video. 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.html56 - Torrents with only 1 file are supported.Torrents with only 1 file are supported. + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html56 + + + Torrents with only 1 file are supported. + Torrents with only 1 file are supported. src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts 119 @@ -2383,18 +2588,18 @@ The link will expire within 1 hour. 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.ts96 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts96 + 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.ts98 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts98 + Live published. Live published. - - src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts128 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts128 + Go Live Go Live @@ -2458,18 +2663,18 @@ The link will expire within 1 hour. Other videos Altres vídeos - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + AUTOPLAY AUTOPLAY - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + Report this comment Report this comment - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + Share Comparteix @@ -2529,8 +2734,10 @@ The link will expire within 1 hour. Less customization src/app/shared/shared-share-modal/video-share.component.html231 - - Support Support + + + Support + Support src/app/shared/shared-support-modal/support-modal.component.html 3 @@ -2546,18 +2753,17 @@ The link will expire within 1 hour. Autoplay src/app/shared/shared-share-modal/video-share.component.html159 - 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/+accounts/accounts.component.html22src/app/shared/shared-share-modal/video-share.component.html166 + src/app/+accounts/accounts.component.html22 + src/app/shared/shared-share-modal/video-share.component.html166 + Loop Loop @@ -2591,364 +2797,368 @@ The link will expire within 1 hour. Public Public - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 - - - - - + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 + This video is blocked. This video is blocked. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + Published Published - - - src/app/+videos/+video-watch/video-watch.component.html31 + src/app/+videos/+video-watch/video-watch.component.html31 + SUPPORT SUPPORT - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + SHARE SHARE - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + SAVE SAVE - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + DOWNLOAD DOWNLOAD - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + Like this video M'agrada aquest vídeo - - 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 No m'agrada aquest vídeo - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + Support options for this video Support options for this video - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + By By - - src/app/+videos/+video-watch/video-watch.component.html71 + src/app/+videos/+video-watch/video-watch.component.html71 + Subscribe Subscribe - - src/app/shared/shared-user-subscription/subscribe-button.component.html9 + src/app/shared/shared-user-subscription/subscribe-button.component.html9 + Subscribe to all channels Subscribe to all channels - - src/app/shared/shared-user-subscription/subscribe-button.component.html11 + src/app/shared/shared-user-subscription/subscribe-button.component.html11 + channels subscribed channels subscribed - - src/app/shared/shared-user-subscription/subscribe-button.component.html13 + src/app/shared/shared-user-subscription/subscribe-button.component.html13 + {VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} } {VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} } - - src/app/shared/shared-user-subscription/subscribe-button.component.html34 + src/app/shared/shared-user-subscription/subscribe-button.component.html34 + Show more Mostra més - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + Show less Veure menys - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 - OriginOrigin - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 - + src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + + + Origin + Origin + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 + Originally published Originally published - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html12 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html12 + Friendly Reminder: Friendly Reminder: - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html4 + the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + More information Més informació - - - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html36src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56src/app/+admin/system/jobs/jobs.component.html56src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + src/app/+admin/moderation/video-block-list/video-block-list.component.html36 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56 + src/app/+admin/system/jobs/jobs.component.html56 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + The video was blocked due to automatic blocking of new videos The video was blocked due to automatic blocking of new videos - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html57 + src/app/+admin/moderation/video-block-list/video-block-list.component.html57 + NSFW NSFW - - src/app/+admin/moderation/video-block-list/video-block-list.component.html67 + src/app/+admin/moderation/video-block-list/video-block-list.component.html67 + Get more information Obtenir més informació - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + OK OK - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 - The video is being imported, it will be available when the import is finished. - The video is being imported, it will be available when the import is finished. + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 + + + The video is being imported, it will be available when the import is finished. + The video is being imported, it will be available when the import is finished. src/app/+videos/+video-watch/shared/information/video-alert.component.html 2,3 - - The video is being transcoded, it may not work properly. - The video is being transcoded, it may not work properly. + + + The video is being transcoded, it may not work properly. + The video is being transcoded, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 6,7 - - This video will be published on . - This video will be published on . + + + This video will be published on . + This video will be published on . src/app/+videos/+video-watch/shared/information/video-alert.component.html 9,11 - - This live has not started yet. - This live has not started yet. + + + This live has not started yet. + This live has not started yet. src/app/+videos/+video-watch/shared/information/video-alert.component.html 14,15 - - This live has ended. - This live has ended. + + + This live has ended. + This live has ended. src/app/+videos/+video-watch/shared/information/video-alert.component.html 18,19 - - - SORT BY SORT BY - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + Most recent first (default) Most recent first (default) - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + Most replies first Most replies first - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + No comments. Cap comentari. - - 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.html80 - {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.html80src/app/+videos/+video-watch/shared/comment/video-comments.component.html83src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 - View from View from - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html83 - View View - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 - - - + 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.html80 + + + {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.html80 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html83 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + + + View from + View from + src/app/+videos/+video-watch/shared/comment/video-comments.component.html83 + + + View + View + src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + Comments are disabled. Els comentaris estan desactivats. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html98 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html98 + 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.ts203 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts203 + 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.ts203 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts203 + Add comment... Afegeix un comentari... - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html6 + Markdown compatible Markdown compatible - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html15 + Markdown compatible that supports: Markdown compatible that supports: - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html18 + Auto generated links Auto generated links - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html21 + Break lines Break lines - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + Lists Lists - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23src/app/shared/shared-main/misc/help.component.ts84 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23 + src/app/shared/shared-main/misc/help.component.ts84 + Emphasis Emphasis - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25src/app/shared/shared-main/misc/help.component.ts81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25 + src/app/shared/shared-main/misc/help.component.ts81 + bold bold - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + italic italic - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + Emoji shortcuts Emoji shortcuts - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + Emoji markup Emoji markup - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + See complete list See complete list - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + You are one step away from commenting You are one step away from commenting - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 - You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 - - + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + + + You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). + You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + Login to comment 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 + Comment Comment - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + Reply Reply - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + Highlighted comment Comentari destacat - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + Reply Respon - - src/app/+videos/+video-watch/comment/video-comment.component.html36 + src/app/+videos/+video-watch/comment/video-comment.component.html36 + This comment has been deleted 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 @@ -2983,8 +3193,9 @@ 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.ts42 + src/app/+my-account/my-account-applications/my-account-applications.component.html35 + src/app/+my-account/my-account-applications/my-account-applications.component.ts42 + Token renewed. Update your client configuration accordingly. Token renewed. Update your client configuration accordingly. @@ -2996,8 +3207,10 @@ The link will expire within 1 hour. Applications Applications - - src/app/+my-account/my-account-applications/my-account-applications.component.html3src/app/+my-account/my-account-routing.module.ts126src/app/+my-account/my-account.component.ts60 + src/app/+my-account/my-account-applications/my-account-applications.component.html3 + src/app/+my-account/my-account-routing.module.ts126 + src/app/+my-account/my-account.component.ts60 + SUBSCRIPTION FEED SUBSCRIPTION FEED @@ -3043,111 +3256,89 @@ The link will expire within 1 hour. Renew token src/app/+my-account/my-account-applications/my-account-applications.component.html35 - Filter... Filter... - - - - - - - - - - - src/app/shared/shared-forms/advanced-input-filter.component.html17 + src/app/shared/shared-forms/advanced-input-filter.component.html17 + Clear filters Clear filters - - - - - - - - - - - - - - - src/app/shared/shared-forms/advanced-input-filter.component.html23 + src/app/shared/shared-forms/advanced-input-filter.component.html23 + 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 + src/app/+admin/system/jobs/jobs.component.html45 + Follower handle Follower handle - - src/app/+admin/follows/followers-list/followers-list.component.html24 + src/app/+admin/follows/followers-list/followers-list.component.html24 + State Estat - - src/app/+my-library/my-video-imports/my-video-imports.component.html19src/app/+admin/system/jobs/jobs.component.html48 + src/app/+my-library/my-video-imports/my-video-imports.component.html19 + src/app/+admin/system/jobs/jobs.component.html48 + Created Creat - - - - - - 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 @@ -3155,8 +3346,8 @@ 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 + @@ -3167,36 +3358,39 @@ The link will expire within 1 hour. Host Amfitrió - - src/app/+admin/follows/following-list/following-list.component.html31 + src/app/+admin/follows/following-list/following-list.component.html31 + Redundancy allowed Redundancy allowed - - src/app/+admin/follows/following-list/following-list.component.html34 - UnfollowUnfollow - - src/app/+admin/follows/following-list/following-list.component.html41src/app/+admin/follows/following-list/following-list.component.ts58 + src/app/+admin/follows/following-list/following-list.component.html34 + + + Unfollow + Unfollow + src/app/+admin/follows/following-list/following-list.component.html41 + src/app/+admin/follows/following-list/following-list.component.ts58 + 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.html70 + src/app/+admin/follows/following-list/following-list.component.html70 + Your instance is not following anyone. Your instance is not following anyone. - - src/app/+admin/follows/following-list/following-list.component.html71 + src/app/+admin/follows/following-list/following-list.component.html71 + Showing to of hosts Showing @@ -3204,24 +3398,28 @@ 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 + Follow domains Follow domains - - src/app/+admin/follows/following-list/following-list.component.html78 - Follow instancesFollow instances - - src/app/+admin/follows/following-list/following-list.component.html18 - 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 + src/app/+admin/follows/following-list/following-list.component.html78 + + + Follow instances + Follow instances + src/app/+admin/follows/following-list/following-list.component.html18 + + + 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 @@ -3241,29 +3439,31 @@ The link will expire within 1 hour. Create user Afegeix un usuari - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters - - src/app/+admin/users/user-list/user-list.component.html42 + src/app/+admin/users/user-list/user-list.component.html42 + Select columns Select columns - - src/app/+admin/users/user-list/user-list.component.html48 + src/app/+admin/users/user-list/user-list.component.html48 + Highlight banned users Highlight banned users - - src/app/+admin/users/user-list/user-list.component.html54 + src/app/+admin/users/user-list/user-list.component.html54 + Username Nom d'usuari - - - - src/app/+signup/+register/register-step-user.component.html23src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6src/app/+admin/users/user-edit/user-edit.component.html83src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+signup/+register/register-step-user.component.html23 + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html6 + src/app/+admin/users/user-edit/user-edit.component.html83 + src/app/+admin/users/user-edit/user-edit.component.html83 + e.g. jane_doe e.g. jane_doe @@ -3293,9 +3493,9 @@ The link will expire within 1 hour. Role Rol - - - src/app/+admin/users/user-edit/user-edit.component.html136src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-edit/user-edit.component.html136 + src/app/+admin/users/user-edit/user-edit.component.html136 + Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ . @@ -3307,17 +3507,19 @@ The link will expire within 1 hour. . - - - src/app/+admin/users/user-edit/user-edit.component.html162src/app/+admin/users/user-edit/user-edit.component.html162 + src/app/+admin/users/user-edit/user-edit.component.html162 + src/app/+admin/users/user-edit/user-edit.component.html162 + Daily video quota Daily video quota - - - - src/app/+admin/users/user-edit/user-edit.component.html172src/app/+admin/users/user-edit/user-edit.component.html172src/app/shared/shared-main/users/user-quota.component.html13 - Auth pluginAuth plugin + src/app/+admin/users/user-edit/user-edit.component.html172 + src/app/+admin/users/user-edit/user-edit.component.html172 + src/app/shared/shared-main/users/user-quota.component.html13 + + + Auth plugin + Auth plugin src/app/+admin/users/user-edit/user-edit.component.html 188 @@ -3326,8 +3528,10 @@ The link will expire within 1 hour. src/app/+admin/users/user-edit/user-edit.component.html 188 - - None (local authentication)None (local authentication) + + + None (local authentication) + None (local authentication) src/app/+admin/users/user-edit/user-edit.component.html 192 @@ -3340,27 +3544,27 @@ The link will expire within 1 hour. Doesn't need review before a video goes public Doesn't need review before a video goes public - - - src/app/+admin/users/user-edit/user-edit.component.html201src/app/+admin/users/user-edit/user-edit.component.html201 + src/app/+admin/users/user-edit/user-edit.component.html201 + src/app/+admin/users/user-edit/user-edit.component.html201 + Send a link to reset the password by email to the user Send a link to reset the password by email to the user - - - src/app/+admin/users/user-edit/user-edit.component.html226src/app/+admin/users/user-edit/user-edit.component.html226 + src/app/+admin/users/user-edit/user-edit.component.html226 + src/app/+admin/users/user-edit/user-edit.component.html226 + Ask for new password Ask for new password - - - src/app/+admin/users/user-edit/user-edit.component.html227src/app/+admin/users/user-edit/user-edit.component.html227 + src/app/+admin/users/user-edit/user-edit.component.html227 + src/app/+admin/users/user-edit/user-edit.component.html227 + Manually set the user password Manually set the user password - - - src/app/+admin/users/user-edit/user-edit.component.html231src/app/+admin/users/user-edit/user-edit.component.html231 + src/app/+admin/users/user-edit/user-edit.component.html231 + src/app/+admin/users/user-edit/user-edit.component.html231 + Show Show @@ -3368,65 +3572,62 @@ The link will expire within 1 hour. Hide - Hide - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html115src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-user-settings/user-video-settings.component.html16 + Amagar + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html115 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + Batch actions Batch actions - - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html23src/app/+admin/users/user-list/user-list.component.html13 - - + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html23 + src/app/+admin/users/user-list/user-list.component.html13 + The user was banned The user was banned - - - src/app/+admin/users/user-list/user-list.component.html139 + src/app/+admin/users/user-list/user-list.component.html139 + Open account in a new tab Open account in a new tab - - - - - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html70src/app/+admin/users/user-list/user-list.component.html90src/app/+my-library/my-ownership/my-ownership.component.html38src/app/shared/shared-abuse-list/abuse-list-table.component.html46src/app/shared/shared-moderation/account-blocklist.component.html34src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html70 + src/app/+admin/users/user-list/user-list.component.html90 + src/app/+my-library/my-ownership/my-ownership.component.html38 + src/app/shared/shared-abuse-list/abuse-list-table.component.html46 + src/app/shared/shared-moderation/account-blocklist.component.html34 + src/app/shared/shared-moderation/account-blocklist.component.html34 + Deleted account Deleted account - - src/app/shared/shared-abuse-list/abuse-list-table.component.html57 + src/app/shared/shared-abuse-list/abuse-list-table.component.html57 + User's email must be verified to login User's email must be verified to login - - - src/app/+admin/users/user-list/user-list.component.html108 + src/app/+admin/users/user-list/user-list.component.html108 + User's email is verified / User can login without email verification User's email is verified / User can login without email verification - - src/app/+admin/users/user-list/user-list.component.html112 + src/app/+admin/users/user-list/user-list.component.html112 + Total daily video quota Total daily video quota - - src/app/+admin/users/user-list/user-list.component.html129 + src/app/+admin/users/user-list/user-list.component.html129 + Ban reason: Ban reason: - - src/app/+admin/users/user-list/user-list.component.html156 - Banned usersBanned users + src/app/+admin/users/user-list/user-list.component.html156 + + + Banned users + Banned users src/app/+admin/users/user-list/user-list.component.ts 40 @@ -3450,45 +3651,56 @@ The link will expire within 1 hour. Reports Reports - - - src/app/+admin/admin.component.ts53src/app/+admin/moderation/abuse-list/abuse-list.component.html3src/app/+admin/moderation/moderation.routes.ts37src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + src/app/+admin/admin.component.ts53 + src/app/+admin/moderation/abuse-list/abuse-list.component.html3 + src/app/+admin/moderation/moderation.routes.ts37 + src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3 + Video blocks Video blocks - - src/app/+admin/admin.component.ts60src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + src/app/+admin/admin.component.ts60 + src/app/+admin/moderation/video-block-list/video-block-list.component.html3 + Video comments Video comments - - - src/app/+admin/admin.component.ts67src/app/+admin/moderation/moderation.routes.ts86src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 + src/app/+admin/admin.component.ts67 + src/app/+admin/moderation/moderation.routes.ts86 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 + Muted accounts Muted accounts - - - - - src/app/+admin/admin.component.ts74src/app/+admin/moderation/moderation.routes.ts98src/app/+my-account/my-account-routing.module.ts85src/app/+my-account/my-account.component.ts31src/app/shared/shared-moderation/account-blocklist.component.html3src/app/shared/shared-moderation/account-blocklist.component.html3 + src/app/+admin/admin.component.ts74 + src/app/+admin/moderation/moderation.routes.ts98 + src/app/+my-account/my-account-routing.module.ts85 + src/app/+my-account/my-account.component.ts31 + src/app/shared/shared-moderation/account-blocklist.component.html3 + src/app/shared/shared-moderation/account-blocklist.component.html3 + Muted servers Muted servers - - - - src/app/+admin/admin.component.ts81src/app/+my-account/my-account-routing.module.ts94src/app/+my-account/my-account.component.ts36src/app/shared/shared-moderation/server-blocklist.component.html3src/app/shared/shared-moderation/server-blocklist.component.html3 + src/app/+admin/admin.component.ts81 + src/app/+my-account/my-account-routing.module.ts94 + src/app/+my-account/my-account.component.ts36 + src/app/shared/shared-moderation/server-blocklist.component.html3 + src/app/shared/shared-moderation/server-blocklist.component.html3 + Users Users - - src/app/+admin/admin.component.ts88src/app/+admin/users/user-edit/user-edit.component.html4src/app/+admin/users/user-edit/user-edit.component.html4 + src/app/+admin/admin.component.ts88 + src/app/+admin/users/user-edit/user-edit.component.html4 + src/app/+admin/users/user-edit/user-edit.component.html4 + Configuration Configuration - - src/app/+admin/admin.component.ts95src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 + src/app/+admin/admin.component.ts95 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 + Video blocks Video blocks @@ -3506,18 +3718,15 @@ The link will expire within 1 hour. 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 @@ -3553,57 +3762,64 @@ The link will expire within 1 hour. Sensitive Sensible - - 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 Desfederat - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html28src/app/+admin/moderation/video-block-list/video-block-list.component.html71 + src/app/+admin/moderation/video-block-list/video-block-list.component.html28 + src/app/+admin/moderation/video-block-list/video-block-list.component.html71 + Date Data - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html29src/app/+admin/moderation/video-comment-list/video-comment-list.component.html45 - Select this rowSelect this row - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html53src/app/+admin/users/user-list/user-list.component.html74 + src/app/+admin/moderation/video-block-list/video-block-list.component.html29 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html45 + + + Select this row + Select this row + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html53 + src/app/+admin/users/user-list/user-list.component.html74 + Actions Accions - - - - - src/app/+admin/follows/followers-list/followers-list.component.html23src/app/+admin/moderation/video-block-list/video-block-list.component.html45src/app/+admin/moderation/video-comment-list/video-comment-list.component.html65src/app/+my-library/my-ownership/my-ownership.component.html18src/app/shared/shared-abuse-list/abuse-list-table.component.html41 + src/app/+admin/follows/followers-list/followers-list.component.html23 + src/app/+admin/moderation/video-block-list/video-block-list.component.html45 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html65 + src/app/+my-library/my-ownership/my-ownership.component.html18 + src/app/shared/shared-abuse-list/abuse-list-table.component.html41 + Commented video Commented video - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html82 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html82 + No comments found matching current filters. No comments found matching current filters. - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html107 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html107 + No comments found. No comments found. - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html108 - Local commentsLocal comments + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html108 + + + Local comments + Local comments src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts 48 - - Remote commentsRemote comments + + + Remote comments + Remote comments src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts 52 @@ -3612,38 +3828,48 @@ The link will expire within 1 hour. No abuses found matching current filters. No abuses found matching current filters. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + No abuses found. No abuses found. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html167 - Unsolved reportsUnsolved reports + src/app/shared/shared-abuse-list/abuse-list-table.component.html167 + + + Unsolved reports + Unsolved reports src/app/shared/shared-abuse-list/abuse-list-table.component.ts 42 - - Accepted reportsAccepted reports + + + Accepted reports + Accepted reports src/app/shared/shared-abuse-list/abuse-list-table.component.ts 46 - - Refused reportsRefused reports + + + Refused reports + Refused reports src/app/shared/shared-abuse-list/abuse-list-table.component.ts 50 - - Reports with blocked videosReports with blocked videos + + + Reports with blocked videos + Reports with blocked videos src/app/shared/shared-abuse-list/abuse-list-table.component.ts 54 - - Reports with deleted videosReports with deleted videos + + + Reports with deleted videos + Reports with deleted videos src/app/shared/shared-abuse-list/abuse-list-table.component.ts 58 @@ -3652,25 +3878,29 @@ The link will expire within 1 hour. Block reason: Block reason: - - src/app/+admin/moderation/video-block-list/video-block-list.component.html87 + src/app/+admin/moderation/video-block-list/video-block-list.component.html87 + No blocked video found matching current filters. No blocked video found matching current filters. - - src/app/+admin/moderation/video-block-list/video-block-list.component.html107 + src/app/+admin/moderation/video-block-list/video-block-list.component.html107 + No blocked video found. No blocked video found. - - src/app/+admin/moderation/video-block-list/video-block-list.component.html108 - Automatic blocksAutomatic blocks + src/app/+admin/moderation/video-block-list/video-block-list.component.html108 + + + Automatic blocks + Automatic blocks src/app/+admin/moderation/video-block-list/video-block-list.component.ts 31 - - Manual blocksManual blocks + + + Manual blocks + Manual blocks src/app/+admin/moderation/video-block-list/video-block-list.component.ts 35 @@ -3683,8 +3913,8 @@ 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 @@ -3706,20 +3936,14 @@ The link will expire within 1 hour. 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 Notificador - - - 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 + @@ -3727,60 +3951,61 @@ The link will expire within 1 hour. - - src/app/shared/shared-abuse-list/abuse-details.component.html22src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html22 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + {VAR_PLURAL, plural, =1 {1 report} other { reports}} {VAR_PLURAL, plural, =1 {1 report} other { reports} } - - src/app/shared/shared-abuse-list/abuse-details.component.html22src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html22 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + Video Vídeo - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43src/app/+my-library/my-ownership/my-ownership.component.html20src/app/+my-library/my-video-imports/my-video-imports.component.html18src/app/shared/shared-video-miniature/video-download.component.html8 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43 + src/app/+my-library/my-ownership/my-ownership.component.html20 + src/app/+my-library/my-video-imports/my-video-imports.component.html18 + src/app/shared/shared-video-miniature/video-download.component.html8 + Comment Comment - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + This video has been reported multiple times. This video has been reported multiple times. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.html70 + src/app/shared/shared-abuse-list/abuse-list-table.component.html70 + The video was blocked The video was blocked - - - src/app/shared/shared-abuse-list/abuse-list-table.component.html79 + src/app/shared/shared-abuse-list/abuse-list-table.component.html79 + by on by on - - - src/app/shared/shared-abuse-list/abuse-list-table.component.html82src/app/shared/shared-abuse-list/abuse-list-table.component.html99 + src/app/shared/shared-abuse-list/abuse-list-table.component.html82 + src/app/shared/shared-abuse-list/abuse-list-table.component.html99 + Video was deleted Video was deleted - - src/app/shared/shared-abuse-list/abuse-list-table.component.html89 + src/app/shared/shared-abuse-list/abuse-list-table.component.html89 + Account deleted Account deleted - - src/app/shared/shared-abuse-list/abuse-list-table.component.html125 + src/app/shared/shared-abuse-list/abuse-list-table.component.html125 + Open video in a new tab Open video in a new tab @@ -3792,28 +4017,28 @@ The link will expire within 1 hour. - - - - 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 @@ -3821,13 +4046,13 @@ 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 + @@ -3835,65 +4060,65 @@ The link will expire within 1 hour. - - src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + {VAR_PLURAL, plural, =1 {1 report} other { reports}} {VAR_PLURAL, plural, =1 {1 report} other { reports} } - - src/app/shared/shared-abuse-list/abuse-details.component.html42 + src/app/shared/shared-abuse-list/abuse-details.component.html42 + Updated 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 Instància - - - - - src/app/+about/about.component.html5src/app/+search/search-filters.component.html184src/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.html184 + 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 @@ -3901,41 +4126,41 @@ 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/following-list.component.html81 + src/app/+admin/follows/following-list/following-list.component.html81 + 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/moderation/video-comment-list/video-comment-list.component.html42src/app/shared/shared-moderation/account-blocklist.component.html23src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html42 + src/app/shared/shared-moderation/account-blocklist.component.html23 + src/app/shared/shared-moderation/account-blocklist.component.html23 + No account found matching current filters. 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 @@ -3981,9 +4206,14 @@ The link will expire within 1 hour. Search Cerca - - - src/app/+admin/plugins/plugins.component.html5src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts249src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/shared/shared-main/misc/simple-search-input.component.ts15src/app/shared/shared-main/misc/simple-search-input.component.ts16 + src/app/+admin/plugins/plugins.component.html5 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts249 + 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.ts15 + src/app/shared/shared-main/misc/simple-search-input.component.ts16 + Users can resolve distant content Users can resolve distant content @@ -3998,39 +4228,49 @@ The link will expire within 1 hour. Settings Settings - - - - - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html27src/app/+admin/plugins/plugin-search/plugin-search.component.html53src/app/+my-account/my-account-settings/my-account-settings.component.html1src/app/+my-account/my-account.component.ts50 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html27 + src/app/+admin/plugins/plugin-search/plugin-search.component.html53 + src/app/+my-account/my-account-settings/my-account-settings.component.html1 + src/app/+my-account/my-account.component.ts50 + Display settings Display settings - - src/app/modal/quick-settings-modal.component.html10 + src/app/modal/quick-settings-modal.component.html10 + Uninstall Uninstall - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 - HotHot - + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html36 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts111 + + + Hot + Hot A variant of Trending videos based on the number of recent interactions - src/app/+videos/video-list/trending/video-trending-header.component.ts48 - Videos with the most interactions for recent videosVideos with the most interactions for recent videos - - src/app/+videos/video-list/trending/video-trending-header.component.ts51 - Videos with the most views during the last 24 hoursVideos with the most views during the last 24 hours - - src/app/+videos/video-list/trending/video-trending-header.component.ts58 - LikesLikes - + src/app/+videos/video-list/trending/video-trending-header.component.ts48 + + + Videos with the most interactions for recent videos + Videos with the most interactions for recent videos + src/app/+videos/video-list/trending/video-trending-header.component.ts51 + + + 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/trending/video-trending-header.component.ts58 + + + Likes + Likes A variant of Trending videos based on the number of likes - src/app/+videos/video-list/trending/video-trending-header.component.ts61 - Videos that have the most likesVideos that have the most likes - - src/app/+videos/video-list/trending/video-trending-header.component.ts64 + src/app/+videos/video-list/trending/video-trending-header.component.ts61 + + + Videos that have the most likes + Videos that have the most likes + src/app/+videos/video-list/trending/video-trending-header.component.ts64 + To load your new installed plugins or themes, refresh the page. @@ -4042,14 +4282,15 @@ The link will expire within 1 hour. Popular Popular src/app/+admin/plugins/plugin-search/plugin-search.component.html16 - - for "" for "" + + + for "" + for "" src/app/+admin/plugins/plugin-search/plugin-search.component.html 22,24 - {VAR_PLURAL, plural, =1 {result} other {results} } {VAR_PLURAL, plural, =1 {result} other {results} } @@ -4085,54 +4326,59 @@ The link will expire within 1 hour. Jobs Jobs - - src/app/+admin/system/system.component.html3src/app/+admin/system/system.routes.ts26 + src/app/+admin/system/system.component.html3 + src/app/+admin/system/system.routes.ts26 + Logs Logs - - src/app/+admin/system/system.component.html5src/app/+admin/system/system.routes.ts37 + src/app/+admin/system/system.component.html5 + src/app/+admin/system/system.routes.ts37 + Debug Debug - - src/app/+admin/system/system.component.html7src/app/+admin/system/system.routes.ts48 + src/app/+admin/system/system.component.html7 + src/app/+admin/system/system.routes.ts48 + Delete this comment Delete this comment - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts75 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts75 + Delete all comments of this account Delete all comments of this account - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts81 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts81 + Comments are deleted after a few minutes Comments are deleted after a few minutes - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts82 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts82 + comments deleted. comments deleted. - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts142 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts142 + Do you really want to delete all comments of ? Do you really want to delete all comments of ? - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts162 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts162 + Comments of will be deleted in a few minutes Comments of will be deleted in a few minutes - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts174 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts174 + Video comments Video comments src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3 - - This view also shows comments from muted accounts.This view also shows comments from muted accounts. + + + This view also shows comments from muted accounts. + This view also shows comments from muted accounts. src/app/+admin/moderation/video-comment-list/video-comment-list.component.html 8 @@ -4141,15 +4387,14 @@ The link will expire within 1 hour. Showing to of comments Showing to of comments - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html15 - - + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html15 + - Select all rowsSelect all rows - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html38src/app/+admin/users/user-list/user-list.component.html34 + Select all rows + Select all rows + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html38 + src/app/+admin/users/user-list/user-list.component.html34 + Job type Job type @@ -4159,8 +4404,10 @@ The link will expire within 1 hour. Job state Job state src/app/+admin/system/jobs/jobs.component.html12 - - anyany + + + any + any src/app/+admin/system/jobs/jobs.component.html 21 @@ -4170,46 +4417,55 @@ The link will expire within 1 hour. Showing to of jobs Showing to of jobs - - src/app/+admin/system/jobs/jobs.component.html39 + src/app/+admin/system/jobs/jobs.component.html39 + Type Tipus - - src/app/+admin/system/jobs/jobs.component.html46 - Priority (1 = highest priority)Priority (1 = highest priority) + src/app/+admin/system/jobs/jobs.component.html46 + + + Priority (1 = highest priority) + Priority (1 = highest priority) src/app/+admin/system/jobs/jobs.component.html 47 - - ProgressProgress + + + Progress + Progress src/app/+admin/system/jobs/jobs.component.html 49 - - No jobs found.No jobs found. - - src/app/+admin/system/jobs/jobs.component.html107 - No jobs found.No jobs found. - - src/app/+admin/system/jobs/jobs.component.html108 + + + No jobs found. + No jobs found. + src/app/+admin/system/jobs/jobs.component.html107 + + + No jobs found. + No jobs found. + src/app/+admin/system/jobs/jobs.component.html108 + No jobs found. No jobs found. - - src/app/+admin/system/jobs/jobs.component.html111 + src/app/+admin/system/jobs/jobs.component.html111 + No jobs found that are . No jobs found that are . - - src/app/+admin/system/jobs/jobs.component.html112 + src/app/+admin/system/jobs/jobs.component.html112 + Refresh Refresh - - src/app/+admin/system/jobs/jobs.component.html30src/app/+admin/system/logs/logs.component.html34 + src/app/+admin/system/jobs/jobs.component.html30 + src/app/+admin/system/logs/logs.component.html34 + now now @@ -4218,42 +4474,42 @@ The link will expire within 1 hour. Loading... Loading... - - src/app/+admin/system/logs/logs.component.html38 + src/app/+admin/system/logs/logs.component.html38 + By -> By -> - - src/app/+admin/system/logs/logs.component.html46 + src/app/+admin/system/logs/logs.component.html46 + INSTANCE INSTANCE - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html7 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html7 + Name Nom - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html13src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html44src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html44 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html13 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html44 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html44 + Short description Descripció curta - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html24 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html24 + Main instance categories 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.html57 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + 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 @@ -4290,53 +4546,52 @@ The link will expire within 1 hour. 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 - Manage users to build a moderation team. Manage users to build a moderation team. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html84 - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html82 + + + Manage users to build a moderation team. + Manage users to build a moderation team. + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html84 + This instance is dedicated to sensitive or NSFW content This instance is dedicated to sensitive or NSFW content - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html93 - Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html98 - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html93 + + + Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. + Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default. + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html98 + Policy on videos containing sensitive content Política sobre vídeos que contenen contingut sensible - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 - With Hide or Blur thumbnails, a confirmation will be requested to watch the video. With Hide or Blur thumbnails, a confirmation will be requested to watch the video. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111src/app/shared/shared-user-settings/user-video-settings.component.html8 - - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 + + + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111 + src/app/shared/shared-user-settings/user-video-settings.component.html8 + Blur thumbnails Desenfoca les miniatures - - - 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 Mostra - - - - 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 @@ -4345,203 +4600,209 @@ The link will expire within 1 hour. Terms Termes - - - - - src/app/+about/about-instance/about-instance.component.html168src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129src/app/+signup/+register/register.component.html13src/app/shared/shared-instance/instance-about-accordion.component.html35 + src/app/+about/about-instance/about-instance.component.html168 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129 + src/app/+signup/+register/register.component.html13 + src/app/shared/shared-instance/instance-about-accordion.component.html35 + Code of conduct Code of conduct - - - - - src/app/+about/about-instance/about-instance.component.html154src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140src/app/shared/shared-instance/instance-about-accordion.component.html47 + src/app/+about/about-instance/about-instance.component.html154 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140 + src/app/shared/shared-instance/instance-about-accordion.component.html47 + Moderation information Informació de moderació - - - - - src/app/+about/about-instance/about-instance.component.html140src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151src/app/shared/shared-instance/instance-about-accordion.component.html41 + src/app/+about/about-instance/about-instance.component.html140 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151 + src/app/shared/shared-instance/instance-about-accordion.component.html41 + Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc 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.html4 + + + Use plugins & themes for more involved changes, or add slight customizations. + Use plugins & themes for more involved changes, or add slight customizations. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 6,7 - default default - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html18 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html18 + Landing page Landing page - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html27 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html27 + - Default trending pageDefault trending page - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html43 - Best videosBest videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html47 - Hot videosHot videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html48 - Most viewed videosMost viewed videos - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html49 - + Default trending page + Default trending page + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html43 + + + Best videos + Best videos + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html47 + + + Hot videos + Hot videos + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html48 + + + Most viewed videos + Most viewed videos + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html49 + Most liked videos Most liked videos - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html50 - - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html50 + BROADCAST MESSAGE BROADCAST MESSAGE - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html64 - Display a message on your instance Display a message on your instance - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html66 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html64 + + + Display a message on your instance + Display a message on your instance + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html66 + Enable broadcast message Enable broadcast message - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html77 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html77 + Allow users to dismiss the broadcast message Allow users to dismiss the broadcast message - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html84 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html84 + Broadcast message level Broadcast message level - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html89 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html89 + Message Message - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html103 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html103 + NEW USERS NEW USERS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html120 - Manage users to set their quota individually. Manage users to set their quota individually. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html122 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html120 + + + Manage users to set their quota individually. + Manage users to set their quota individually. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html122 + Signup requires email verification Signup requires email verification - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html143 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html143 + Signup limit Limit de registres - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html147 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html147 + {VAR_PLURAL, plural, =1 {user} other {users}} {VAR_PLURAL, plural, =1 {user} other {users}} - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html154 - Signup won't be limited to a fixed number of users.Signup won't be limited to a fixed number of users. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html159 - Minimum required age to create an accountMinimum required age to create an account + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html154 + + + Signup won't be limited to a fixed number of users. + Signup won't be limited to a fixed number of users. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html159 + + + Minimum required age to create an account + Minimum required age to create an account src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 163 - - {VAR_PLURAL, plural, =1 {year old} other {years old}}{VAR_PLURAL, plural, =1 {year old} other {years old}} + + + {VAR_PLURAL, plural, =1 {year old} other {years old}} + {VAR_PLURAL, plural, =1 {year old} other {years old}} src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 170 @@ -4550,8 +4811,8 @@ The link will expire within 1 hour. Enable Signup Enable Signup - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html132 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html132 + Users Usuaris @@ -4608,299 +4869,322 @@ The link will expire within 1 hour. Default video quota per user Default video quota per user - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 - bytesbytes - - - - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html178src/app/+admin/users/user-edit/user-edit.component.html178 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 + + + bytes + bytes + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html178 + src/app/+admin/users/user-edit/user-edit.component.html178 + Default daily upload limit per user Default daily upload limit per user - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 + Allow import with a torrent file or a magnet URI Allow import with a torrent file or a magnet URI - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + Unless a user is marked as trusted, their videos will stay private until a moderator reviews them. 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.html263 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html263 + Block new videos automatically Block new videos automatically - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + SEARCH SEARCH - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + Allow users to do remote URI/handle search Allow users to do remote URI/handle search - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + Allow your users to look up remote videos/actors that may not be federated with your instance 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.html291 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html291 + 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.html299 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html299 + Allow anonymous users to look up remote videos/actors that may not be federated with your instance 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.html302 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html302 + ⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select. ⚠️ 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.html316 - You should only use moderated search indexes in production, or host your own. You should only use moderated search indexes in production, or host your own. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html316 + + + You should only use moderated search indexes in production, or host your own. + You should only use moderated search indexes in production, or host your own. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 + Search index URL Search index URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + Disable local search in search bar Disable local search in search bar - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + Otherwise the local search stays used by default Otherwise the local search stays used by default - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + Search bar uses the global search index by default Search bar uses the global search index by default - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + Enable global search Enable global search - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + FEDERATION FEDERATION - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 - Manage relations with other instances. Manage relations with other instances. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 + + + Manage relations with other instances. + Manage relations with other instances. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 + Other instances can follow yours Other instances can follow yours - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + Manually approve new instance followers Manually approve new instance followers - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + Automatically follow back instances Automatically follow back instances - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 + ⚠️ This functionality requires a lot of attention and extra moderation. ⚠️ This functionality requires a lot of attention and extra moderation. - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + Index URL Index URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + Automatically follow instances of a public index Automatically follow instances of a public index - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 - See the documentation for more information about the expected URL See the documentation for more information about the expected URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 + + + See the documentation for more information about the expected URL + See the documentation for more information about the expected URL + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + ADMINISTRATORS ADMINISTRATORS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + Administrator Administrador - - src/app/core/users/user.service.ts406 + src/app/core/users/user.service.ts406 + Admin email Correu del Administrador - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + Enable contact form Enable contact form - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 + - VOD TranscodingVOD Transcoding - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html33 - + VOD Transcoding + VOD Transcoding + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html33 + TWITTER TWITTER - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 - Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + + + Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. + Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 + Your Twitter username El teu nom d'usuari de Twitter - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + Instance allowed by Twitter Instance allowed by Twitter - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 - If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 - + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 + + + If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. + If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 + LIVE LIVE - - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html5src/app/shared/shared-thumbnail/video-thumbnail.component.html31 - Enable users of your instance to stream live. Enable users of your instance to stream live. + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html5 + src/app/shared/shared-thumbnail/video-thumbnail.component.html31 + + + Enable users of your instance to stream live. + Enable users of your instance to stream live. src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 7,8 - ⚠️ Enabling live streaming requires trust in your users and extra moderation work⚠️ Enabling live streaming requires trust in your users and extra moderation work - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html22 - If enabled, your server needs to accept incoming TCP traffic on port If enabled, your server needs to accept incoming TCP traffic on port + ⚠️ Enabling live streaming requires trust in your users and extra moderation work + ⚠️ Enabling live streaming requires trust in your users and extra moderation work + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html22 + + + If enabled, your server needs to accept incoming TCP traffic on port + If enabled, your server needs to accept incoming TCP traffic on port src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 23 - Allow your users to automatically publish a replay of their live Allow your users to automatically publish a replay of their live - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html31 - If the user quota is reached, PeerTube will automatically terminate the live streaming If the user quota is reached, PeerTube will automatically terminate the live streaming + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html31 + + + If the user quota is reached, PeerTube will automatically terminate the live streaming + If the user quota is reached, PeerTube will automatically terminate the live streaming src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 34,35 - - Max simultaneous lives created on your instance (-1 for "unlimited") Max simultaneous lives created on your instance (-1 for "unlimited") + + + Max simultaneous lives created on your instance (-1 for "unlimited") + Max simultaneous lives created on your instance (-1 for "unlimited") src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 41 - - {VAR_PLURAL, plural, =1 {live} other {lives}} {VAR_PLURAL, plural, =1 {live} 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 - Max simultaneous lives created per user (-1 for "unlimited") Max simultaneous lives created per user (-1 for "unlimited") + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html46 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 + + + Max simultaneous lives created per user (-1 for "unlimited") + Max simultaneous lives created per user (-1 for "unlimited") src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 54 - {VAR_PLURAL, plural, =1 {live} other {lives}} {VAR_PLURAL, plural, =1 {live} other {lives}} - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html59 + Max live duration Max live duration - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html66 - - + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html66 + Live transcoding threads Live transcoding threads - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html128 - will claim at most with VOD transcoding will claim at most with VOD transcoding + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html128 + + + will claim at most with VOD transcoding + will claim at most with VOD transcoding src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 131,133 - - will claim at least with VOD transcoding will claim at least with VOD transcoding + + + will claim at least with VOD transcoding + will claim at least with VOD transcoding src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 135,137 - - Live transcoding profileLive transcoding profile - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html150 - new live transcoding profiles can be added by PeerTube pluginsnew live transcoding profiles can be added by PeerTube plugins - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html151 + + + Live transcoding profile + Live transcoding profile + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html150 + + + new live transcoding profiles can be added by PeerTube plugins + new live transcoding profiles can be added by PeerTube plugins + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html151 + Live resolutions to generate Live resolutions to generate - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html107 + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html107 + Allow live streaming Allow live streaming - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html18 - Transcoding enabled for live streamsTranscoding enabled for live streams - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html101 - + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html18 + + + Transcoding enabled for live streams + Transcoding enabled for live streams + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html101 + Live streaming Live streaming - - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html42src/app/shared/shared-instance/instance-features-table.component.html67 - AdvancedAdvanced + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html42 + src/app/shared/shared-instance/instance-features-table.component.html67 + + + Advanced + Advanced src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 51 @@ -4909,80 +5193,94 @@ The link will expire within 1 hour. TRANSCODING TRANSCODING - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html85src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html26 - Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html85 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html26 + + + Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. + Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html 87,88 - Input formatsInput formats - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html46 + Input formats + Input formats + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html46 + Transcoding enabled Transcodificació activada - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html40 - - - + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html40 + Allow additional extensions Allow additional extensions - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html51 - Allows users to upload videos.Allows users to upload videos. + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html51 + + + Allows users to upload videos. + Allows users to upload videos. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 54 - Allow audio files upload Permet la pujada de fitxers d'àudio - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html62 - Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files. - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html65 - The file will be merged in a still image video with the preview file on upload.The file will be merged in a still image video with the preview file on upload. - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html66 - Output formatsOutput formats - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html73 - WebTorrent enabledWebTorrent enabled - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html79 - If you also enabled HLS support, it will multiply videos storage by 2If you also enabled HLS support, it will multiply videos storage by 2 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html62 + + + Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files. + Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files. + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html65 + + + The file will be merged in a still image video with the preview file on upload. + The file will be merged in a still image video with the preview file on upload. + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html66 + + + Output formats + Output formats + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html73 + + + WebTorrent enabled + WebTorrent enabled + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html79 + + + If you also enabled HLS support, it will multiply videos storage by 2 + If you also enabled HLS support, it will multiply videos storage by 2 src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 83 - - HLS with P2P support enabled HLS with P2P support enabled - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html94 - Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html94 + + + Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2 + Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2 src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 99,108 - - Resolutions to generate per enabled formatResolutions to generate per enabled format - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html116 - The original file resolution will be the default target if no option is selected. The original file resolution will be the default target if no option is selected. + + + Resolutions to generate per enabled format + Resolutions to generate per enabled format + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html116 + + + The original file resolution will be the default target if no option is selected. + The original file resolution will be the default target if no option is selected. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 132,133 @@ -4991,150 +5289,157 @@ The link will expire within 1 hour. Transcoding threads Subprocessos per la transcodificació - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html144 - will claim at most with live transcoding will claim at most with live transcoding + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html144 + + + will claim at most with live transcoding + will claim at most with live transcoding src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 146,148 - - will claim at least with live transcoding will claim at least with live transcoding + + + will claim at least with live transcoding + will claim at least with live transcoding src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 150,152 - - Transcoding jobs concurrencyTranscoding jobs concurrency + + + Transcoding jobs concurrency + Transcoding jobs concurrency src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 166 - - allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restartallows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart + + + allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart + allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 167 - - Transcoding profileTranscoding profile - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html178 - new transcoding profiles can be added by PeerTube pluginsnew transcoding profiles can be added by PeerTube plugins - - src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html179 - + + + Transcoding profile + Transcoding profile + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html178 + + + new transcoding profiles can be added by PeerTube plugins + new transcoding profiles can be added by PeerTube plugins + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html179 + CACHE CACHE - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html5 - Some files are not federated, and fetched when necessary. Define their caching policies. Some files are not federated, and fetched when necessary. Define their caching policies. + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html5 + + + Some files are not federated, and fetched when necessary. Define their caching policies. + Some files are not federated, and fetched when necessary. Define their caching policies. src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 7,8 - Number of previews to keep in cache Number of previews to keep in cache - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html15 - {VAR_PLURAL, plural, =1 {cached image} other {cached images}}{VAR_PLURAL, plural, =1 {cached image} other {cached images}} + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html15 + + + {VAR_PLURAL, plural, =1 {cached image} other {cached images}} + {VAR_PLURAL, plural, =1 {cached image} other {cached images}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 22 - Number of video captions to keep in cache Number of video captions to keep in cache - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html29 - {VAR_PLURAL, plural, =1 {cached caption} other {cached captions}}{VAR_PLURAL, plural, =1 {cached caption} other {cached captions}} + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html29 + + + {VAR_PLURAL, plural, =1 {cached caption} other {cached captions}} + {VAR_PLURAL, plural, =1 {cached caption} other {cached captions}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 36 - - Number of video torrents to keep in cacheNumber of video torrents to keep in cache + + + Number of video torrents to keep in cache + Number of video torrents to keep in cache src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 43 - - {VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}}{VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}} + + + {VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}} + {VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}} src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html 50 - CUSTOMIZATIONS CUSTOMIZATIONS - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html63 - Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html65 - + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html63 + + + Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. + Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html65 + JavaScript JavaScript - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html74 - Write JavaScript code directly.Example: console.log('my instance is amazing'); Write JavaScript code directly.Example: console.log('my instance is amazing'); - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html78 - Write CSS code directly. Example:#custom-css + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html74 + + + Write JavaScript code directly.Example: console.log('my instance is amazing'); + Write JavaScript code directly.Example: console.log('my instance is amazing'); + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html78 + + + Write CSS code directly. Example:#custom-css color: red; - - Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email + + Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email color: red; - - Write CSS code directly. Example:#custom-css + + + Write CSS code directly. Example:#custom-css color: red; - - Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email + + Prepend with #custom-css to override styles. Example:#custom-css .logged-in-email color: red; - + - - src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html97 - - - + src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html97 + You cannot allow live replay if you don't enable transcoding. You cannot allow live replay if you don't enable transcoding. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html77 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html77 + - There are errors in the form: There are errors in the form: - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html67 + There are errors in the form: + There are errors in the form: + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html67 + Update configuration Actualitza la configuració - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80 + src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80 + VIDEO SETTINGS VIDEO SETTINGS @@ -5163,55 +5468,55 @@ color: red; DANGER ZONE DANGER ZONE - - - - src/app/+admin/users/user-edit/user-edit.component.html219src/app/+admin/users/user-edit/user-edit.component.html219src/app/+my-account/my-account-settings/my-account-settings.component.html77 + src/app/+admin/users/user-edit/user-edit.component.html219 + src/app/+admin/users/user-edit/user-edit.component.html219 + src/app/+my-account/my-account-settings/my-account-settings.component.html77 + Profile Perfil - - src/app/shared/shared-video-miniature/video-download.component.ts237 + src/app/shared/shared-video-miniature/video-download.component.ts237 + Resolution Resolution - - src/app/shared/shared-video-miniature/video-download.component.ts246 + src/app/shared/shared-video-miniature/video-download.component.ts246 + Aspect ratio Aspect ratio - - src/app/shared/shared-video-miniature/video-download.component.ts247 + src/app/shared/shared-video-miniature/video-download.component.ts247 + Average frame rate Average frame rate - - src/app/shared/shared-video-miniature/video-download.component.ts248 + src/app/shared/shared-video-miniature/video-download.component.ts248 + Pixel format Pixel format - - src/app/shared/shared-video-miniature/video-download.component.ts249 + src/app/shared/shared-video-miniature/video-download.component.ts249 + Sample rate Sample rate - - src/app/shared/shared-video-miniature/video-download.component.ts253 + src/app/shared/shared-video-miniature/video-download.component.ts253 + Channel Layout Channel Layout - - src/app/shared/shared-video-miniature/video-download.component.ts254 + src/app/shared/shared-video-miniature/video-download.component.ts254 + Video settings Ajustos de vídeo - - src/app/modal/quick-settings-modal.component.html18 + src/app/modal/quick-settings-modal.component.html18 + Interface settings Interface settings - - src/app/modal/quick-settings-modal.component.html22 + src/app/modal/quick-settings-modal.component.html22 + Change password Canvia contrasenya @@ -5221,9 +5526,9 @@ color: red; Current password Current password - - - src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html8src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html28 + src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html8 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html28 + New password Contrasenya nova @@ -5238,20 +5543,21 @@ color: red; Default policy on videos containing sensitive content Política predeterminada en vídeos que contenen contingut sensible src/app/shared/shared-user-settings/user-video-settings.component.html4 - - With Hide or Blur thumbnails, a confirmation will be requested to watch the video. With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + + + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. src/app/shared/shared-user-settings/user-video-settings.component.html 8,9 - Policy for sensitive videos 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 @@ -5265,10 +5571,9 @@ color: red; Add a new language Add a new language - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71src/app/shared/shared-user-settings/user-video-settings.component.html36 - + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71 + src/app/shared/shared-user-settings/user-video-settings.component.html36 + is awaiting email verification @@ -5277,24 +5582,24 @@ color: red; is awaiting email verification - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html10 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html10 + New email New email - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html17 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html17 + Change email Change email - - src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html36 + src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html36 + Theme Theme - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html14src/app/shared/shared-user-settings/user-interface-settings.component.html4 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html14 + src/app/shared/shared-user-settings/user-interface-settings.component.html4 + instance default instance default @@ -5308,29 +5613,39 @@ color: red; Change ownership Change ownership - - src/app/+my-library/my-videos/modals/video-change-ownership.component.html3src/app/+my-library/my-videos/my-videos.component.ts178 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html3 + src/app/+my-library/my-videos/my-videos.component.ts178 + 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 @@ -5341,7 +5656,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 @@ -5370,31 +5684,31 @@ color: red; Account page Account page - - - src/app/+videos/+video-watch/video-watch.component.html70src/app/+videos/+video-watch/video-watch.component.html76 + src/app/+videos/+video-watch/video-watch.component.html70 + src/app/+videos/+video-watch/video-watch.component.html76 + - - src/app/+videos/+video-watch/video-watch.component.html196 + src/app/+videos/+video-watch/video-watch.component.html196 + 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.ts57 + src/app/+my-library/my-library-routing.module.ts57 + My imports My imports @@ -5404,9 +5718,11 @@ color: red; Create video channel Create video channel - - src/app/+my-library/+my-video-channels/my-video-channels.component.html12 - No channel found.No channel found. + src/app/+my-library/+my-video-channels/my-video-channels.component.html12 + + + No channel found. + No channel found. src/app/+my-library/+my-video-channels/my-video-channels.component.html 16 @@ -5417,21 +5733,23 @@ color: red; subscriptors - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html25 + Example: my_channel Example: my_channel - - - src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html47src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html47 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html47 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html47 + CHANNEL CHANNEL src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26 src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26 - - Banner image of your channelBanner image of your channel + + + Banner image of your channel + Banner image of your channel src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html 30 @@ -5446,26 +5764,28 @@ color: red; When you will upload a video in this channel, the video support field will be automatically filled by this text. 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. - - - src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html84src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html84 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html84 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html84 + Overwrite support field of all videos of this channel Overwrite support field of all videos of this channel - - - src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html99src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html99 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html99 + src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html99 + subscribers subscribers - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 - Upload a new avatarUpload a new avatar - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html9src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html34 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html27 + + + Upload a new avatar + Upload a new avatar + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html9 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html34 + Target Target @@ -5474,9 +5794,8 @@ color: red; See the error See the error - - - src/app/+my-library/my-video-imports/my-video-imports.component.html26 + src/app/+my-library/my-video-imports/my-video-imports.component.html26 + This video was deleted This video was deleted @@ -5499,30 +5818,28 @@ color: red; 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.ts25 - + 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.ts25 + Channel page Channel page - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html23src/app/+my-library/my-subscriptions/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+my-library/+my-video-channels/my-video-channels.component.html23 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html67 + Created by Creat per - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html28 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html28 + Owner account page Owner account page - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html27 - - + src/app/+my-library/my-subscriptions/my-subscriptions.component.html27 + Delete history @@ -5531,16 +5848,19 @@ color: red; Delete history - - src/app/+my-library/my-history/my-history.component.html17 - You don't have any video in your watch history yet.You don't have any video in your watch history yet. + src/app/+my-library/my-history/my-history.component.html17 + + + You don't have any video in your watch history yet. + You don't have any video in your watch history yet. src/app/+my-library/my-history/my-history.component.html 30 - Open syndication dropdownOpen syndication dropdown + Open syndication dropdown + Open syndication dropdown src/app/shared/shared-main/feeds/feed.component.html 3 @@ -5606,8 +5926,8 @@ color: red; Create playlist Create playlist - - src/app/+my-library/my-video-playlists/my-video-playlists.component.html11 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html11 + My video channels My video channels @@ -5621,15 +5941,14 @@ color: red; 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. @@ -5666,14 +5985,18 @@ color: red; src/app/+signup/shared/signup-success.component.html14 - - Created Created + + + Created + Created src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html 3,4 - - {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}}{VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} + + + {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} + {VAR_PLURAL, plural, =1 {1 playlist} other { playlists}} src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html 3 @@ -5701,20 +6024,21 @@ 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-routing.module.ts35 + + + Manage channel + Manage channel src/app/+video-channels/video-channels.component.html 10,11 - Request email for account verification @@ -5735,105 +6059,132 @@ 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.html21 + src/app/+accounts/accounts.component.html21 + Instance muted Instance muted - - src/app/+accounts/accounts.component.html23 + src/app/+accounts/accounts.component.html23 + Muted by your instance Muted by your instance - - src/app/+accounts/accounts.component.html24 + src/app/+accounts/accounts.component.html24 + Instance muted by your instance Instance muted by your instance - - src/app/+accounts/accounts.component.html25 - Copy account handleCopy account handle + src/app/+accounts/accounts.component.html25 + + + Copy account handle + Copy account handle src/app/+accounts/accounts.component.html 31 - - {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}}{VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html28src/app/+video-channels/video-channels.component.html73src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 - {VAR_PLURAL, plural, =1 {1 videos} other { videos}}{VAR_PLURAL, plural, =1 {1 videos} other { videos}} + + + {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} + {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html28 + src/app/+video-channels/video-channels.component.html73 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + + + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} src/app/+accounts/accounts.component.html 41 - - + + + + src/app/+accounts/accounts.component.html 41,42 - - Show the complete descriptionShow the complete description - - - src/app/+accounts/accounts.component.html55src/app/+video-channels/video-channels.component.html94 - Show more... Show more... - - - src/app/+accounts/accounts.component.html57src/app/+video-channels/video-channels.component.html96 - Manage account Manage account - - src/app/+accounts/accounts.component.html62 - Search account videosSearch account videos - - src/app/+accounts/accounts.component.html80 - CHANNELSCHANNELS + + + Show the complete description + Show the complete description + src/app/+accounts/accounts.component.html55 + src/app/+video-channels/video-channels.component.html94 + + + Show more... + Show more... + src/app/+accounts/accounts.component.html57 + src/app/+video-channels/video-channels.component.html96 + + + Manage account + Manage account + src/app/+accounts/accounts.component.html62 + + + Search account videos + Search account videos + src/app/+accounts/accounts.component.html80 + + + CHANNELS + CHANNELS src/app/+accounts/accounts.component.ts 82 - 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.html23src/app/+my-library/+my-video-channels/my-video-channels.component.html28src/app/+video-channels/video-channels.component.html73 - {VAR_PLURAL, plural, =1 {1 videos} other { videos}}{VAR_PLURAL, plural, =1 {1 videos} other { videos}} - - src/app/+accounts/account-video-channels/account-video-channels.component.html26 - - - src/app/+accounts/account-video-channels/account-video-channels.component.html26 - Show this channelShow this channel - - src/app/+accounts/account-video-channels/account-video-channels.component.html35 + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+my-library/+my-video-channels/my-video-channels.component.html28 + src/app/+video-channels/video-channels.component.html73 + + + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + + + + + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + + + Show this channel + Show this channel + src/app/+accounts/account-video-channels/account-video-channels.component.html35 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos} } - - src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + src/app/+my-library/+my-video-channels/my-video-channels.component.html30 + Do you really want to delete ? It will delete videos uploaded in this channel, and you will not be able to create another @@ -5841,8 +6192,8 @@ 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 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts44 + My Channels My Channels @@ -5858,32 +6209,26 @@ channel with the same name ()! See this video channel Veure aquest canal de vídeo - - src/app/+accounts/account-video-channels/account-video-channels.component.html13src/app/+accounts/account-video-channels/account-video-channels.component.html17src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + src/app/+accounts/account-video-channels/account-video-channels.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html17 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + This channel doesn't have any videos. This channel doesn't have any videos. - - src/app/+accounts/account-video-channels/account-video-channels.component.html38 - SHOW THIS CHANNEL >SHOW THIS CHANNEL > - - src/app/+accounts/account-video-channels/account-video-channels.component.html46 - - - + src/app/+accounts/account-video-channels/account-video-channels.component.html38 + + + SHOW THIS CHANNEL > + SHOW THIS CHANNEL > + src/app/+accounts/account-video-channels/account-video-channels.component.html46 + Stats Estadístiques - - src/app/menu/menu.component.html139 - - - - - - - - + src/app/menu/menu.component.html139 + This channel does not have playlists. This channel does not have playlists. @@ -5903,14 +6248,18 @@ channel with the same name ()! Follows Follows src/app/+about/about-follows/about-follows.component.html2 - - Follower instances ()Follower instances () + + + Follower instances () + Follower instances () src/app/+about/about-follows/about-follows.component.html 4 - - Following instances ()Following instances () + + + Following instances () + Following instances () src/app/+about/about-follows/about-follows.component.html 16 @@ -5981,14 +6330,15 @@ 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 @@ -6023,9 +6373,10 @@ channel with the same name ()! Features found on this instance Features found on this instance - - - src/app/shared/shared-instance/instance-features-table.component.html4src/app/shared/shared-instance/instance-about-accordion.component.html6src/app/shared/shared-instance/instance-about-accordion.component.html6 + src/app/shared/shared-instance/instance-features-table.component.html4 + src/app/shared/shared-instance/instance-about-accordion.component.html6 + src/app/shared/shared-instance/instance-about-accordion.component.html6 + STATISTICS STATISTICS @@ -6106,8 +6457,10 @@ channel with the same name ()! follows applies only if you want to keep using the P2P mode of PeerTube. src/app/+about/about-peertube/about-peertube.component.html75 - - The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. + + + The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. + The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. src/app/+about/about-peertube/about-peertube.component.html 81,83 @@ -6161,27 +6514,28 @@ channel with the same name ()! 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.html114 - - Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See this document for more information Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See this document for more information + + + Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See this document for more information + Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See this document for more information src/app/+about/about-peertube/about-peertube.component.html 118,122 - The worst-case scenario of an average person spying on their friends is quite unlikely. There are much more effective ways to get that kind of information. 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.html126 + src/app/+about/about-peertube/about-peertube.component.html126 + How does PeerTube compare with YouTube? How does PeerTube compare with YouTube? - - src/app/+about/about-peertube/about-peertube.component.html130 + src/app/+about/about-peertube/about-peertube.component.html130 + The threats to privacy with YouTube are different from PeerTube's. In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). @@ -6189,13 +6543,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.html133 + src/app/+about/about-peertube/about-peertube.component.html133 + What can I do to limit the exposure of my IP address? Què puc fer per limitar l'exposició de la meva adreça IP? - - src/app/+about/about-peertube/about-peertube.component.html138 + src/app/+about/about-peertube/about-peertube.component.html138 + Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. @@ -6204,51 +6558,52 @@ 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.html141 + src/app/+about/about-peertube/about-peertube.component.html141 + What will be done to mitigate this problem? Què es farà per mitigar aquest problema? - - src/app/+about/about-peertube/about-peertube.component.html147 + src/app/+about/about-peertube/about-peertube.component.html147 + PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far: PeerTube 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.html150 + src/app/+about/about-peertube/about-peertube.component.html150 + 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.html155 + src/app/+about/about-peertube/about-peertube.component.html155 + 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.html156 + src/app/+about/about-peertube/about-peertube.component.html156 + 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.html157 + src/app/+about/about-peertube/about-peertube.component.html157 + Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser. 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.html161 - + src/app/+about/about-peertube/about-peertube.component.html161 + This instance does not have instances followers. This instance does not have instances followers. src/app/+about/about-follows/about-follows.component.html6 - - Show full listShow full list + + + Show full list + Show full list src/app/+about/about-follows/about-follows.component.html 12 @@ -6261,29 +6616,28 @@ channel with the same name ()! This instance is not following any other. This instance is not following any other. - - src/app/+about/about-follows/about-follows.component.html18 - + src/app/+about/about-follows/about-follows.component.html18 + About this instance About this instance - - src/app/+about/about-routing.module.ts25 + src/app/+about/about-routing.module.ts25 + About PeerTube About PeerTube - - src/app/+about/about-routing.module.ts50 + src/app/+about/about-routing.module.ts50 + About this instance's network About this instance's network - - src/app/+about/about-routing.module.ts59 + src/app/+about/about-routing.module.ts59 + Link copied Link copied - - src/app/+about/about-instance/about-instance.component.ts98 + src/app/+about/about-instance/about-instance.component.ts98 + Developed with ❤ by Framasoft Developed with ❤ by @@ -6299,7 +6653,6 @@ channel with the same name ()! src/app/+signup/+register/register.component.html4 - Get help Get help @@ -6308,39 +6661,39 @@ channel with the same name ()! Create my account Crear el meu compte - - src/app/+signup/+register/register.component.html39 + src/app/+signup/+register/register.component.html39 + PeerTube is creating your account... PeerTube està creant el vostre compte ... - - src/app/+signup/+register/register.component.html47 + src/app/+signup/+register/register.component.html47 + Done Fet - - src/app/+signup/+register/register.component.html43 + src/app/+signup/+register/register.component.html43 + Who are we? Qui sóm? - - src/app/shared/shared-instance/instance-about-accordion.component.html19 + src/app/shared/shared-instance/instance-about-accordion.component.html19 + How long do we plan to maintain this instance? Quant de temps pretenem mantenir aquesta instància? - - src/app/shared/shared-instance/instance-about-accordion.component.html24 + src/app/shared/shared-instance/instance-about-accordion.component.html24 + How will we finance this instance? Com finançarem aquesta instància? - - src/app/shared/shared-instance/instance-about-accordion.component.html29 + src/app/shared/shared-instance/instance-about-accordion.component.html29 + Administrators & Sustainability Administrators & Sustainability - - - src/app/shared/shared-instance/instance-about-accordion.component.html15src/app/shared/shared-instance/instance-about-accordion.component.html15 + src/app/shared/shared-instance/instance-about-accordion.component.html15 + src/app/shared/shared-instance/instance-about-accordion.component.html15 + Step Step @@ -6397,8 +6750,10 @@ channel with the same name ()! Channel name cannot be the same as your account name. You can click on the first step to update your account name. Channel name cannot be the same as your account name. You can click on the first step to update your account name. src/app/+signup/+register/register-step-channel.component.html51 - - I am at least years old and agree to the Terms and to the Code of Conduct of this instance I am at least years old and agree to the Terms and to the Code of Conduct of this instance + + + I am at least years old and agree to the Terms and to the Code of Conduct of this instance + I am at least years old and agree to the Terms and to the Code of Conduct of this instance src/app/+signup/+register/register-step-terms.component.html 5,10 @@ -6419,32 +6774,34 @@ channel with the same name ()! 4,5 - 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.ts89 + src/app/+about/about-instance/contact-admin-modal.component.ts89 + You already sent this form recently You already sent this form recently - - src/app/+about/about-instance/contact-admin-modal.component.ts95 - + src/app/+about/about-instance/contact-admin-modal.component.ts95 + Account videos Account videos - - src/app/+accounts/accounts-routing.module.ts36 - Search videos within accountSearch videos within account - - src/app/+accounts/accounts-routing.module.ts49 - ACCOUNTACCOUNT + src/app/+accounts/accounts-routing.module.ts36 + + + Search videos within account + Search videos within account + src/app/+accounts/accounts-routing.module.ts49 + + + ACCOUNT + ACCOUNT src/app/+accounts/accounts.component.html 8 @@ -6453,182 +6810,198 @@ channel with the same name ()! Account video channels Account video channels - - src/app/+accounts/accounts-routing.module.ts27 - + src/app/+accounts/accounts-routing.module.ts27 + Published videos Published videos - - - src/app/+accounts/account-search/account-search.component.ts95 + src/app/+accounts/account-search/account-search.component.ts95 + Display all videos (private, unlisted or not yet published) Display all videos (private, unlisted or not yet published) - - - - - - - - src/app/shared/shared-video-miniature/abstract-video-list.html36src/app/shared/shared-video-miniature/abstract-video-list.html36src/app/shared/shared-video-miniature/abstract-video-list.html36src/app/shared/shared-video-miniature/abstract-video-list.html36src/app/shared/shared-video-miniature/abstract-video-list.html36src/app/shared/shared-video-miniature/abstract-video-list.html36src/app/shared/shared-video-miniature/abstract-video-list.html36 + src/app/shared/shared-video-miniature/abstract-video-list.html36 + src/app/shared/shared-video-miniature/abstract-video-list.html36 + src/app/shared/shared-video-miniature/abstract-video-list.html36 + src/app/shared/shared-video-miniature/abstract-video-list.html36 + src/app/shared/shared-video-miniature/abstract-video-list.html36 + src/app/shared/shared-video-miniature/abstract-video-list.html36 + src/app/shared/shared-video-miniature/abstract-video-list.html36 + direct account followers direct account followers - - src/app/+accounts/accounts.component.ts155 + src/app/+accounts/accounts.component.ts155 + Report this account Report this account - - src/app/+accounts/accounts.component.ts196 - + src/app/+accounts/accounts.component.ts196 + VIDEOS - VIDEOS - - - src/app/+accounts/accounts.component.ts83src/app/+video-channels/video-channels.component.ts76 - + VÍDEOS + src/app/+accounts/accounts.component.ts83 + src/app/+video-channels/video-channels.component.ts76 + Username copied Username copied - - - src/app/+accounts/accounts.component.ts121src/app/+video-channels/video-channels.component.ts103 + src/app/+accounts/accounts.component.ts121 + src/app/+video-channels/video-channels.component.ts103 + 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 + Instances you follow Instances you follow - - src/app/+admin/admin.component.ts29src/app/+admin/follows/following-list/following-list.component.html3 + src/app/+admin/admin.component.ts29 + src/app/+admin/follows/following-list/following-list.component.html3 + Instances following you Instances following you - - src/app/+admin/admin.component.ts34src/app/+admin/follows/followers-list/followers-list.component.html3 + src/app/+admin/admin.component.ts34 + src/app/+admin/follows/followers-list/followers-list.component.html3 + Audio-only Audio-only - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts17 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts17 + A <code>.mp4</code> that keeps the original audio track, with no video A <code>.mp4</code> that keeps the original audio track, with no video - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts18 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts18 + 240p 240p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts22 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts22 + 360p 360p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts26 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts26 + 480p 480p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts30 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts30 + 720p 720p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts34 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts34 + 1080p 1080p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts38 - 1440p1440p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts42 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts38 + + + 1440p + 1440p + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts42 + 2160p 2160p - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts46 + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts46 + Auto (via ffmpeg) Auto (via ffmpeg) - - src/app/+admin/config/shared/config.service.ts50 + src/app/+admin/config/shared/config.service.ts50 + 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 - x264, targeting maximum device compatibilityx264, targeting maximum device compatibility - - - src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts55src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.ts50 - Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts38 + + + x264, targeting maximum device compatibility + x264, targeting maximum device compatibility + src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts55 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.ts50 + + + Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. + Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 9,10 - - However, you may want to read our guidelines before tweaking the following values. However, you may want to read our guidelines before tweaking the following values. + + + However, you may want to read our guidelines before tweaking the following values. + However, you may want to read our guidelines before tweaking the following values. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 12,13 - - Read guidelines Read guidelines + + + Read guidelines + Read guidelines src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 17,18 - - Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. + + + Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. + Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html 28,30 - - threadsthreads - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts86 - threadthread - - src/app/+admin/config/edit-custom-config/edit-configuration.service.ts87 - HomepageHomepage + + + threads + threads + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts86 + + + thread + thread + src/app/+admin/config/edit-custom-config/edit-configuration.service.ts87 + + + Homepage + Homepage src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 7 @@ -6637,14 +7010,18 @@ channel with the same name ()! src/app/+admin/config/edit-custom-config/edit-homepage.component.html 13 - - InformationInformation + + + Information + Information src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 15 - - BasicBasic + + + Basic + Basic src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 24 @@ -6653,9 +7030,11 @@ channel with the same name ()! Configuration updated. S'ha actualitzat la configuració. - - src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts284 - INSTANCE HOMEPAGEINSTANCE HOMEPAGE + src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts284 + + + INSTANCE HOMEPAGE + INSTANCE HOMEPAGE src/app/+admin/config/edit-custom-config/edit-homepage.component.html 7 @@ -6664,8 +7043,8 @@ channel with the same name ()! You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below. You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts101 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts101 + Edit custom configuration Edit custom configuration @@ -6711,31 +7090,31 @@ channel with the same name ()! Unlimited Il·limitat - - - - - - - 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 - - - src/app/+admin/config/shared/config.service.ts23src/app/+admin/config/shared/config.service.ts37 + src/app/+admin/config/shared/config.service.ts23 + src/app/+admin/config/shared/config.service.ts37 + 100MB 100MB - - - src/app/+admin/config/shared/config.service.ts24src/app/+admin/config/shared/config.service.ts40 + src/app/+admin/config/shared/config.service.ts24 + src/app/+admin/config/shared/config.service.ts40 + 500MB 500MB - - - src/app/+admin/config/shared/config.service.ts25src/app/+admin/config/shared/config.service.ts41 + src/app/+admin/config/shared/config.service.ts25 + src/app/+admin/config/shared/config.service.ts41 + 1GB 1GB @@ -6744,32 +7123,40 @@ channel with the same name ()! 5GB 5GB - - - src/app/+admin/config/shared/config.service.ts27src/app/+admin/config/shared/config.service.ts43 + src/app/+admin/config/shared/config.service.ts27 + src/app/+admin/config/shared/config.service.ts43 + 20GB 20GB - - src/app/+admin/config/shared/config.service.ts28src/app/+admin/config/shared/config.service.ts45 + src/app/+admin/config/shared/config.service.ts28 + src/app/+admin/config/shared/config.service.ts45 + 50GB 50GB - - src/app/+admin/config/shared/config.service.ts29src/app/+admin/config/shared/config.service.ts46 - 100GB100GB + src/app/+admin/config/shared/config.service.ts29 + src/app/+admin/config/shared/config.service.ts46 + + + 100GB + 100GB src/app/+admin/config/shared/config.service.ts 30 - - 200GB200GB + + + 200GB + 200GB src/app/+admin/config/shared/config.service.ts 31 - - 500GB500GB + + + 500GB + 500GB src/app/+admin/config/shared/config.service.ts 32 @@ -6778,19 +7165,21 @@ channel with the same name ()! 10MB 10MB - - src/app/+admin/config/shared/config.service.ts38 + src/app/+admin/config/shared/config.service.ts38 + 50MB 50MB - - src/app/+admin/config/shared/config.service.ts39 + src/app/+admin/config/shared/config.service.ts39 + 2GB 2GB - - src/app/+admin/config/shared/config.service.ts42 - 10GB10GB + src/app/+admin/config/shared/config.service.ts42 + + + 10GB + 10GB src/app/+admin/config/shared/config.service.ts 44 @@ -6828,29 +7217,29 @@ 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.ts87src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163src/app/+admin/users/user-list/user-list.component.ts85src/app/+admin/users/user-list/user-list.component.ts199src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.ts115src/app/+my-library/my-videos/my-videos.component.ts142src/app/+my-library/my-videos/my-videos.component.ts183src/app/+videos/+video-watch/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts144src/app/shared/shared-abuse-list/abuse-list-table.component.ts386src/app/shared/shared-abuse-list/abuse-list-table.component.ts421src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts87 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + src/app/+admin/users/user-list/user-list.component.ts85 + src/app/+admin/users/user-list/user-list.component.ts199 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.ts115 + src/app/+my-library/my-videos/my-videos.component.ts142 + src/app/+my-library/my-videos/my-videos.component.ts183 + src/app/+videos/+video-watch/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts144 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts386 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts421 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + removed from instance followers @@ -6937,8 +7326,8 @@ channel with the same name ()! Account unmuted by your instance. - - src/app/shared/shared-moderation/account-blocklist.component.ts44 + src/app/shared/shared-moderation/account-blocklist.component.ts44 + Instance unmuted by your instance. Instance @@ -6951,9 +7340,9 @@ channel with the same name ()! Instance muted. - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts143 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts143 + Instance muted by your instance. Instance @@ -6969,162 +7358,162 @@ 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/shared/shared-abuse-list/abuse-details.component.ts22 + src/app/shared/shared-abuse-list/abuse-details.component.ts22 + Copyright Copyright - - - src/app/shared/shared-abuse-list/abuse-details.component.ts23src/app/shared/shared-moderation/abuse.service.ts159 + src/app/shared/shared-abuse-list/abuse-details.component.ts23 + src/app/shared/shared-moderation/abuse.service.ts159 + 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.ts173 + src/app/shared/shared-abuse-list/abuse-details.component.ts25 + src/app/shared/shared-moderation/abuse.service.ts173 + Internal actions Internal actions - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts55src/app/shared/shared-abuse-list/abuse-list-table.component.ts254 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts55 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts254 + Delete report Delete report - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts285 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts285 + Actions for the flagged account Actions for the flagged account - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts296 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts296 + Mark as accepted Mark as accepted - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts270 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts270 + Mark as rejected Mark as rejected - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts275 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts275 + Add internal note Add internal note - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts280 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts280 + Actions for the video Actions for the video - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts78src/app/shared/shared-abuse-list/abuse-list-table.component.ts344 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts78 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts344 + Block video Block video - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts349 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts349 + Video blocked. Video blocked. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts355src/app/shared/shared-moderation/video-block.component.ts60 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts355 + src/app/shared/shared-moderation/video-block.component.ts60 + Unblock video Unblock video - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts365 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts365 + Video unblocked. Video unblocked. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts371 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts371 + 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.ts144 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts144 + Abuse deleted. Abuse deleted. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts149 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts149 + Deleted comment Deleted comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts225 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts225 + Messages with reporter Messages with reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts259 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts259 + Messages with moderators Messages with moderators - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts260 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts260 + Update internal note Update internal note - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts265 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts265 + Switch video block to manual Switch video block to manual - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts60 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts60 + Video switched to manual block. Video switched to manual block. - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts66 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts66 + 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.ts133src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts133 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + Unblock Unblock - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts82src/app/+admin/moderation/video-block-list/video-block-list.component.ts135src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts82 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts135 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + Video unblocked. Video unblocked. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts140src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts140 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + yes yes @@ -7140,55 +7529,61 @@ 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.ts86 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts86 + 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.ts89 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts89 + Update to Update to - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts97 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts97 + Do you really want to uninstall ? Do you really want to uninstall ? - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110 + Uninstall Uninstall - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts112 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts112 + uninstalled. uninstalled. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts118 - This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts134 - UpgradeUpgrade - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts135 - Proceed upgradeProceed upgrade - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts136 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts118 + + + This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes. + This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes. + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts134 + + + Upgrade + Upgrade + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts135 + + + Proceed upgrade + Proceed upgrade + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts136 + updated. updated. - - src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts150 + src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts150 + Jobs Jobs @@ -7202,32 +7597,32 @@ channel with the same name ()! 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.ts100 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts100 + Please only install plugins or themes you trust, since they can execute any code on your instance. 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.ts134 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts134 + Install ? Install ? - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts135 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts135 + installed. installed. - - src/app/+admin/plugins/plugin-search/plugin-search.component.ts147 + src/app/+admin/plugins/plugin-search/plugin-search.component.ts147 + Settings updated. Settings updated. - - src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts55 + src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts55 + Plugins Plugins @@ -7247,56 +7642,74 @@ channel with the same name ()! theme theme src/app/+admin/plugins/shared/plugin-api.service.ts48 - - IP addressIP address + + + 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 @@ -7305,38 +7718,38 @@ channel with the same name ()! Last week Last week - - src/app/+admin/system/logs/logs.component.ts87 + src/app/+admin/system/logs/logs.component.ts87 + Last day Last day - - src/app/+admin/system/logs/logs.component.ts92 + src/app/+admin/system/logs/logs.component.ts92 + Last hour Last hour - - src/app/+admin/system/logs/logs.component.ts97 + src/app/+admin/system/logs/logs.component.ts97 + debug debug - - src/app/+admin/system/logs/logs.component.ts109 + src/app/+admin/system/logs/logs.component.ts109 + info info - - src/app/+admin/system/logs/logs.component.ts113 + src/app/+admin/system/logs/logs.component.ts113 + warning warning - - src/app/+admin/system/logs/logs.component.ts117 + src/app/+admin/system/logs/logs.component.ts117 + error error - - src/app/+admin/system/logs/logs.component.ts121 + src/app/+admin/system/logs/logs.component.ts121 + Debug Debug @@ -7355,26 +7768,26 @@ channel with the same name ()! Error Error - - - src/app/core/auth/auth.service.ts104src/app/core/notification/notifier.service.ts18 + src/app/core/auth/auth.service.ts104 + src/app/core/notification/notifier.service.ts18 + Standard logs Standard logs - - src/app/+admin/system/logs/logs.component.ts132 + src/app/+admin/system/logs/logs.component.ts132 + Audit logs Audit logs - - src/app/+admin/system/logs/logs.component.ts136 + src/app/+admin/system/logs/logs.component.ts136 + User created. Usuari creat. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -7417,20 +7830,20 @@ channel with the same name ()! User updated. - - src/app/+admin/users/user-edit/user-update.component.ts88 + src/app/+admin/users/user-edit/user-update.component.ts88 + Update user Actualitzar usuari - - src/app/+admin/users/user-edit/user-update.component.ts105 + src/app/+admin/users/user-edit/user-update.component.ts105 + An email asking for password reset has been sent to . An email asking for password reset has been sent to . - - src/app/+admin/users/user-edit/user-update.component.ts111 + src/app/+admin/users/user-edit/user-update.component.ts111 + Users list Users list @@ -7444,8 +7857,8 @@ channel with the same name ()! Update a user Update a user - - src/app/+admin/users/users.routes.ts45 + src/app/+admin/users/users.routes.ts45 + Federation Federation @@ -7464,135 +7877,138 @@ channel with the same name ()! Videos will be deleted, comments will be tombstoned. Videos will be deleted, comments will be tombstoned. - - - src/app/+admin/users/user-list/user-list.component.ts82src/app/shared/shared-moderation/user-moderation-dropdown.component.ts265 + src/app/+admin/users/user-list/user-list.component.ts82 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts265 + Ban Ban - - - src/app/+admin/users/user-list/user-list.component.ts91src/app/shared/shared-moderation/user-moderation-dropdown.component.ts274 + src/app/+admin/users/user-list/user-list.component.ts91 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts274 + User won't be able to login anymore, but videos and comments will be kept as is. User won't be able to login anymore, but videos and comments will be kept as is. - - - src/app/+admin/users/user-list/user-list.component.ts88src/app/shared/shared-moderation/user-moderation-dropdown.component.ts270 + src/app/+admin/users/user-list/user-list.component.ts88 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts270 + Unban Unban - - - - src/app/+admin/users/user-list/user-list.component.ts93src/app/+admin/users/user-list/user-list.component.ts172src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + src/app/+admin/users/user-list/user-list.component.ts93 + src/app/+admin/users/user-list/user-list.component.ts172 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + Set Email as Verified Set Email as Verified - - - src/app/+admin/users/user-list/user-list.component.ts100src/app/shared/shared-moderation/user-moderation-dropdown.component.ts281 + src/app/+admin/users/user-list/user-list.component.ts100 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts281 + You cannot ban root. You cannot ban root. - - - src/app/+admin/users/user-list/user-list.component.ts159src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + src/app/+admin/users/user-list/user-list.component.ts159 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + Do you really want to unban users? Do you really want to unban users? - - src/app/+admin/users/user-list/user-list.component.ts172 + src/app/+admin/users/user-list/user-list.component.ts172 + users unbanned. users unbanned. - - src/app/+admin/users/user-list/user-list.component.ts178 + src/app/+admin/users/user-list/user-list.component.ts178 + You cannot delete root. No pots esborrar root. - - - src/app/+admin/users/user-list/user-list.component.ts189src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + src/app/+admin/users/user-list/user-list.component.ts189 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + If you remove these users, you will not be able to create others with the same username! If you remove these users, you will not be able to create others with the same username! - - src/app/+admin/users/user-list/user-list.component.ts194 + src/app/+admin/users/user-list/user-list.component.ts194 + users deleted. users deleted. - - src/app/+admin/users/user-list/user-list.component.ts200 + src/app/+admin/users/user-list/user-list.component.ts200 + users email set as verified. users email set as verified. - - src/app/+admin/users/user-list/user-list.component.ts211 + src/app/+admin/users/user-list/user-list.component.ts211 + Account unmuted. Account unmuted. - - - src/app/shared/shared-moderation/account-blocklist.component.ts43src/app/shared/shared-moderation/user-moderation-dropdown.component.ts129 + src/app/shared/shared-moderation/account-blocklist.component.ts43 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts129 + Instance unmuted. Instance unmuted. - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts157 - + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts157 + Videos history is enabled Videos history is enabled - - src/app/+my-library/my-history/my-history.component.ts113 + src/app/+my-library/my-history/my-history.component.ts113 + Videos history is disabled Videos history is disabled - - src/app/+my-library/my-history/my-history.component.ts114 + src/app/+my-library/my-history/my-history.component.ts114 + Delete videos history Delete videos history - - src/app/+my-library/my-history/my-history.component.ts126 + src/app/+my-library/my-history/my-history.component.ts126 + 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.ts127 + src/app/+my-library/my-history/my-history.component.ts127 + Videos history deleted Videos history deleted - - src/app/+my-library/my-history/my-history.component.ts135 - My watch historyMy watch history + src/app/+my-library/my-history/my-history.component.ts135 + + + My watch history + Historial de visualitzacions src/app/+my-library/my-history/my-history.component.html 3 - - Track watch historyTrack watch history - - src/app/+my-library/my-history/my-history.component.html13 + + + Track watch history + Track watch history + src/app/+my-library/my-history/my-history.component.html13 + Ownership accepted 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. @@ -7602,9 +8018,10 @@ channel with the same name ()! Email updated. Email updated. src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts55 - - Your current email is . It is never shown to the public. - Your current email is . It is never shown to the public. + + + Your current email is . It is never shown to the public. + Your current email is . It is never shown to the public. src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html @@ -7650,9 +8067,9 @@ channel with the same name ()! Interface settings updated. Interface settings updated. - - - src/app/shared/shared-user-settings/user-interface-settings.component.ts72src/app/shared/shared-user-settings/user-interface-settings.component.ts79 + src/app/shared/shared-user-settings/user-interface-settings.component.ts72 + src/app/shared/shared-user-settings/user-interface-settings.component.ts79 + New video from your subscriptions New video from your subscriptions @@ -7722,14 +8139,18 @@ 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 @@ -7738,14 +8159,16 @@ channel with the same name ()! Preferences saved Preferences saved - - src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + Profile updated. S'ha actualitzat el perfil. - - src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts58 - People can find you using @@ People can find you using @@ + src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts58 + + + People can find you using @@ + People can find you using @@ src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html 11,13 @@ -7754,86 +8177,94 @@ channel with the same name ()! Avatar changed. Avatar canviat. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts44src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts105 + src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts105 + avatar avatar - - src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts112 - Avatar deleted.Avatar deleted. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts61src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts122 + src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts112 + + + Avatar deleted. + Avatar deleted. + src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts122 + Unknown language Unknown language - - src/app/shared/shared-user-settings/user-video-settings.component.ts55 + src/app/shared/shared-user-settings/user-video-settings.component.ts55 + 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.ts92 - + src/app/shared/shared-user-settings/user-video-settings.component.ts92 + Video settings updated. Video settings updated. - - src/app/shared/shared-user-settings/user-video-settings.component.ts169 + src/app/shared/shared-user-settings/user-video-settings.component.ts169 + Display/Video settings updated. Display/Video settings updated. - - src/app/shared/shared-user-settings/user-video-settings.component.ts178 + src/app/shared/shared-user-settings/user-video-settings.component.ts178 + Video channel created. Canal de vídeo creat. - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts67 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts67 + This name already exists on this instance. This name already exists on this instance. - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts73 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts73 + Video channel updated. Canal de vídeo actualitzat. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts92 - Banner changed.Banner changed. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts135 - bannerbanner - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts142 - Banner deleted.Banner deleted. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts152 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts92 + + + Banner changed. + Banner changed. + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts135 + + + banner + banner + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts142 + + + Banner deleted. + Banner deleted. + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts152 + Please type the display name of the video channel () to confirm Please type the display name of the video channel ( ) to confirm - - src/app/+my-library/+my-video-channels/my-video-channels.component.ts48 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts48 + Video channel deleted. Canal de vídeo eliminat. - - 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 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts88 + Update video channel Update video channel @@ -7843,26 +8274,34 @@ channel with the same name ()! Not found Not found src/app/+page-not-found/page-not-found-routing.module.ts14 - - URL parameter is missing in URL parametersURL parameter is missing in URL parameters + + + URL parameter is missing in URL parameters + URL parameter is missing in URL parameters src/app/+remote-interaction/remote-interaction.component.ts 25 - - Cannot access to the remote resourceCannot access to the remote resource + + + Cannot access to the remote resource + Cannot access to the remote resource src/app/+remote-interaction/remote-interaction.component.ts 48 - - Reset passwordReset password + + + Reset password + Reset password src/app/+reset-password/reset-password-routing.module.ts 11 - - Remote interactionRemote interaction + + + Remote interaction + Remote interaction src/app/+remote-interaction/remote-interaction-routing.module.ts 13 @@ -7878,18 +8317,18 @@ channel with the same name ()! Create Create - - - src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts103src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89 + src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts103 + src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89 + Update playlist Update playlist - - - src/app/+my-library/my-library-routing.module.ts66src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47 + src/app/+my-library/my-library-routing.module.ts66 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47 + Notifications - Notifications + Notificacions src/app/+my-account/my-account.component.ts55 src/app/+my-account/my-account-routing.module.ts109 @@ -7916,15 +8355,15 @@ 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.ts141 + 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.ts141 + Change ownership Change ownership - - src/app/+my-library/my-videos/my-videos.component.ts178 + src/app/+my-library/my-videos/my-videos.component.ts178 + Playlist deleted. Playlist @@ -7940,22 +8379,23 @@ channel with the same name ()! Ownership changes Ownership changes - - src/app/+my-library/my-library-routing.module.ts107src/app/+my-library/my-videos/my-videos.component.html16 + src/app/+my-library/my-library-routing.module.ts107 + src/app/+my-library/my-videos/my-videos.component.html16 + Do you really want to delete videos? Estàs realment segur de eliminar els vídeos? - - src/app/+my-library/my-videos/my-videos.component.ts114 + src/app/+my-library/my-videos/my-videos.component.ts114 + videos deleted. vídeos eliminats. - - src/app/+my-library/my-videos/my-videos.component.ts131 + src/app/+my-library/my-videos/my-videos.component.ts131 + Do you really want to delete ? Vols realment eliminar @@ -7971,9 +8411,9 @@ channel with the same name ()! Vídeo eliminat. - - - src/app/+my-library/my-videos/my-videos.component.ts149src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + src/app/+my-library/my-videos/my-videos.component.ts149 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214 + Ownership change request sent. Ownership change request sent. @@ -7982,29 +8422,28 @@ 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-video-playlists/my-video-playlists.component.html3 + Les meues llistes de reproducció + src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 + My subscriptions - My subscriptions + Les meues subscripcions src/app/+my-library/my-subscriptions/my-subscriptions.component.html4 - You don't have any subscription yet.You don't have any subscription yet. - - src/app/+my-library/my-subscriptions/my-subscriptions.component.html13 - + You don't have any subscription yet. + You don't have any subscription yet. + src/app/+my-library/my-subscriptions/my-subscriptions.component.html13 + My abuse reports 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 @@ -8013,13 +8452,13 @@ channel with the same name ()! My video history My video history - - src/app/+my-library/my-library-routing.module.ts117 + src/app/+my-library/my-library-routing.module.ts117 + Channels Channels - - src/app/+my-library/my-library.component.ts45 + src/app/+my-library/my-library.component.ts45 + Videos Videos @@ -8027,44 +8466,44 @@ channel with the same name ()! Playlists - Playlists + Llistes de reproducció src/app/+my-library/my-library.component.ts61 max size max size - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47src/app/shared/shared-forms/preview-upload.component.ts39 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts47 + src/app/shared/shared-forms/preview-upload.component.ts39 + Maximize editor Maximize editor - - src/app/shared/shared-forms/markdown-textarea.component.ts48 + src/app/shared/shared-forms/markdown-textarea.component.ts48 + Exit maximized editor Exit maximized editor - - src/app/shared/shared-forms/markdown-textarea.component.ts49 + src/app/shared/shared-forms/markdown-textarea.component.ts49 + 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.ts130 + src/app/+signup/+register/register.component.ts130 + You are now logged in as ! You are now logged in as ! - - src/app/+signup/+register/register.component.ts138 + src/app/+signup/+register/register.component.ts138 + 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.ts39 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 + Unable to find user id or verification string. No es pot trobar l'identificador d'usuari ni la cadena de verificació. @@ -8074,113 +8513,121 @@ channel with the same name ()! Published videos Vídeos publicats - - src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts56 - + src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts56 + Subscribe to the account Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 - PLAYLISTSPLAYLISTS + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 + + PLAYLISTS + PLAYLISTS src/app/+video-channels/video-channels.component.ts 77 - Focus the search bar Focus the search bar - - src/app/app.component.ts300 + src/app/app.component.ts300 + Toggle the left menu Toggle the left menu - - src/app/app.component.ts305 + src/app/app.component.ts305 + Go to the discover videos page Vés a la pàgina de descobrir vídeos - - src/app/app.component.ts310 + src/app/app.component.ts310 + Go to the trending videos page Vés a la pàgina de vídeos tendència - - src/app/app.component.ts315 + src/app/app.component.ts315 + Go to the recently added videos page Go to the recently added videos page - - src/app/app.component.ts320 + src/app/app.component.ts320 + Go to the local videos page Go to the local videos page - - src/app/app.component.ts325 + src/app/app.component.ts325 + Go to the videos upload page Go to the videos upload page - - src/app/app.component.ts330 + src/app/app.component.ts330 + Go to my subscriptions Go to my subscriptions - - src/app/core/auth/auth.service.ts64 + src/app/core/auth/auth.service.ts64 + Go to my videos Go to my videos - - src/app/core/auth/auth.service.ts68 + src/app/core/auth/auth.service.ts68 + Go to my imports Go to my imports - - src/app/core/auth/auth.service.ts72 + src/app/core/auth/auth.service.ts72 + Go to my channels Go to my channels - - src/app/core/auth/auth.service.ts76 + src/app/core/auth/auth.service.ts76 + 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.ts99 + src/app/core/auth/auth.service.ts99 + You need to reconnect. Necessites tornar a connectar. - - src/app/core/auth/auth.service.ts220 + src/app/core/auth/auth.service.ts220 + 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 - - TrendingTrending - - src/app/core/menu/menu.service.ts131 - ON ON + + + Trending + Trending + 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 Èxit @@ -8189,107 +8636,111 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Incorrect username or password. Incorrect username or password. - - src/app/+login/login.component.ts159 + src/app/+login/login.component.ts159 + Your account is blocked. Your account is blocked. - - src/app/+login/login.component.ts160 + src/app/+login/login.component.ts160 + any language any language - - src/app/menu/menu.component.ts263 - + src/app/menu/menu.component.ts263 + hide hide - - src/app/menu/menu.component.ts298 + src/app/menu/menu.component.ts298 + blur blur - - src/app/menu/menu.component.ts302 + src/app/menu/menu.component.ts302 + display display - - src/app/menu/menu.component.ts306 + src/app/menu/menu.component.ts306 + Unknown Unknown - - src/app/menu/menu.component.ts193 + src/app/menu/menu.component.ts193 + Your password has been successfully reset! La contrasenya s'ha restablit correctament! src/app/+reset-password/reset-password.component.ts47 - Today Avui - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/abstract-video-list.ts133 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/abstract-video-list.ts133 + Yesterday Yesterday - - src/app/shared/shared-video-miniature/abstract-video-list.ts134 + src/app/shared/shared-video-miniature/abstract-video-list.ts134 + This week This week - - src/app/shared/shared-video-miniature/abstract-video-list.ts135 + src/app/shared/shared-video-miniature/abstract-video-list.ts135 + This month This month - - src/app/shared/shared-video-miniature/abstract-video-list.ts136 + src/app/shared/shared-video-miniature/abstract-video-list.ts136 + Last month Last month - - src/app/shared/shared-video-miniature/abstract-video-list.ts137 + src/app/shared/shared-video-miniature/abstract-video-list.ts137 + Older Older - - src/app/shared/shared-video-miniature/abstract-video-list.ts138 + src/app/shared/shared-video-miniature/abstract-video-list.ts138 + Cannot load more videos. Try again later. Cannot load more videos. Try again later. - - src/app/shared/shared-video-miniature/abstract-video-list.ts223 - function is not implementedfunction is not implemented - - src/app/shared/shared-video-miniature/abstract-video-list.ts296 + src/app/shared/shared-video-miniature/abstract-video-list.ts223 + + + function is not implemented + function is not implemented + src/app/shared/shared-video-miniature/abstract-video-list.ts296 + Last 7 days Last 7 days - - src/app/+search/search-filters.component.ts45 + src/app/+search/search-filters.component.ts45 + Last 30 days Last 30 days - - src/app/+search/search-filters.component.ts49 + src/app/+search/search-filters.component.ts49 + Last 365 days Last 365 days - - src/app/+search/search-filters.component.ts53 - VOD videosVOD videos + src/app/+search/search-filters.component.ts53 + + + VOD videos + Vídeos sota demanda src/app/+search/search-filters.component.ts 60 - - Live videosLive videos + + + Live videos + Vídeos en directe src/app/+search/search-filters.component.ts 64 @@ -8298,50 +8749,55 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Short (< 4 min) Short (< 4 min) - - src/app/+search/search-filters.component.ts71 + src/app/+search/search-filters.component.ts71 + Medium (4-10 min) Medium (4-10 min) - - src/app/+search/search-filters.component.ts75 + src/app/+search/search-filters.component.ts75 + Long (> 10 min) Long (> 10 min) - - src/app/+search/search-filters.component.ts79 + src/app/+search/search-filters.component.ts79 + Relevance Relevance - - src/app/+search/search-filters.component.ts86 + src/app/+search/search-filters.component.ts86 + Publish date Publish date - - src/app/+search/search-filters.component.ts90 + src/app/+search/search-filters.component.ts90 + Views Views - - src/app/+search/search-filters.component.ts94src/app/+videos/video-list/trending/video-trending-header.component.ts55 + src/app/+search/search-filters.component.ts94 + src/app/+videos/video-list/trending/video-trending-header.component.ts55 + Search index is unavailable. Retrying with instance results instead. Search index is unavailable. Retrying with instance results instead. - - src/app/+search/search.component.ts153 + src/app/+search/search.component.ts153 + Search error Search error - - src/app/+search/search.component.ts154 + src/app/+search/search.component.ts154 + Search Search - - - src/app/+search/search-routing.module.ts15src/app/+search/search.component.ts242src/app/shared/shared-main/misc/simple-search-input.component.ts15src/app/shared/shared-main/misc/simple-search-input.component.ts16 - + src/app/+search/search-routing.module.ts15 + src/app/+search/search.component.ts242 + src/app/shared/shared-main/misc/simple-search-input.component.ts15 + src/app/shared/shared-main/misc/simple-search-input.component.ts16 + + + + src/app/+search/search.component.html 5 @@ -8352,9 +8808,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Fa anys - - 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 @@ -8364,15 +8822,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 17 - months ago Fa mesos - - 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 @@ -8382,61 +8841,63 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 24 - weeks ago Fa setmanes - - 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 Fa dies - - 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 Fa hores - - 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 Fa minuts - - 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 @@ -8508,32 +8969,39 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Signup limit is required. El límit de registre és obligatori. 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. El límit de registre ha de ser un número. 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 @@ -8542,75 +9010,95 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Admin email is required. Es necessita un correu electrònic d'administrador. - - src/app/shared/form-validators/custom-config-validators.ts64 + src/app/shared/form-validators/custom-config-validators.ts64 + Admin email must be valid. El correu electrònic d'administrador ha de ser vàlid. - - src/app/shared/form-validators/custom-config-validators.ts65 + src/app/shared/form-validators/custom-config-validators.ts65 + Transcoding threads is required. Es requereixen els subprocessos de transcodificació. - - 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 - Max live duration is required.Max live duration is required. - - src/app/shared/form-validators/custom-config-validators.ts80 - Max live duration should be greater or equal to -1.Max live duration should be greater or equal to -1. - - src/app/shared/form-validators/custom-config-validators.ts81 - Max instance lives is required.Max instance lives is required. - - src/app/shared/form-validators/custom-config-validators.ts88 - Max instance lives should be greater or equal to -1.Max instance lives should be greater or equal to -1. - - src/app/shared/form-validators/custom-config-validators.ts89 - Max user lives is required.Max user lives is required. - - src/app/shared/form-validators/custom-config-validators.ts96 - Max user lives should be greater or equal to -1.Max user lives should be greater or equal to -1. - - src/app/shared/form-validators/custom-config-validators.ts97 - Concurrency is required.Concurrency is required. - - src/app/shared/form-validators/custom-config-validators.ts104 - Concurrency should be greater or equal to 1.Concurrency should be greater or equal to 1. - - src/app/shared/form-validators/custom-config-validators.ts105 + src/app/shared/form-validators/custom-config-validators.ts73 + + + Max live duration is required. + Max live duration is required. + src/app/shared/form-validators/custom-config-validators.ts80 + + + Max live duration should be greater or equal to -1. + Max live duration should be greater or equal to -1. + src/app/shared/form-validators/custom-config-validators.ts81 + + + Max instance lives is required. + Max instance lives is required. + src/app/shared/form-validators/custom-config-validators.ts88 + + + Max instance lives should be greater or equal to -1. + Max instance lives should be greater or equal to -1. + src/app/shared/form-validators/custom-config-validators.ts89 + + + Max user lives is required. + Max user lives is required. + src/app/shared/form-validators/custom-config-validators.ts96 + + + Max user lives should be greater or equal to -1. + Max user lives should be greater or equal to -1. + src/app/shared/form-validators/custom-config-validators.ts97 + + + Concurrency is required. + Concurrency is required. + src/app/shared/form-validators/custom-config-validators.ts104 + + + Concurrency should be greater or equal to 1. + Concurrency should be greater or equal to 1. + src/app/shared/form-validators/custom-config-validators.ts105 + Index URL should be a URL Index URL should be a URL - - src/app/shared/form-validators/custom-config-validators.ts112 + src/app/shared/form-validators/custom-config-validators.ts112 + Search index URL should be a URL Search index URL should be a URL - - src/app/shared/form-validators/custom-config-validators.ts119 + src/app/shared/form-validators/custom-config-validators.ts119 + Email is required. Es requereix un correu electrònic. - - - 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. El correu electrònic ha de ser vàlid. - - - src/app/shared/form-validators/instance-validators.ts8src/app/shared/form-validators/user-validators.ts40 - Handle is required.Handle is required. - - src/app/shared/form-validators/user-validators.ts50 - Handle must be valid (eg. chocobozzz@example.com).Handle must be valid (eg. chocobozzz@example.com). - - src/app/shared/form-validators/user-validators.ts51 + src/app/shared/form-validators/instance-validators.ts8 + src/app/shared/form-validators/user-validators.ts40 + + + Handle is required. + Handle is required. + src/app/shared/form-validators/user-validators.ts50 + + + Handle must be valid (eg. chocobozzz@example.com). + Handle must be valid (eg. chocobozzz@example.com). + src/app/shared/form-validators/user-validators.ts51 + Your name is required. Your name is required. @@ -8659,16 +9147,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Username is required. Es requereix nom d'usuari. - - - 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. Es requereix contrasenya. - - - - 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. Es requereix confirmació de la contrasenya. @@ -8677,129 +9165,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. La contrasenya ha de tenir com a mínim 6 caràcters. - - - 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. La contrasenya no pot tenir més de 255 caràcters. - - - 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. La nova contrasenya i la contrasenya confirmada no es corresponen. - - src/app/shared/form-validators/user-validators.ts91 + src/app/shared/form-validators/user-validators.ts91 + Video quota is required. Es requereix una quota de vídeo. - - src/app/shared/form-validators/user-validators.ts98 + src/app/shared/form-validators/user-validators.ts98 + Quota must be greater than -1. La quota ha de ser superior a -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. Es requereix una funció d'usuari. - - src/app/shared/form-validators/user-validators.ts113 + src/app/shared/form-validators/user-validators.ts113 + Description must be at least 3 characters long. La descripció ha de tenir almenys 3 caràcters de longitud. - - - - src/app/shared/form-validators/user-validators.ts125src/app/shared/form-validators/video-channel-validators.ts38src/app/shared/form-validators/video-playlist-validators.ts33 + src/app/shared/form-validators/user-validators.ts125 + src/app/shared/form-validators/video-channel-validators.ts38 + 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.ts39src/app/shared/form-validators/video-playlist-validators.ts34 + src/app/shared/form-validators/user-validators.ts126 + src/app/shared/form-validators/video-channel-validators.ts39 + 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. El nom de visualització és obligatori. - - - - src/app/shared/form-validators/user-validators.ts155src/app/shared/form-validators/video-channel-validators.ts26src/app/shared/form-validators/video-playlist-validators.ts12 + src/app/shared/form-validators/user-validators.ts155 + src/app/shared/form-validators/video-channel-validators.ts26 + 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.ts27src/app/shared/form-validators/video-playlist-validators.ts13 + src/app/shared/form-validators/user-validators.ts156 + src/app/shared/form-validators/video-channel-validators.ts27 + 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.ts28 + src/app/shared/form-validators/user-validators.ts157 + src/app/shared/form-validators/video-channel-validators.ts28 + Report reason is required. Cal un motiu del informe. @@ -8909,11 +9397,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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.ts50 - - 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.html @@ -8958,21 +9445,21 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Live RTMP Url Live RTMP Url - - - src/app/shared/shared-video-live/live-stream-information.component.html19src/app/+videos/+video-edit/shared/video-edit.component.html218 + src/app/shared/shared-video-live/live-stream-information.component.html19 + src/app/+videos/+video-edit/shared/video-edit.component.html218 + Live stream key Live stream key - - - src/app/shared/shared-video-live/live-stream-information.component.html24src/app/+videos/+video-edit/shared/video-edit.component.html223 + src/app/shared/shared-video-live/live-stream-information.component.html24 + src/app/+videos/+video-edit/shared/video-edit.component.html223 + ⚠️ Never share your stream key with anyone. ⚠️ Never share your stream key with anyone. - - - src/app/shared/shared-video-live/live-stream-information.component.html27src/app/+videos/+video-edit/shared/video-edit.component.html226 + src/app/shared/shared-video-live/live-stream-information.component.html27 + src/app/+videos/+video-edit/shared/video-edit.component.html226 + Permanent live Permanent live @@ -8992,19 +9479,21 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video name is required. El nom del vídeo és obligatori. - - 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. El nom del vídeo ha de tenir almenys 3 caràcters de longitud. - - 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. El nom del vídeo no pot tenir més de 120 caràcters. - - 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 @@ -9013,58 +9502,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video privacy is required. La privadesa del vídeo és obligatòria. - - src/app/shared/form-validators/video-validators.ts25 + src/app/shared/form-validators/video-validators.ts25 + Video channel is required. Cal un canal de vídeo. - - 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. La descripció del vídeo ha de tenir un mínim de 3 caràcters. - - 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. La descripció del vídeo no pot tenir més de 10000 caràcters. - - 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. L'etiqueta ha de tenir més de 2 caràcters. - - 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. L'etiqueta ha de tenir menys de 30 caràcters. - - 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. La compatibilitat de vídeo ha de tenir un mínim de 3 caràcters. - - 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. Es requereix una data per programar l'actualització de vídeo. - - src/app/shared/form-validators/video-validators.ts91 + src/app/shared/form-validators/video-validators.ts91 + This file is too large. Aquest fitxer és massa gran. @@ -9079,8 +9568,10 @@ 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.ts28 - - Custom value...Custom value... + + + Custom value... + Custom value... src/app/shared/shared-forms/select/select-custom-value.component.ts 69 @@ -9094,332 +9585,334 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Sunday Diumenge - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts10 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts10 + Monday Dilluns - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11 + Tuesday Dimarts - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12 + Wednesday Dimecres - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13 + Thursday Dijous - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14 + Friday Divendres - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15 + Saturday Dissabte - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16 + Sun Dg Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts20 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts20 + Mon Dl Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts21 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts21 + Tue Dt Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts22 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts22 + Wed Dc Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts23 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts23 + Thu Dj Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts24 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts24 + Fri Dv Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts25 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts25 + Sat Ds Day name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts26 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts26 + Su Dg Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts30 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts30 + Mo Dl Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts31 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts31 + Tu Dt Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts32 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts32 + We Dm Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts33 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts33 + Th Dj Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts34 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts34 + Fr Dv Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts35 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts35 + Sa Ds Day name min - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts36 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts36 + January Gener - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts40 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts40 + February Febrer - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41 + March Març - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts42 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts42 + April Abril - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts43 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts43 + May Maig - - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts59 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts59 + June Juny - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts45 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts45 + July Juliol - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts46 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts46 + August Agost - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts47 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts47 + September Setembre - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts48 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts48 + October Octubre - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts49 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts49 + November Novembre - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts50 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts50 + December Desembre - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51 + Jan Gen Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts55 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts55 + Feb Feb Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts56 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts56 + Mar Mar Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts57 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts57 + Apr Abr Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts58 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts58 + Jun Jun Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts60 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts60 + Jul Jul Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts61 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts61 + Aug Ago Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts62 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts62 + Sep Set Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts63 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts63 + Oct Oct Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts64 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts64 + Nov Nov Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts65 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts65 + Dec Des Month name short - - src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts66 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts66 + Clear Clar - - 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 aa-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.ts179 + src/app/+videos/+video-edit/shared/video-edit.component.ts179 + All languages All languages - - - src/app/+videos/+video-edit/shared/video-edit.component.ts180src/app/shared/shared-user-settings/user-video-settings.component.ts39 + src/app/+videos/+video-edit/shared/video-edit.component.ts180 + src/app/shared/shared-user-settings/user-video-settings.component.ts39 + 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.ts55 + src/app/shared/shared-instance/instance-features-table.component.ts55 + ~ 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 de vídeos HD - - src/app/shared/shared-instance/instance-features-table.component.ts92 + src/app/shared/shared-instance/instance-features-table.component.ts92 + of HD videos de vídeos HD - - src/app/shared/shared-instance/instance-features-table.component.ts93 + src/app/shared/shared-instance/instance-features-table.component.ts93 + of average quality videos de vídeos de qualitat mitjana - - 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.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts41src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts41 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (account page) - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + Emphasis Èmfasi @@ -9444,8 +9937,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Images Imatges src/app/shared/shared-main/misc/help.component.ts85 - - Close searchClose search + + + Close search + Close search src/app/shared/shared-main/misc/simple-search-input.component.html 14 @@ -9470,42 +9965,42 @@ 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.ts66 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + User unbanned. User unbanned. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + If you remove this user, you will not be able to create another with the same username! If you remove this user, you will not be able to create another with the same username! - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + User deleted. Usuari eliminat. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92 + User email set as verified User email set as verified - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + Account muted. Account muted. - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts115src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts115 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + Instance muted. Instance @@ -9521,21 +10016,21 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account muted by the instance. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts444src/app/shared/shared-moderation/user-moderation-dropdown.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts444 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts171 + Mute server Mute server - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts332 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts332 + Server muted by the instance. Server muted by the instance. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts456 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts456 + Add a message to communicate with the reporter Add a message to communicate with the reporter @@ -9551,162 +10046,162 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts185 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts185 + Instance muted by the instance. Instance muted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts199 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts199 + Instance unmuted by the instance. Instance unmuted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts213 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts213 + 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.ts224 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts224 + Delete account comments Delete account comments - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts225 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts225 + 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.ts231 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts231 + Edit user Edit user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts259 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts259 + Change quota, role, and more. Change quota, role, and more. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts260 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts260 + Delete user Delete user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264 + Unban user Unban user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts275 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts275 + 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.ts276 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts276 + Mute this account Mute this account - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts293 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts293 + 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.ts294 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts294 + Unmute this account Unmute this account - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts299 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts299 + 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.ts300 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts300 + Mute the instance Mute the instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts305 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts305 + 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.ts306 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts306 + Unmute the instance Unmute the instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts311 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts311 + 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.ts312 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts312 + Remove comments from your videos Remove comments from your videos - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts317 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts317 + 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.ts318 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts318 + Mute this account by your instance Mute this account by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts329 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts329 + 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.ts330 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts330 + Unmute this account by your instance Unmute this account by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts335 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts335 + 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.ts336 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts336 + Mute the instance by your instance Mute the instance by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts347 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts347 + 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.ts348 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts348 + Unmute the instance by your instance Unmute the instance by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts353 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts353 + 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.ts354 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts354 + Remove comments from your instance Remove comments from your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts364 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts364 + 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.ts365 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts365 + Violent or repulsive Violent or repulsive @@ -9770,9 +10265,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Captions Captions - - - src/app/shared/shared-abuse-list/abuse-details.component.ts26src/app/shared/shared-moderation/abuse.service.ts178 + src/app/shared/shared-abuse-list/abuse-details.component.ts26 + src/app/shared/shared-moderation/abuse.service.ts178 + The above can only be seen in captions (please describe which). The above can only be seen in captions (please describe which). @@ -9783,18 +10278,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Hi ha massa intents, torna-ho a provar després de minuts. - - src/app/core/rest/rest-extractor.service.ts67 + src/app/core/rest/rest-extractor.service.ts67 + Too many attempts, please try again later. Hi ha massa intents, torna-ho a provar més tard. - - src/app/core/rest/rest-extractor.service.ts69 + src/app/core/rest/rest-extractor.service.ts69 + Server error. Please retry later. Error del servidor. Torna-ho a intentar més tard. - - src/app/core/rest/rest-extractor.service.ts72 + src/app/core/rest/rest-extractor.service.ts72 + Subscribed to all current channels of . You will be notified of all their new videos. Subscribed to all current channels of @@ -9832,14 +10327,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Unsubscribed Unsubscribed src/app/shared/shared-user-subscription/subscribe-button.component.ts142 - - Multiple ways to subscribe to the current channelMultiple ways to subscribe to the current channel + + + Multiple ways to subscribe to the current channel + Multiple ways to subscribe to the current channel src/app/shared/shared-user-subscription/subscribe-button.component.html 44 - - Open subscription dropdownOpen subscription dropdown + + + Open subscription dropdown + Open subscription dropdown src/app/shared/shared-user-subscription/subscribe-button.component.html 46 @@ -9848,9 +10347,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderator - - src/app/core/users/user.service.ts407 - Search videos, playlists, channels…Search videos, playlists, channels… + src/app/core/users/user.service.ts407 + + + Search videos, playlists, channels… + Search videos, playlists, channels… src/app/header/search-typeahead.component.html 3 @@ -9861,9 +10362,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video removed from - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + Video added in at timestamps Video added in @@ -9882,117 +10383,117 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Timestamps updated Timestamps updated - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + Starts at Starts at - - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Stops at Stops at - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + and stops at and stops at - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Delete video Delete video - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts381 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts381 + Actions for the comment Actions for the comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts410 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts410 + Delete comment Delete comment - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts416 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts416 + 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.ts420 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts420 + Comment deleted. Comment deleted. - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts428 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts428 + Encoder Encoder - - src/app/shared/shared-video-miniature/video-download.component.ts212 + src/app/shared/shared-video-miniature/video-download.component.ts212 + Format name Format name - - src/app/shared/shared-video-miniature/video-download.component.ts213 + src/app/shared/shared-video-miniature/video-download.component.ts213 + Size Size - - src/app/shared/shared-video-miniature/video-download.component.ts214 + src/app/shared/shared-video-miniature/video-download.component.ts214 + Bitrate - Bitrate - - - src/app/shared/shared-video-miniature/video-download.component.ts216src/app/shared/shared-video-miniature/video-download.component.ts239 + Bitrate + src/app/shared/shared-video-miniature/video-download.component.ts216 + src/app/shared/shared-video-miniature/video-download.component.ts239 + Codec Codec - - src/app/shared/shared-video-miniature/video-download.component.ts236 + src/app/shared/shared-video-miniature/video-download.component.ts236 + Copied Copiat - - - src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts196 + src/app/shared/shared-forms/input-toggle-hidden.component.ts47 + src/app/shared/shared-video-miniature/video-download.component.ts196 + Copy Copy - - - src/app/shared/shared-forms/input-toggle-hidden.component.html15src/app/shared/shared-forms/input-toggle-hidden.component.html15 + src/app/shared/shared-forms/input-toggle-hidden.component.html15 + src/app/shared/shared-forms/input-toggle-hidden.component.html15 + Video reported. Vídeo reportat. - - src/app/shared/shared-moderation/report-modals/video-report.component.ts111 + src/app/shared/shared-moderation/report-modals/video-report.component.ts111 + Do you really want to delete this video? Segur que vols suprimir aquest vídeo? - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts90src/app/shared/shared-abuse-list/abuse-list-table.component.ts385src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts90 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts385 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203 + Video deleted. Video deleted. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts98src/app/shared/shared-abuse-list/abuse-list-table.component.ts393 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts98 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts393 + Actions for the reporter Actions for the reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts320 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts320 + Mute reporter Mute reporter - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts326 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts326 + This video will be duplicated by your instance. This video will be duplicated by your instance. @@ -10006,18 +10507,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Display live information Display live information - - - src/app/+my-library/my-videos/my-videos.component.ts172src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + src/app/+my-library/my-videos/my-videos.component.ts172 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278 + Update Update - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts176src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts176 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + Block Block @@ -10026,20 +10527,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Save to playlist Save to playlist - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + You need to be <a href="/login">logged in</a> to rate this video. You need to be <a href="/login">logged in</a> to rate this video. - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + Mirror Mirror src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302 - - SubtitlesSubtitles + + + Subtitles + Subtitles src/app/shared/shared-video-miniature/video-download.component.html 9 @@ -10048,28 +10551,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Report Report - - src/app/shared/shared-abuse-list/abuse-details.component.html55src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314 + src/app/shared/shared-abuse-list/abuse-details.component.html55 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314 + Remove 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 - {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}}{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + + + {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} + {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} + src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + Mute account Mute account - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts302src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 - Open video actionsOpen video actions + src/app/shared/shared-abuse-list/abuse-list-table.component.ts302 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322 + + + Open video actions + Open video actions src/app/shared/shared-video-miniature/video-actions-dropdown.component.html 4 @@ -10082,33 +10590,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Mute server account Mute server account - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts308 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts308 + Report Reporta - - src/app/shared/shared-abuse-list/abuse-details.component.html55 + src/app/shared/shared-abuse-list/abuse-details.component.html55 + 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 @@ -10134,29 +10642,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Published Publicat - - src/app/shared/shared-video-miniature/video-miniature.component.ts158 + src/app/shared/shared-video-miniature/video-miniature.component.ts158 + Publication scheduled on Publication scheduled on - - src/app/shared/shared-video-miniature/video-miniature.component.ts163 + src/app/shared/shared-video-miniature/video-miniature.component.ts163 + Waiting transcoding Esperant transcodificació - - src/app/shared/shared-video-miniature/video-miniature.component.ts167 + src/app/shared/shared-video-miniature/video-miniature.component.ts167 + To transcode Transcodificar - - src/app/shared/shared-video-miniature/video-miniature.component.ts171 + src/app/shared/shared-video-miniature/video-miniature.component.ts171 + To import Per importar - - src/app/shared/shared-video-miniature/video-miniature.component.ts175 - + src/app/shared/shared-video-miniature/video-miniature.component.ts175 + + + + src/app/shared/shared-video-miniature/videos-selection.component.html 1 @@ -10180,250 +10690,246 @@ 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.ts385 + src/app/shared/shared-main/video/video.service.ts385 + Only shareable via a private link Only shareable via a private link - - src/app/shared/shared-main/video/video.service.ts389 + src/app/shared/shared-main/video/video.service.ts389 + Anyone can see this video Anyone can see this video - - src/app/shared/shared-main/video/video.service.ts393 + src/app/shared/shared-main/video/video.service.ts393 + 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.ts397 + src/app/shared/shared-main/video/video.service.ts397 + viewers viewers - - src/app/shared/shared-main/video/video.model.ts215 + src/app/shared/shared-main/video/video.model.ts215 + views views - - src/app/shared/shared-main/video/video.model.ts218 + src/app/shared/shared-main/video/video.model.ts218 + Close Close - - - node_modules/@ng-bootstrap/ng-bootstrap/src/alert/alert.ts58 + node_modules/@ng-bootstrap/ng-bootstrap/src/alert/alert.ts58 + Slide of Slide of - Currently selected slide number read by screen reader - node_modules/@ng-bootstrap/ng-bootstrap/src/carousel/carousel.ts113 + node_modules/@ng-bootstrap/ng-bootstrap/src/carousel/carousel.ts113 + Previous Previous - - node_modules/@ng-bootstrap/ng-bootstrap/src/carousel/carousel.ts130 + node_modules/@ng-bootstrap/ng-bootstrap/src/carousel/carousel.ts130 + Next Next - - node_modules/@ng-bootstrap/ng-bootstrap/src/carousel/carousel.ts146 + node_modules/@ng-bootstrap/ng-bootstrap/src/carousel/carousel.ts146 + Previous month Previous month - - - node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts24 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + Next month Next month - - - node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts44node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts57 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts44 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts57 + Select month Select month - - - node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation-select.ts43node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation-select.ts47 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation-select.ts43 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation-select.ts47 + Select year Select year - - - node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation-select.ts69 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation-select.ts69 + «« «« - - node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts181 + node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts181 + « « - - node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts186 + node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts186 + » » - - node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts193 + node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts193 + »» »» - - node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts201 + node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts201 + First First - - node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts207 + node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts207 + Previous Previous - - node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts214 + node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts214 + Next Next - - node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts224 + node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts224 + Last Last - - node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts231 + node_modules/@ng-bootstrap/ng-bootstrap/src/pagination/pagination.ts231 + - - node_modules/@ng-bootstrap/ng-bootstrap/src/progressbar/progressbar.ts31 + node_modules/@ng-bootstrap/ng-bootstrap/src/progressbar/progressbar.ts31 + HH HH - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts40 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts40 + Hours Hours - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts46 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts46 + MM MM - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts50 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts50 + Minutes Minutes - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts58 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts58 + Increment hours Increment hours - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts63 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts63 + Decrement hours Decrement hours - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts68 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts68 + Increment minutes Increment minutes - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts76 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts76 + Decrement minutes Decrement minutes - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts82 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts82 + SS SS - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts86 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts86 + Seconds Seconds - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts92 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts92 + Increment seconds Increment seconds - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts98 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts98 + Decrement seconds Decrement seconds - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts105 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts105 + - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts118 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts118 + - - node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts141 + node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts141 + Close Close - - node_modules/@ng-bootstrap/ng-bootstrap/src/toast/toast.ts76 + node_modules/@ng-bootstrap/ng-bootstrap/src/toast/toast.ts76 + Video to import updated. Video to import updated. - - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts141src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts141 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + 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.ts162 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts162 + But associated data (tags, description...) will be lost, are you sure you want to leave this page? Però es perdran les dades associades (etiquetes, descripció ...), estàs segur que vols deixar aquesta pàgina? - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts163 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts163 + Your video is not uploaded yet, are you sure you want to leave this page? El teu vídeo encara no s'ha carregat, estàs segur que vols sortir d'aquesta pàgina? - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts165 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts165 + Upload Upload - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts222 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts222 + Upload Puja - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts224 - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts224 + Video published. Vídeo publicat. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts245 - - + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts245 + 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.ts93 + src/app/+videos/+video-edit/video-update.component.ts93 + Video updated. Vídeo actualitzat. - - src/app/+videos/+video-edit/video-update.component.ts158 + src/app/+videos/+video-edit/video-update.component.ts158 + Report comment Report comment @@ -10432,24 +10938,26 @@ 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.ts220 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts220 + Autoplay next video Autoplay next video - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + Stop looping playlist videos Stop looping playlist videos - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts226 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts226 + Loop playlist videos Loop playlist videos - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 - Placeholder imagePlaceholder image + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + + + Placeholder image + Placeholder image src/app/+videos/+video-watch/video-watch.component.html 11 @@ -10458,142 +10966,144 @@ 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.ts288 + src/app/+videos/+video-watch/video-watch.component.ts288 + Redirection Redirection - - src/app/+videos/+video-watch/video-watch.component.ts289 + src/app/+videos/+video-watch/video-watch.component.ts289 + This video contains mature or explicit content. Are you sure you want to watch it? Aquest vídeo conté contingut madur o explícit. Estàs segur que el vols veure? - - src/app/+videos/+video-watch/video-watch.component.ts335 + src/app/+videos/+video-watch/video-watch.component.ts335 + Mature or explicit content Contingut madur o explícit - - src/app/+videos/+video-watch/video-watch.component.ts336 + src/app/+videos/+video-watch/video-watch.component.ts336 + Up Next Up Next - - src/app/+videos/+video-watch/video-watch.component.ts407 + src/app/+videos/+video-watch/video-watch.component.ts407 + Cancel Cancel - - src/app/+videos/+video-watch/video-watch.component.ts646 + src/app/+videos/+video-watch/video-watch.component.ts646 + Autoplay is suspended Autoplay is suspended - - src/app/+videos/+video-watch/video-watch.component.ts409 + src/app/+videos/+video-watch/video-watch.component.ts409 + Enter/exit fullscreen (requires player focus) Enter/exit fullscreen (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts678 + src/app/+videos/+video-watch/video-watch.component.ts678 + Play/Pause the video (requires player focus) Play/Pause the video (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts679 + src/app/+videos/+video-watch/video-watch.component.ts679 + Mute/unmute the video (requires player focus) Mute/unmute the video (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts680 + src/app/+videos/+video-watch/video-watch.component.ts680 + Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts682 + src/app/+videos/+video-watch/video-watch.component.ts682 + Increase the volume (requires player focus) Increase the volume (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts684 + src/app/+videos/+video-watch/video-watch.component.ts684 + Decrease the volume (requires player focus) Decrease the volume (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts685 + src/app/+videos/+video-watch/video-watch.component.ts685 + Seek the video forward (requires player focus) Seek the video forward (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts687 + src/app/+videos/+video-watch/video-watch.component.ts687 + Seek the video backward (requires player focus) Seek the video backward (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts688 + src/app/+videos/+video-watch/video-watch.component.ts688 + Increase playback rate (requires player focus) Increase playback rate (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts690 + src/app/+videos/+video-watch/video-watch.component.ts690 + Decrease playback rate (requires player focus) Decrease playback rate (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts691 + src/app/+videos/+video-watch/video-watch.component.ts691 + Navigate in the video frame by frame (requires player focus) Navigate in the video frame by frame (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts693 + src/app/+videos/+video-watch/video-watch.component.ts693 + 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.ts61 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + Recently added Recently added - - src/app/+videos/video-list/video-recently-added.component.ts37src/app/core/menu/menu.service.ts137 - - + src/app/+videos/video-list/video-recently-added.component.ts37 + src/app/core/menu/menu.service.ts137 + Videos from your subscriptions Videos from your subscriptions - - src/app/+videos/video-list/video-user-subscriptions.component.ts42 - Copy feed URLCopy feed URL - - src/app/+videos/video-list/video-user-subscriptions.component.ts65 - + src/app/+videos/video-list/video-user-subscriptions.component.ts42 + + + Copy feed URL + Copy feed URL + src/app/+videos/video-list/video-user-subscriptions.component.ts65 + Feed URL copied Feed URL copied - - src/app/+videos/video-list/video-user-subscriptions.component.ts110 + src/app/+videos/video-list/video-user-subscriptions.component.ts110 + Subscriptions - Subscriptions - - - - src/app/+my-library/my-library.component.ts66src/app/+videos/video-list/video-user-subscriptions.component.ts46src/app/+videos/videos-routing.module.ts59 + Subscripcions + src/app/+my-library/my-library.component.ts66 + src/app/+videos/video-list/video-user-subscriptions.component.ts46 + src/app/+videos/videos-routing.module.ts59 + History - History + Historial src/app/+my-library/my-library.component.ts71 - - Open actionsOpen actions + + + Open actions + Open actions src/app/shared/shared-main/buttons/action-dropdown.component.html 4 @@ -10602,34 +11112,39 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos Local videos - - - src/app/+videos/video-list/video-local.component.ts37src/app/+videos/videos-routing.module.ts70src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 + src/app/+videos/video-list/video-local.component.ts37 + src/app/+videos/videos-routing.module.ts70 + src/app/core/menu/menu.service.ts142 + src/app/core/menu/menu.service.ts143 + Discover videos Discover videos - - src/app/+videos/videos-routing.module.ts21src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts21 + src/app/core/menu/menu.service.ts124 + Trending videos Trending videos - - src/app/+videos/videos-routing.module.ts30src/app/core/menu/menu.service.ts130 + src/app/+videos/videos-routing.module.ts30 + src/app/core/menu/menu.service.ts130 + Recently added videos Recently added videos - - src/app/+videos/videos-routing.module.ts43src/app/core/menu/menu.service.ts136 + src/app/+videos/videos-routing.module.ts43 + src/app/core/menu/menu.service.ts136 + Upload a video Upload a video - - src/app/app-routing.module.ts91 + src/app/app-routing.module.ts91 + Edit a video Edit a video - - src/app/app-routing.module.ts100 + src/app/app-routing.module.ts100 + diff --git a/client/src/locale/angular.cs-CZ.xlf b/client/src/locale/angular.cs-CZ.xlf index 52b3da304..2bfcfb63b 100644 --- a/client/src/locale/angular.cs-CZ.xlf +++ b/client/src/locale/angular.cs-CZ.xlf @@ -2546,13 +2546,13 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3484,9 +3484,9 @@ The link will expire within 1 hour. Create user Vytvořit uživatele - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7804,8 +7804,8 @@ channel with the same name ()! User created. Uživatel vytvořen. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8510,7 +8510,7 @@ channel with the same name ()! Odebírat účet - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTS diff --git a/client/src/locale/angular.da-DK.xlf b/client/src/locale/angular.da-DK.xlf index b293a3ae2..687604dd9 100644 --- a/client/src/locale/angular.da-DK.xlf +++ b/client/src/locale/angular.da-DK.xlf @@ -2333,12 +2333,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3285,7 +3285,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7536,8 +7536,8 @@ channel with the same name ()! User created. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8254,7 +8254,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.de-DE.xlf b/client/src/locale/angular.de-DE.xlf index 1031ce187..6f2d33ba5 100644 --- a/client/src/locale/angular.de-DE.xlf +++ b/client/src/locale/angular.de-DE.xlf @@ -2372,13 +2372,13 @@ Hilf mit PeerTube zu übersetzen! Scheduled Geplante Veröffentlichung - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Video bis zu einem bestimmten Datum verbergen - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Videohintergrundbild @@ -3275,9 +3275,9 @@ Hilf mit PeerTube zu übersetzen! Create user Benutzer anlegen - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Tabelleneigenschaften @@ -7387,8 +7387,8 @@ Erstelle mein Konto User created. Benutzer erstellt. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Benutzer anlegen @@ -8084,7 +8084,7 @@ Erstelle mein Konto Diesen Account abonnieren - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTS diff --git a/client/src/locale/angular.el-GR.xlf b/client/src/locale/angular.el-GR.xlf index 306f3f5e0..a3b37b853 100644 --- a/client/src/locale/angular.el-GR.xlf +++ b/client/src/locale/angular.el-GR.xlf @@ -2340,12 +2340,12 @@ The link will expire within 1 hour. Scheduled Προγραμματισμένο - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Εικόνα φόντου βίντεο @@ -3312,7 +3312,7 @@ The link will expire within 1 hour. Create user Δημιουργία χρήστη - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7614,8 +7614,8 @@ channel with the same name ()! Ο χρήστης δημιουργήθηκε. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Δημιουργία χρήστη @@ -8345,7 +8345,7 @@ channel with the same name ()! Συνδρομή στον λογαριασμό - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTS diff --git a/client/src/locale/angular.en-GB.xlf b/client/src/locale/angular.en-GB.xlf index bfc4139b4..034488b82 100644 --- a/client/src/locale/angular.en-GB.xlf +++ b/client/src/locale/angular.en-GB.xlf @@ -2325,12 +2325,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3208,7 +3208,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7171,7 +7171,7 @@ channel with the same name ()! created. - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts76 Create userCreate user src/app/+admin/users/user-edit/user-create.component.ts95 @@ -7834,7 +7834,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.en-US.xlf b/client/src/locale/angular.en-US.xlf index 913ce3e6b..707ab9e3b 100644 --- a/client/src/locale/angular.en-US.xlf +++ b/client/src/locale/angular.en-US.xlf @@ -2127,12 +2127,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -2975,7 +2975,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -6762,7 +6762,7 @@ channel with the same name ()! User created. User created. - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts76 Create userCreate user src/app/+admin/users/user-edit/user-create.component.ts95 @@ -7389,7 +7389,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.eo.xlf b/client/src/locale/angular.eo.xlf index 98ca3a533..884779094 100644 --- a/client/src/locale/angular.eo.xlf +++ b/client/src/locale/angular.eo.xlf @@ -2209,12 +2209,12 @@ The link will expire within 1 hour. Scheduled Planita - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Kaŝi la filmon ĝis la donita dato - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Fonbildo de filmo @@ -3123,7 +3123,7 @@ The link will expire within 1 hour. Create user Krei uzanton - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Distingaĵoj de tabelo @@ -7136,8 +7136,8 @@ channel with the same name ()! User created. Uzanto kreita. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Krei uzanton @@ -7825,7 +7825,7 @@ channel with the same name ()!Aboni la konton - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.es-ES.xlf b/client/src/locale/angular.es-ES.xlf index 496832e96..d2905bb7b 100644 --- a/client/src/locale/angular.es-ES.xlf +++ b/client/src/locale/angular.es-ES.xlf @@ -2371,13 +2371,13 @@ The link will expire within 1 hour. Scheduled Programado - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Ocultar el video hasta una fecha específica - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Imagen de fondo de vídeo @@ -3261,9 +3261,9 @@ The link will expire within 1 hour. Create user Crear usuario - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Parámetros de la tabla @@ -7385,8 +7385,8 @@ channel with the same name ()! User created. Usuario creado. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Crear usuario @@ -8080,9 +8080,9 @@ channel with the same name ()! Subscribe to the account Suscribirse a la cuenta - src/app/+video-channels/video-channels.component.ts71 - src/app/+videos/+video-watch/video-watch.component.ts701 - + + + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS LISTAS DE REPRODUCCIÓN diff --git a/client/src/locale/angular.eu-ES.xlf b/client/src/locale/angular.eu-ES.xlf index 9e7d8362b..627f6c5d3 100644 --- a/client/src/locale/angular.eu-ES.xlf +++ b/client/src/locale/angular.eu-ES.xlf @@ -2288,12 +2288,12 @@ The link will expire within 1 hour. Scheduled Programatuta - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Ezkutatu bideoa data zehatz bat arte - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Bideoaren atzeko irudia @@ -3230,7 +3230,7 @@ The link will expire within 1 hour. Create user Sortu erabiltzailea - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7449,8 +7449,8 @@ channel with the same name ()! erabiltzailea sortuta. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8171,7 +8171,7 @@ channel with the same name ()! Harpidetu kontura - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.fa-IR.xlf b/client/src/locale/angular.fa-IR.xlf index 9987f2799..5d8ef8d28 100644 --- a/client/src/locale/angular.fa-IR.xlf +++ b/client/src/locale/angular.fa-IR.xlf @@ -2456,13 +2456,13 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3401,9 +3401,9 @@ The link will expire within 1 hour. Create user ایجاد کاربر - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7748,8 +7748,8 @@ channel with the same name ()! User created. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8482,7 +8482,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTS diff --git a/client/src/locale/angular.fi-FI.xlf b/client/src/locale/angular.fi-FI.xlf index 19e8fd80f..574375b5f 100644 --- a/client/src/locale/angular.fi-FI.xlf +++ b/client/src/locale/angular.fi-FI.xlf @@ -2304,12 +2304,12 @@ The link will expire within 1 hour. Scheduled Ajoitettu - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Videon taustakuva @@ -3189,7 +3189,7 @@ The link will expire within 1 hour. Create user Luo tili - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7151,7 +7151,7 @@ channel with the same name ()! luotiin. - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts76 Create userCreate user src/app/+admin/users/user-edit/user-create.component.ts95 @@ -7814,7 +7814,7 @@ channel with the same name ()! Tilaa käyttäjä - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.fr-FR.xlf b/client/src/locale/angular.fr-FR.xlf index 4a04661f0..a092c252f 100644 --- a/client/src/locale/angular.fr-FR.xlf +++ b/client/src/locale/angular.fr-FR.xlf @@ -2375,13 +2375,13 @@ The link will expire within 1 hour. Scheduled Planifié - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Masquer la vidéo jusqu'à une date précise - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Image d'arrière-plan de la vidéo @@ -3268,9 +3268,9 @@ The link will expire within 1 hour. Create user Créer un utilisateur - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Paramètres des tables @@ -6816,9 +6816,7 @@ channel with the same name ()! accepted in instance followers - - a été accepté des instances qui vous suivent - + a été accepté dans les instances qui vous suivent src/app/+admin/follows/followers-list/followers-list.component.ts41 @@ -7400,8 +7398,8 @@ channel with the same name ()! User created. Utilisateur·rice créé.e. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Créer un utilisateur @@ -8095,9 +8093,9 @@ channel with the same name ()! Subscribe to the account S'abonner à ce compte - src/app/+video-channels/video-channels.component.ts71 - src/app/+videos/+video-watch/video-watch.component.ts701 - + + + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS LISTES DE LECTURE diff --git a/client/src/locale/angular.fr.xlf b/client/src/locale/angular.fr.xlf index 6e3fc1605..1bb2622a9 100644 --- a/client/src/locale/angular.fr.xlf +++ b/client/src/locale/angular.fr.xlf @@ -1092,7 +1092,7 @@ Display/Video settings updated. - Mise à jour des paramètres d'affichage et de vidéo. + Paramètres d'affichage et de vidéo mis à jour. src/app/shared/shared-user-settings/user-video-settings.component.ts 140 @@ -1300,7 +1300,7 @@ Links - Les liens + Liens src/app/shared/shared-main/misc/help.component.ts 82 @@ -1324,7 +1324,7 @@ Images - Les images + Images src/app/shared/shared-main/misc/help.component.ts 85 @@ -1476,7 +1476,7 @@ Slide of - Diapositive sur + Diapositive sur node_modules/@ng-bootstrap/src/carousel/carousel.ts 114,118 @@ -5266,7 +5266,7 @@ Select the next owner - Sélectionner la·e prochain·e propriétaire + Sélectionner le prochain propriétaire src/app/+my-library/my-videos/modals/video-change-ownership.component.html 10 @@ -6142,7 +6142,7 @@ You cannot delete root. - Vous ne pouvez pas supprimer l'utilisateur·rice root. + Vous ne pouvez pas supprimer l'utilisateur root. src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 86 @@ -6262,7 +6262,7 @@ Are you sure you want to remove all the comments of this account? - Êtes-vous certain·e de vouloir supprimer tous les commentaires de ce compte ? + Êtes-vous certain de vouloir supprimer tous les commentaires de ce compte ? src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 228 @@ -6286,7 +6286,7 @@ Edit user - Modifier l’utilisateur·ice + Modifier l’utilisateur src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 263 @@ -6302,7 +6302,7 @@ Delete user - Supprimer l’utilisateur·ice + Supprimer l’utilisateur src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 268 @@ -6346,7 +6346,7 @@ Unban user - Lever l'interdiction pour l’utilisateur·ice + Lever l'interdiction pour l’utilisateur src/app/shared/shared-moderation/user-moderation-dropdown.component.ts 279 @@ -6630,7 +6630,7 @@ Do you really want to delete this video? - Êtes-vous bien sûr·e de vouloir supprimer cette vidéo ? + Êtes-vous bien sûr de vouloir supprimer cette vidéo ? src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts 203 @@ -7366,7 +7366,7 @@ A banned user will no longer be able to login. - Un·e utilisateur·rice banni·e ne sera plus capable de se connecter. + Un utilisateur banni ne sera plus capable de se connecter. src/app/shared/shared-moderation/user-ban-modal.component.html 21,22 @@ -7374,7 +7374,7 @@ Ban this user - Bannir cet·te utilisateur·rice + Bannir cet utilisateur src/app/shared/shared-moderation/user-ban-modal.component.html 31 @@ -7594,7 +7594,7 @@ Username is required. - Le nom d'utilisateur·rice est requis. + Le nom d'utilisateur est requis. src/app/shared/form-validators/user-validators.ts 12 @@ -9206,7 +9206,7 @@ You or your channel(s) has a new follower - Vous ou votre chaîne avez/a un·e nouvel·le abonné·e + Vous ou votre chaîne avez un nouvel abonné src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts 40 @@ -9222,7 +9222,7 @@ Your instance has a new follower - Votre instance a un·e nouvel·le abonné·e + Votre instance a un nouvel abonné src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts 42 @@ -10507,7 +10507,7 @@ Follow request(s) sent! - Requête·s envoyée·s ! + Requête(s) envoyée(s) ! src/app/+admin/follows/following-list/following-list.component.ts 47 @@ -11815,7 +11815,7 @@ This video contains mature or explicit content. Are you sure you want to watch it? - Cette vidéo contient du contenu sensible. Êtes-vous sûr·e de vouloir la regarder ? + Cette vidéo contient du contenu sensible. Êtes-vous sûr de vouloir la regarder ? src/app/+videos/+video-watch/video-watch.component.ts 547 @@ -12323,7 +12323,7 @@ Lists - Les listes + Listes src/app/+videos/+video-watch/comment/video-comment-add.component.html 20 @@ -12751,7 +12751,7 @@ But associated data (tags, description...) will be lost, are you sure you want to leave this page? - Les données associées (étiquettes, description, etc.) seront par contre perdues ; êtes-vous sûr·e de vouloir quitter cette page ? + Les données associées (étiquettes, description, etc.) seront par contre perdues ; êtes-vous sûr de vouloir quitter cette page ? src/app/+videos/+video-edit/video-add-components/video-upload.component.ts 93 @@ -12759,7 +12759,7 @@ Your video is not uploaded yet, are you sure you want to leave this page? - Votre vidéo n'est pas encore téléversé ; êtes-vous sûr·e de vouloir quitter cette page ? + Votre vidéo n'est pas encore téléversée ; êtes-vous sûr de vouloir quitter cette page ? src/app/+videos/+video-edit/video-add-components/video-upload.component.ts 95 @@ -15374,7 +15374,7 @@ Do you really want to delete this follower? - Souhaitez-vous vraiment supprimer cet·te abonné·e ? + Souhaitez-vous vraiment supprimer cet abonné ? src/app/+admin/follows/followers-list/followers-list.component.ts 73 @@ -15406,7 +15406,7 @@ Follower handle - Identifiant d'abonné·e + Identifiant d'abonné src/app/+admin/follows/followers-list/followers-list.component.html 28 @@ -15430,7 +15430,7 @@ No follower found matching current filters. - Aucun·e abonné·e n'a pu être trouvé·e avec les filtres actuels. + Aucun abonné n'a pu être trouvé avec les filtres actuels. src/app/+admin/follows/followers-list/followers-list.component.html 68 @@ -15438,7 +15438,7 @@ Your instance doesn't have any follower. - Votre instance n'a aucun·e abonné·e. + Votre instance n'a aucun abonné. src/app/+admin/follows/followers-list/followers-list.component.html 69 @@ -15686,7 +15686,7 @@ Update user - Mettre à jour l'utilisateur·rice + Mettre à jour l'utilisateur src/app/+admin/users/user-edit/user-update.component.ts 102 @@ -15710,7 +15710,7 @@ Update user password - Mettre à jour le mot de passe utilisateur·rice + Mettre à jour le mot de passe utilisateur src/app/+admin/users/user-edit/user-password.component.ts 52 @@ -15750,7 +15750,7 @@ If you remove these users, you will not be able to create others with the same username! - Si vous supprimez ces utilisateur·rices, vous ne pourrez plus en créer de nouveau avec le même nom ! + Si vous supprimez ces utilisateurs, vous ne pourrez plus en créer de nouveaux avec les mêmes noms ! src/app/+admin/users/user-list/user-list.component.ts 193 @@ -15830,7 +15830,7 @@ User's email must be verified to login - L'adresse de courriel de l'utilisateur·rice doit être vérifiée afin de se connecter + L'adresse de courriel de l'utilisateur doit être vérifiée afin de se connecter src/app/+admin/users/user-list/user-list.component.html 130 @@ -15842,7 +15842,7 @@ User's email is verified / User can login without email verification - L'adresse de courriel de l'utilisateur·rice est vérifié / L'utilisateur·rice peut se connecter sans vérification par courriel + L'adresse de courriel de l'utilisateur est vérifié / L'utilisateur peut se connecter sans vérification par courriel src/app/+admin/users/user-list/user-list.component.html 134 diff --git a/client/src/locale/angular.gd.xlf b/client/src/locale/angular.gd.xlf index a0deb4e7d..2f5aee9c3 100644 --- a/client/src/locale/angular.gd.xlf +++ b/client/src/locale/angular.gd.xlf @@ -550,7 +550,7 @@ Videos with the most interactions for recent videos, minus user history - Na videothan o chionn goirid leis na h-eadar-ghìomhan as trice às aonais eachdraidh a’ chleachdaiche + Na videothan o chionn goirid leis a’ chonaltradh as trice às aonais eachdraidh a’ chleachdaiche src/app/+videos/video-list/trending/video-trending-header.component.ts44 @@ -687,7 +687,7 @@ Remote subscribeRemote interact - Fo-sgrìobhadh cèinEadar-ghnìomh cèin + Fo-sgrìobhadh cèinConaltradh cèin src/app/shared/shared-user-subscription/remote-subscribe.component.html11 @@ -700,7 +700,7 @@ You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). - ’S urrainn dhut eadar-ghnìomh a dhèanamh le seo slighe ionstans co-shaoghail sam bith aig a bheil comas ActivityPub (can PeerTube, Mastodon no Pleroma). + ’S urrainn dhut conaltradh leis slighe ionstans co-shaoghail sam bith aig a bheil comas ActivityPub (can PeerTube, Mastodon no Pleroma). src/app/shared/shared-user-subscription/remote-subscribe.component.html 26,27 @@ -2351,13 +2351,13 @@ The link will expire within 1 hour. Scheduled Sgeidealaichte - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Cuir a’ video am falach gus an dig ceann-là sònraichte - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Dealbh cùlaibh video @@ -3224,9 +3224,9 @@ The link will expire within 1 hour. Create user Cruthaich cleachdaiche - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Paramadairean a’ chlàir @@ -3968,7 +3968,7 @@ The link will expire within 1 hour. Videos with the most interactions for recent videos - Na videothan leis na h-eadar-ghìomhan as trice o chionn goirid + Na videothan leis na conaltraidhean as trice o chionn goirid src/app/+videos/video-list/trending/video-trending-header.component.ts51 @@ -6313,7 +6313,7 @@ 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. - ’S e aithnichear fa leth a th’ ann an ainm na seanail agad air an ionstans seo is air ionstans sam bith eile. Tha e cho àraidh ’s a tha seòladh puist-d a nì e furasta do chàch eadar-ghnìomhan a ghabhail leis. + ’S e aithnichear fa leth a th’ ann an ainm na seanail agad air an ionstans seo is air ionstans sam bith eile. Tha e cho àraidh ’s a tha seòladh puist-d a nì e furasta do chàch conaltradh leis. src/app/+signup/+register/register-step-channel.component.html43 @@ -6331,7 +6331,7 @@ 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. - ’S e aithnichear fa leth dhan chunntas agad a tha san ainm-chleachdaiche agad air an ionstans seo is air ionstans sam bith eile. Tha e cho àraidh ’s a tha seòladh puist-d a nì e furasta do chàch eadar-ghnìomhan a ghabhail leis. + ’S e aithnichear fa leth dhan chunntas agad a tha san ainm-chleachdaiche agad air an ionstans seo is air ionstans sam bith eile. Tha e cho àraidh ’s a tha seòladh puist-d a nì e furasta do chàch conaltradh leis. src/app/+signup/+register/register-step-user.component.html36 @@ -7307,8 +7307,8 @@ channel with the same name ()! User created. Chaidh an cleachdaiche a chruthachadh. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Cruthaich cleachdaiche @@ -7795,7 +7795,7 @@ channel with the same name ()! Remote interaction - Eadar-ghnìomh cèin + Conaltradh cèin src/app/+remote-interaction/remote-interaction-routing.module.ts 13 @@ -7992,9 +7992,9 @@ channel with the same name ()! Subscribe to the account Fo-sgrìobh air a’ chunntas - src/app/+video-channels/video-channels.component.ts71 - src/app/+videos/+video-watch/video-watch.component.ts701 - + + + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS LIOSTAICHEAN-CLUICH diff --git a/client/src/locale/angular.gl-ES.xlf b/client/src/locale/angular.gl-ES.xlf index 908606fa6..3a4a121be 100644 --- a/client/src/locale/angular.gl-ES.xlf +++ b/client/src/locale/angular.gl-ES.xlf @@ -2376,13 +2376,13 @@ The link will expire within 1 hour. Scheduled Programado - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Agochar o vídeo ata unha data concreta - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Imaxe de fondo do vídeo @@ -3269,9 +3269,9 @@ The link will expire within 1 hour. Create user Crear usuaria - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Parámetros da táboa @@ -7362,8 +7362,8 @@ channel with the same name ()! User created. Usuaria creada. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Crear usuaria @@ -8047,9 +8047,9 @@ channel with the same name ()! Subscribe to the account Subscribirse á conta - src/app/+video-channels/video-channels.component.ts71 - src/app/+videos/+video-watch/video-watch.component.ts701 - + + + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS LISTAXES diff --git a/client/src/locale/angular.hu-HU.xlf b/client/src/locale/angular.hu-HU.xlf index a78380ae1..1a7e3e3e9 100644 --- a/client/src/locale/angular.hu-HU.xlf +++ b/client/src/locale/angular.hu-HU.xlf @@ -2243,12 +2243,12 @@ The link will expire within 1 hour. Scheduled Ütemezett - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date A videó elrejtése egy megadott dátumig - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Videó háttérképe @@ -3127,7 +3127,7 @@ The link will expire within 1 hour. Create user Felhasználó létrehozása - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Táblázat paraméterei @@ -7199,8 +7199,8 @@ channel with the same name ()! User created. felhasználó létrehozva. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Felhasználó létrehozása @@ -7894,7 +7894,7 @@ channel with the same name ()!Feliratkozás a fiókra - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTS diff --git a/client/src/locale/angular.it-IT.xlf b/client/src/locale/angular.it-IT.xlf index e674ef64a..a66051666 100644 --- a/client/src/locale/angular.it-IT.xlf +++ b/client/src/locale/angular.it-IT.xlf @@ -2203,12 +2203,12 @@ The link will expire within 1 hour. Scheduled Programmato - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Nascondi il video fino ad una data specifica - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Immagine di sfondo del video @@ -3114,7 +3114,7 @@ The link will expire within 1 hour. Create user Crea utente - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Parametri della tabella @@ -7114,8 +7114,8 @@ channel with the same name ()! User created. L'utente è stato creato. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Crea utente @@ -7804,7 +7804,7 @@ channel with the same name ()!Iscriversi all'account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.ja-JP.xlf b/client/src/locale/angular.ja-JP.xlf index 1b7bb2063..2354692c8 100644 --- a/client/src/locale/angular.ja-JP.xlf +++ b/client/src/locale/angular.ja-JP.xlf @@ -1294,8 +1294,7 @@ The link will expire within 1 hour. Use documentation - Use - documentation + ドキュメントを利用する src/app/modal/welcome-modal.component.html26 @@ -1352,14 +1351,12 @@ The link will expire within 1 hour. Remind me later - Remind me later + 後ほど通知させる src/app/modal/welcome-modal.component.html74 Configure my instance - - Configure my instance - + インスタンスの設定をする src/app/modal/welcome-modal.component.html81 @@ -1450,14 +1447,12 @@ The link will expire within 1 hour. Update live settings - Update live settings + ライブ配信の設定を更新する src/app/shared/shared-video-live/live-stream-information.component.html36 Configure - - Configure - + 設定 src/app/modal/instance-config-warning-modal.component.html44 @@ -1472,7 +1467,7 @@ The link will expire within 1 hour. Public profile - Public profile + 公開プロフィール src/app/menu/menu.component.html28 @@ -2237,7 +2232,7 @@ The link will expire within 1 hour. Some instances hide videos containing mature or explicit content by default. - Some instances hide videos containing mature or explicit content by default. + いくつかのインスタンスでは、デフォルトで成人向けまたは過激なコンテンツを非表示にしています。 src/app/+videos/+video-edit/shared/video-edit.component.html 135 @@ -2302,7 +2297,7 @@ The link will expire within 1 hour. Live settings - Live settings + ライブ配信の設定 src/app/+videos/+video-edit/shared/video-edit.component.html208 @@ -2345,12 +2340,12 @@ The link will expire within 1 hour. View account - View account + 視聴回数 src/app/+video-channels/video-channels.component.html30 View account - View account + 視聴回数 src/app/+video-channels/video-channels.component.html 42,43 @@ -2488,13 +2483,13 @@ The link will expire within 1 hour. Scheduled スケジュールされました - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date 特定の日付まで動画を非表示にする - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image 動画の背景画像 @@ -2523,7 +2518,7 @@ The link will expire within 1 hour. Retry - Retry + 再度試す Retry failed upload of a video src/app/+videos/+video-edit/video-add-components/video-upload.component.html80 @@ -3121,7 +3116,7 @@ The link will expire within 1 hour. Reply - 返信 + リプライ src/app/+videos/+video-watch/comment/video-comment.component.html36 @@ -3238,7 +3233,7 @@ The link will expire within 1 hour. Video/Comment/Account - Video/Comment/Account + 動画/コメント/アカウント src/app/shared/shared-abuse-list/abuse-list-table.component.html22 @@ -3367,7 +3362,7 @@ The link will expire within 1 hour. Follow domains - Follow domains + ドメインをフォロー src/app/+admin/follows/following-list/following-list.component.html78 @@ -3403,9 +3398,9 @@ The link will expire within 1 hour. Create user ユーザー作成 - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -3666,18 +3661,18 @@ The link will expire within 1 hour. Video blocks - Video blocks + 動画のブロック src/app/+admin/moderation/video-block-list/video-block-list.component.html3 Muted accounts - ミュートしたアカウント + ミュートにしたアカウント src/app/shared/shared-moderation/account-blocklist.component.html3 src/app/shared/shared-moderation/account-blocklist.component.html3 Muted servers - ミュートしたサーバー + ミュートにしたサーバー src/app/shared/shared-moderation/server-blocklist.component.html3 src/app/shared/shared-moderation/server-blocklist.component.html3 @@ -3951,9 +3946,7 @@ The link will expire within 1 hour. Account deleted - - Account deleted - + アカウントが削除されました src/app/shared/shared-abuse-list/abuse-list-table.component.html125 @@ -3975,7 +3968,7 @@ The link will expire within 1 hour. Internal note - Internal note + 管理用 src/app/shared/shared-abuse-list/abuse-list-table.component.html26 @@ -4015,7 +4008,7 @@ The link will expire within 1 hour. Updated - Updated + 更新されました src/app/shared/shared-abuse-list/abuse-details.component.html48 @@ -4131,7 +4124,7 @@ The link will expire within 1 hour. Plugin homepage (new window) - Plugin homepage (new window) + プラグインページ(新しいウィンドウで開く) src/app/+admin/plugins/plugin-search/plugin-search.component.html40 src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html17 src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html21 @@ -4206,9 +4199,7 @@ The link will expire within 1 hour. 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.html10 @@ -4453,7 +4444,7 @@ The link will expire within 1 hour. 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.html61 @@ -4554,7 +4545,7 @@ The link will expire within 1 hour. YOU AND YOUR INSTANCE - YOU AND YOUR INSTANCE + あなたとインスタンス src/app/+admin/config/edit-custom-config/edit-instance-information.component.html167 @@ -4614,7 +4605,7 @@ The link will expire within 1 hour. APPEARANCE - APPEARANCE + 外観 src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html4 @@ -4627,7 +4618,7 @@ The link will expire within 1 hour. default - default + デフォルト src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html18 @@ -4791,7 +4782,7 @@ The link will expire within 1 hour. Configuration - Configuration + 設定 src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1 @@ -4826,7 +4817,7 @@ The link will expire within 1 hour. Block new videos automatically - Block new videos automatically + 自動的に新しい動画をブロック src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 @@ -4866,7 +4857,7 @@ The link will expire within 1 hour. Search index URL - Search index URL + 検索インデックスのURL src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 @@ -4901,7 +4892,7 @@ The link will expire within 1 hour. Other instances can follow yours - Other instances can follow yours + 他のインスタンスがあなたのインスタンスをフォローできます src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 @@ -4923,7 +4914,7 @@ The link will expire within 1 hour. Index URL - Index URL + インデックスURL src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 @@ -5509,12 +5500,12 @@ color: red; New email - New email + 新しいメールアドレス src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html17 Change email - Change email + メールアドレスを変更 src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html36 @@ -5581,7 +5572,7 @@ color: red; My ownership changes - My ownership changes + 所有権を変更する src/app/+my-library/my-ownership/my-ownership.component.html3 @@ -5617,7 +5608,7 @@ color: red; No ownership change request found. - No ownership change request found. + 所有権変更のリクエストはありません。 src/app/+my-library/my-ownership/my-ownership.component.html78 @@ -5756,7 +5747,7 @@ color: red; Owner account page - Owner account page + 管理者アカウントページ src/app/+my-library/my-subscriptions/my-subscriptions.component.html27 @@ -5801,7 +5792,7 @@ color: red; All read - All read + 既読にする src/app/+my-account/my-account-notifications/my-account-notifications.component.html26 @@ -5872,7 +5863,7 @@ color: red; See the documentation for more information. - See the documentation for more information. + 詳細について ドキュメントを読む。 src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html32 @@ -5882,12 +5873,7 @@ 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 - . - - + PeerTubeを利用するためにヘルプが必要な場合、ドキュメントを読むことができます。 src/app/+signup/shared/signup-success.component.html14 @@ -6029,7 +6015,7 @@ color: red; Show more... - Show more... + さらに表示... src/app/+accounts/accounts.component.html57 src/app/+video-channels/video-channels.component.html96 @@ -6077,7 +6063,7 @@ color: red; Show this channel - Show this channel + このチャンネルを表示 src/app/+accounts/account-video-channels/account-video-channels.component.html35 @@ -6123,7 +6109,7 @@ channel with the same name ()! SHOW THIS CHANNEL > - SHOW THIS CHANNEL > + このチャンネルを表示> src/app/+accounts/account-video-channels/account-video-channels.component.html46 @@ -6574,7 +6560,7 @@ channel with the same name ()! Step - Step + ステップ src/app/+signup/+register/custom-stepper.component.html9 @@ -6885,7 +6871,7 @@ channel with the same name ()! Information - Information + 情報 src/app/+admin/config/edit-custom-config/edit-custom-config.component.html 15 @@ -6944,7 +6930,7 @@ channel with the same name ()! Domain is required. - Domain is required. + ドメインが必要です。 src/app/shared/form-validators/batch-domains-validators.ts56 @@ -7208,7 +7194,7 @@ channel with the same name ()! Violent or Repulsive - Violent or Repulsive + 暴力的または非常に不快 src/app/shared/shared-abuse-list/abuse-details.component.ts19 @@ -7218,7 +7204,7 @@ channel with the same name ()! Spam or Misleading - Spam or Misleading + スパムまたは誤解を招く恐れのある src/app/shared/shared-abuse-list/abuse-details.component.ts21 @@ -7282,23 +7268,23 @@ channel with the same name ()! Block video - Block video + 動画をブロックする src/app/shared/shared-abuse-list/abuse-list-table.component.ts349 Video blocked. - Video blocked. + 動画がブロックされました。 src/app/shared/shared-abuse-list/abuse-list-table.component.ts355 src/app/shared/shared-moderation/video-block.component.ts60 Unblock video - Unblock video + 動画のブロックを解除する src/app/shared/shared-abuse-list/abuse-list-table.component.ts365 Video unblocked. - Video unblocked. + 動画のブロックが解除されました。 src/app/shared/shared-abuse-list/abuse-list-table.component.ts371 @@ -7333,7 +7319,7 @@ channel with the same name ()! Switch video block to manual - Switch video block to manual + Switch video block to manual src/app/+admin/moderation/video-block-list/video-block-list.component.ts60 @@ -7343,7 +7329,7 @@ channel with the same name ()! 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.ts133 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 @@ -7627,8 +7613,8 @@ channel with the same name ()! User created. ユーザー を作成しました。 - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user ユーザー作成 @@ -7701,12 +7687,12 @@ channel with the same name ()! Instances you follow - あなたのインスタンスによるフォロー + フォローしているインスタンス src/app/+admin/admin.component.ts29 Instances following you - 他のインスタンスによるフォロー + フォローされているインスタンス src/app/+admin/admin.component.ts34 @@ -7822,7 +7808,7 @@ channel with the same name ()! My watch history - 動画視聴履歴 + 視聴履歴 src/app/+my-library/my-history/my-history.component.html 3 @@ -7835,7 +7821,7 @@ channel with the same name ()! Ownership accepted - 所有権が承認されました + 所有権が受け入れられました src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts69 @@ -8027,7 +8013,7 @@ channel with the same name ()! 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. + 非常に多くの言語が設定されています。全ての言語を有効にするか、または20言語以下に設定してください。 src/app/shared/shared-user-settings/user-video-settings.component.ts92 @@ -8087,7 +8073,7 @@ channel with the same name ()! Update video channel - Update video channel + 動画チャンネルを更新 src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts31 @@ -8105,7 +8091,7 @@ channel with the same name ()! Cannot access to the remote resource - Cannot access to the remote resource + Cannot access to the remote resource src/app/+remote-interaction/remote-interaction.component.ts 48 @@ -8175,7 +8161,7 @@ channel with the same name ()! Change ownership - Change ownership + 所有権を変更する src/app/+my-library/my-videos/my-videos.component.ts178 @@ -8254,12 +8240,12 @@ channel with the same name ()! Ownership changes - 所有権の変更 + 所有権を変更 src/app/+my-library/my-library-routing.module.ts108 My video history - My video history + 動画の視聴履歴 src/app/+my-library/my-library-routing.module.ts117 @@ -8322,9 +8308,9 @@ channel with the same name ()! Subscribe to the account アカウントを購読する - src/app/+video-channels/video-channels.component.ts71 - src/app/+videos/+video-watch/video-watch.component.ts701 - + + + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS プレイリスト @@ -8536,7 +8522,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular VOD videos - VOD動画 + ビデオ・オン・デマンド動画 src/app/+search/search-filters.component.ts 60 @@ -8544,7 +8530,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Live videos - ライブ配信 + ライブ配信動画 src/app/+search/search-filters.component.ts 64 @@ -9245,7 +9231,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Live RTMP Url - Live RTMP Url + ライブ配信のRTMP URL src/app/shared/shared-video-live/live-stream-information.component.html19 src/app/+videos/+video-edit/shared/video-edit.component.html218 @@ -9845,7 +9831,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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.ts231 @@ -9870,7 +9856,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Allow the user to login and create videos/comments again - 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.ts276 @@ -9880,7 +9866,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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.ts294 @@ -9890,7 +9876,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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.ts300 @@ -9900,7 +9886,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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.ts306 @@ -9910,7 +9896,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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.ts312 @@ -9920,7 +9906,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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.ts318 @@ -9975,7 +9961,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Violent or repulsive - Violent or repulsive + 暴力的または非常に不快 src/app/shared/shared-moderation/abuse.service.ts139 @@ -9995,7 +9981,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Spam, ad or false news - Spam, ad or false news + スパム、広告または偽ニュース src/app/shared/shared-moderation/abuse.service.ts149 @@ -10101,7 +10087,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Open subscription dropdown - Open subscription dropdown + チャンネル登録のドロップダウンメニューを開く src/app/shared/shared-user-subscription/subscribe-button.component.html 46 @@ -10259,7 +10245,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular This video will be duplicated by your instance. - This video will be duplicated by your instance. + この動画はインスタンス内で重複しています。 src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts226 @@ -10731,7 +10717,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Loop playlist videos - プレイリストをループする + プレイリストをループ再生する src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 @@ -10754,12 +10740,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular This video contains mature or explicit content. Are you sure you want to watch it? - この動画には成人向けコンテンツまたは過激なコンテンツが含まれています。本当に再生しますか? + この動画には成人向けまたは過激なコンテンツが含まれています。本当に再生しますか? src/app/+videos/+video-watch/video-watch.component.ts335 Mature or explicit content - 成人向けコンテンツまたは過激なコンテンツ + 成人向けまたは過激なコンテンツ src/app/+videos/+video-watch/video-watch.component.ts336 diff --git a/client/src/locale/angular.jbo.xlf b/client/src/locale/angular.jbo.xlf index 5deeedb77..7367a10ca 100644 --- a/client/src/locale/angular.jbo.xlf +++ b/client/src/locale/angular.jbo.xlf @@ -2360,12 +2360,12 @@ galfi le mi japyvla Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3257,7 +3257,7 @@ galfi le mi japyvla Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7249,7 +7249,7 @@ zbasu lo pilno created. - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts76 Create userCreate user src/app/+admin/users/user-edit/user-create.component.ts95 @@ -7912,7 +7912,7 @@ zbasu lo pilno jersi pe'a le pilno - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.kab.xlf b/client/src/locale/angular.kab.xlf index 3daa2a008..bec074ca7 100644 --- a/client/src/locale/angular.kab.xlf +++ b/client/src/locale/angular.kab.xlf @@ -2375,12 +2375,12 @@ The link will expire within 1 hour. Scheduled Yettuɣawes - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Ffer tavidyut alamma azemz usdid - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Tugna n ugilal n tvidyut @@ -3460,7 +3460,7 @@ The link will expire within 1 hour. Create user Rnu aseqdac - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7204,8 +7204,8 @@ channel with the same name ()! User created. Aseqdac yettwarna. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Rnu aseqdac @@ -7914,7 +7914,7 @@ channel with the same name ()!Multeɣ ɣer umiḍan - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS TIBDARIN N TΓURI diff --git a/client/src/locale/angular.ko-KR.xlf b/client/src/locale/angular.ko-KR.xlf index ce1069fd5..d02c433ac 100644 --- a/client/src/locale/angular.ko-KR.xlf +++ b/client/src/locale/angular.ko-KR.xlf @@ -2417,12 +2417,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3388,7 +3388,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7646,8 +7646,8 @@ channel with the same name ()! User created. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8372,7 +8372,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.lt-LT.xlf b/client/src/locale/angular.lt-LT.xlf index 987bf9040..6c94a9e35 100644 --- a/client/src/locale/angular.lt-LT.xlf +++ b/client/src/locale/angular.lt-LT.xlf @@ -2317,12 +2317,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3194,7 +3194,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7151,7 +7151,7 @@ channel with the same name ()! created. - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts76 Create userCreate user src/app/+admin/users/user-edit/user-create.component.ts95 @@ -7814,7 +7814,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.nb-NO.xlf b/client/src/locale/angular.nb-NO.xlf index 1b4944748..494d4c982 100644 --- a/client/src/locale/angular.nb-NO.xlf +++ b/client/src/locale/angular.nb-NO.xlf @@ -2276,12 +2276,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3228,7 +3228,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7415,8 +7415,8 @@ channel with the same name ()! User created. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8132,7 +8132,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.nl-NL.xlf b/client/src/locale/angular.nl-NL.xlf index 0aa7e9406..317265555 100644 --- a/client/src/locale/angular.nl-NL.xlf +++ b/client/src/locale/angular.nl-NL.xlf @@ -2175,12 +2175,12 @@ Gefeliciteerd, de video achter Scheduled Ingeroosterd - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date De video verbergen tot een specifieke datum - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video achtergrondafbeelding @@ -3091,7 +3091,7 @@ Je kan nu al informatie toevoegen over deze video. Create user Gebruiker aanmaken - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Tabelparameters @@ -7046,8 +7046,8 @@ Account aanmaken User created. Gebruiker verwijderd. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Gebruiker aanmaken @@ -7713,7 +7713,7 @@ Account aanmaken Abonneren op account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.oc.xlf b/client/src/locale/angular.oc.xlf index 45b746b64..f1dc9a13d 100644 --- a/client/src/locale/angular.oc.xlf +++ b/client/src/locale/angular.oc.xlf @@ -2521,13 +2521,13 @@ The link will expire within 1 hour. Scheduled Programada - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Imatge de rèire-plan de la vidèo @@ -3476,9 +3476,9 @@ The link will expire within 1 hour. Create user Crear un utilizaire - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7819,8 +7819,8 @@ channel with the same name ()! Utilizaire creat. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8553,7 +8553,7 @@ channel with the same name ()! S’abonar al compte - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTS diff --git a/client/src/locale/angular.pl-PL.xlf b/client/src/locale/angular.pl-PL.xlf index c51077e99..e5421bec8 100644 --- a/client/src/locale/angular.pl-PL.xlf +++ b/client/src/locale/angular.pl-PL.xlf @@ -2460,13 +2460,13 @@ The link will expire within 1 hour. Scheduled Zaplanowany - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Ukryj film przed określoną datą - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Tło filmu @@ -3355,9 +3355,9 @@ The link will expire within 1 hour. Create user Utwórz użytkownika - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Parametry tabeli @@ -7531,8 +7531,8 @@ channel with the same name ()!Utworzono użytkownika . - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Utwórz użytkownika @@ -8260,9 +8260,9 @@ channel with the same name ()! Subscribe to the account Subskrybuj to konto - src/app/+video-channels/video-channels.component.ts71 - src/app/+videos/+video-watch/video-watch.component.ts701 - + + + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTY diff --git a/client/src/locale/angular.pt-BR.xlf b/client/src/locale/angular.pt-BR.xlf index a1d586507..da2526596 100644 --- a/client/src/locale/angular.pt-BR.xlf +++ b/client/src/locale/angular.pt-BR.xlf @@ -2516,13 +2516,13 @@ The link will expire within 1 hour. Scheduled Programado - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Imagem de fundo do vídeo @@ -3458,9 +3458,9 @@ The link will expire within 1 hour. Create user Criar usuárie - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7720,8 +7720,8 @@ channel with the same name ()! Usuário criado. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8446,7 +8446,7 @@ channel with the same name ()! Inscreva-se na conta - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTS diff --git a/client/src/locale/angular.pt-PT.xlf b/client/src/locale/angular.pt-PT.xlf index c56faaff3..2fbff7854 100644 --- a/client/src/locale/angular.pt-PT.xlf +++ b/client/src/locale/angular.pt-PT.xlf @@ -2305,12 +2305,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3192,7 +3192,7 @@ The link will expire within 1 hour. Create user Crie utilizador - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7138,7 +7138,7 @@ channel with the same name ()! criado. - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts76 Create userCreate user src/app/+admin/users/user-edit/user-create.component.ts95 @@ -7801,7 +7801,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.ru-RU.xlf b/client/src/locale/angular.ru-RU.xlf index 98480f12d..d72d8420d 100644 --- a/client/src/locale/angular.ru-RU.xlf +++ b/client/src/locale/angular.ru-RU.xlf @@ -2364,13 +2364,13 @@ The link will expire within 1 hour. Scheduled Запланировано - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Скрыть видео до указанной даты - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Фоновое изображение видео @@ -3263,9 +3263,9 @@ The link will expire within 1 hour. Create user Создать пользователя - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Параметры таблицы @@ -7368,8 +7368,8 @@ channel with the same name ()! User created. Пользователь был создан. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Создать пользователя @@ -8063,9 +8063,9 @@ channel with the same name ()! Subscribe to the account Подписаться на аккаунт - src/app/+video-channels/video-channels.component.ts71 - src/app/+videos/+video-watch/video-watch.component.ts701 - + + + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS ПЛЕЙЛИСТЫ diff --git a/client/src/locale/angular.sk-SK.xlf b/client/src/locale/angular.sk-SK.xlf index a99c1be9d..87a114685 100644 --- a/client/src/locale/angular.sk-SK.xlf +++ b/client/src/locale/angular.sk-SK.xlf @@ -2363,12 +2363,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3260,7 +3260,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7253,7 +7253,7 @@ channel with the same name ()! created. - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts76 Create userCreate user src/app/+admin/users/user-edit/user-create.component.ts95 @@ -7916,7 +7916,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.sl-SI.xlf b/client/src/locale/angular.sl-SI.xlf index b5ae4040f..582be2864 100644 --- a/client/src/locale/angular.sl-SI.xlf +++ b/client/src/locale/angular.sl-SI.xlf @@ -2491,12 +2491,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Ozadje videoposnetka @@ -3424,7 +3424,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7741,8 +7741,8 @@ channel with the same name ()! User created. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8472,7 +8472,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS PLAYLISTS diff --git a/client/src/locale/angular.sv-SE.xlf b/client/src/locale/angular.sv-SE.xlf index fb8a76ecd..f36bd5c46 100644 --- a/client/src/locale/angular.sv-SE.xlf +++ b/client/src/locale/angular.sv-SE.xlf @@ -5,13 +5,13 @@ Close the left menu Stäng vänstermenyn - - src/app/app.component.ts118 + src/app/app.component.ts118 + Open the left menu Öppna vänstermenyn - - src/app/app.component.ts120 + src/app/app.component.ts120 + You don't have notifications. Du har inga notifikationer. @@ -162,17 +162,19 @@ - - - - - - - - - - - src/app/+videos/+video-watch/video-watch.component.html77src/app/menu/menu.component.html105src/app/shared/shared-main/buttons/action-dropdown.component.html22src/app/shared/shared-main/misc/top-menu-dropdown.component.html14src/app/shared/shared-main/misc/top-menu-dropdown.component.html24src/app/shared/shared-moderation/batch-domains-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/+videos/+video-watch/video-watch.component.html77 + src/app/menu/menu.component.html105 + src/app/shared/shared-main/buttons/action-dropdown.component.html22 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html14 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html24 + src/app/shared/shared-moderation/batch-domains-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 + My watch history Min visningshistorik @@ -187,8 +189,8 @@ Options Alternativ - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html40 + Start at Börja vid @@ -254,15 +256,14 @@ video video - - - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts288src/app/shared/shared-video-miniature/video-download.component.ts55 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts288 + src/app/shared/shared-video-miniature/video-download.component.ts55 + The following link contains a private token and should not be shared with anyone. Följande länk innehåller en personlig nyckel och bör ej delas med någon annan. - - src/app/shared/shared-video-miniature/video-download.component.html19 + src/app/shared/shared-video-miniature/video-download.component.html19 + @@ -274,14 +275,13 @@ subtitles undertexter - - - src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/shared/shared-video-miniature/video-download.component.ts56 + Format Format - - src/app/shared/shared-video-miniature/video-download.component.html74 + src/app/shared/shared-video-miniature/video-download.component.html74 + @@ -294,33 +294,33 @@ Video stream Videoström - - src/app/shared/shared-video-miniature/video-download.component.html85 + src/app/shared/shared-video-miniature/video-download.component.html85 + Audio stream Ljudström - - src/app/shared/shared-video-miniature/video-download.component.html97 + src/app/shared/shared-video-miniature/video-download.component.html97 + Direct download Direktnerladdning - - src/app/shared/shared-video-miniature/video-download.component.html116 + src/app/shared/shared-video-miniature/video-download.component.html116 + Torrent (.torrent file) Torrent (.torrent-fil) - - src/app/shared/shared-video-miniature/video-download.component.html121 + src/app/shared/shared-video-miniature/video-download.component.html121 + Advanced Avancerad - - src/app/shared/shared-video-miniature/video-download.component.html135 + src/app/shared/shared-video-miniature/video-download.component.html135 + Simple Enkel - - src/app/shared/shared-video-miniature/video-download.component.html143 + src/app/shared/shared-video-miniature/video-download.component.html143 + video video @@ -330,13 +330,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Din videokvot kommer överskridas av den här videon (videostorlek: , använt: , kvot: ) - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts323 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts323 + Your daily video quota is exceeded with this video (video size: , used: , quota: ) Din dagliga videokvot kommer överskridas av den här videon (videostorlek: , använt: , kvot:) - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts341 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts341 + subtitles undertexter @@ -347,16 +347,16 @@ Avbryt - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html19 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 + src/app/shared/shared-video-miniature/videos-selection.component.html19 + Download Ladda ner - - - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272src/app/shared/shared-video-miniature/video-download.component.html4src/app/shared/shared-video-miniature/video-download.component.html156 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + src/app/shared/shared-video-miniature/video-download.component.html4 + src/app/shared/shared-video-miniature/video-download.component.html156 + Reason... Anledning … @@ -391,8 +391,10 @@ src/app/shared/shared-moderation/report-modals/report.component.html58 src/app/shared/shared-moderation/report-modals/video-report.component.html96 src/app/shared/shared-moderation/video-block.component.html42 - - The contact form is not enabled on this instance.The contact form is not enabled on this instance. + + + The contact form is not enabled on this instance. + Kontaktformuläret är inte aktiverat på den här instansen. src/app/+about/about-instance/contact-admin-modal.component.html 56 @@ -428,16 +430,16 @@ Unlisted Olistad - - - 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 Privat - - - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10src/app/shared/shared-video-miniature/video-miniature.component.html7src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10 + src/app/shared/shared-video-miniature/video-miniature.component.html7 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + {VAR_PLURAL, plural, =1 {1 view} other { views}} {VAR_PLURAL, plural, =1 {1 visning} other { visningar}} @@ -446,12 +448,13 @@ - - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16src/app/shared/shared-video/video-views-counter.component.html3src/app/shared/shared-video/video-views-counter.component.html7 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/shared/shared-video/video-views-counter.component.html3 + src/app/shared/shared-video/video-views-counter.component.html7 + {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} {VAR_PLURAL, plural, =1 {1 tittare} other { tittare}} @@ -479,15 +482,15 @@ Blocked Blockerad - - src/app/shared/shared-video-miniature/video-miniature.component.html57 + src/app/shared/shared-video-miniature/video-miniature.component.html57 + Sensitive Känsligt - - src/app/shared/shared-video-miniature/video-miniature.component.html62 + src/app/shared/shared-video-miniature/video-miniature.component.html62 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {Inga videor} =1 {1 video} other { videor}} @@ -499,13 +502,13 @@ - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + Updated Uppdaterades - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + Unavailable Ej tillgänglig @@ -514,10 +517,10 @@ Deleted Raderad - - - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html47src/app/shared/shared-abuse-list/abuse-list-table.component.html91src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html47 + src/app/shared/shared-abuse-list/abuse-list-table.component.html91 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + Edit starts/stops at Redigera start- och sluttid @@ -564,31 +567,31 @@ Delete Ta bort - - - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts87src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163src/app/+admin/users/user-list/user-list.component.ts81src/app/+admin/users/user-list/user-list.component.ts195src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.html50src/app/+my-library/my-videos/my-videos.component.ts115src/app/+my-library/my-videos/my-videos.component.ts142src/app/+my-library/my-videos/my-videos.component.ts183src/app/+videos/+video-edit/shared/video-edit.component.html178src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts144src/app/shared/shared-abuse-list/abuse-list-table.component.ts386src/app/shared/shared-abuse-list/abuse-list-table.component.ts421src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts87 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + src/app/+admin/users/user-list/user-list.component.ts81 + src/app/+admin/users/user-list/user-list.component.ts195 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.html50 + src/app/+my-library/my-videos/my-videos.component.ts115 + src/app/+my-library/my-videos/my-videos.component.ts142 + src/app/+my-library/my-videos/my-videos.component.ts183 + src/app/+videos/+video-edit/shared/video-edit.component.html178 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts144 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts386 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts421 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + Only live videos Endast direktsändningar @@ -619,11 +622,11 @@ Hide Dölj - - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-forms/input-toggle-hidden.component.ts38src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-forms/input-toggle-hidden.component.ts38 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + Show Visa @@ -898,17 +901,17 @@ User Användare - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts405 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts405 + Ban Blockera - - - - src/app/+admin/users/user-list/user-list.component.ts87src/app/shared/shared-moderation/user-ban-modal.component.html3src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269 + src/app/+admin/users/user-list/user-list.component.ts87 + src/app/shared/shared-moderation/user-ban-modal.component.html3 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269 + A banned user will no longer be able to login. @@ -919,25 +922,25 @@ Cancel Avbryt - - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+login/login.component.html117src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/video-add-components/video-upload.component.html81src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73src/app/+videos/+video-watch/video-watch.component.ts408src/app/modal/confirm.component.html20src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-video-miniature/video-download.component.html152 + src/app/+about/about-instance/contact-admin-modal.component.html48 + src/app/+login/login.component.html117 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html22 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html69 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73 + src/app/+videos/+video-watch/video-watch.component.ts408 + src/app/modal/confirm.component.html20 + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26 + src/app/shared/shared-moderation/batch-domains-modal.component.html31 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/video-report.component.html92 + src/app/shared/shared-moderation/user-ban-modal.component.html26 + src/app/shared/shared-moderation/video-block.component.html38 + src/app/shared/shared-video-miniature/video-download.component.html152 + Ban this user Blockera den här användaren @@ -1063,10 +1066,10 @@ Login Logga in - - - - src/app/+login/login-routing.module.ts12src/app/+login/login.component.html44src/app/menu/menu.component.html99 + src/app/+login/login-routing.module.ts12 + src/app/+login/login.component.html44 + src/app/menu/menu.component.html99 + Or sign in with Eller logga in med @@ -1179,9 +1182,9 @@ The link will expire within 1 hour. Signup Registrera - Button on the registration form to finalize the account and channel creation - src/app/+signup/+register/register.component.ts68 + src/app/+signup/+register/register.component.ts68 + Filters Filter @@ -1334,9 +1337,9 @@ The link will expire within 1 hour. My settings Mina inställningar - - - src/app/menu/menu.component.html119src/app/modal/quick-settings-modal.component.html3 + src/app/menu/menu.component.html119 + src/app/modal/quick-settings-modal.component.html3 + These settings apply only to your session on this instance. De här inställningarna berör endast din session på den här instansen. @@ -1386,83 +1389,83 @@ The link will expire within 1 hour. Public profile Offentlig profil - - src/app/menu/menu.component.html28 + src/app/menu/menu.component.html28 + Interface: Gränssnitt: - - src/app/menu/menu.component.html35 + src/app/menu/menu.component.html35 + Videos: Videor: - - src/app/menu/menu.component.html42 + src/app/menu/menu.component.html42 + Sensitive: Känsligt: - - src/app/menu/menu.component.html52 + src/app/menu/menu.component.html52 + Help share videos Hjälp till att överföra videor - - src/app/menu/menu.component.html58 + src/app/menu/menu.component.html58 + Keyboard shortcuts Kortkommandon - - - src/app/menu/menu.component.html67src/app/menu/menu.component.html141 + src/app/menu/menu.component.html67 + src/app/menu/menu.component.html141 + powered by PeerTube - CopyLeft 2015-2021 drivs av PeerTube – CopyLeft 2015–2021 - - src/app/menu/menu.component.html146 + src/app/menu/menu.component.html146 + Help Hjälp - - src/app/menu/menu.component.html137 + src/app/menu/menu.component.html137 + Get help using PeerTube Få hjälp att använda PeerTube - - src/app/menu/menu.component.html137 + src/app/menu/menu.component.html137 + powered by PeerTube drivs av PeerTube - - src/app/menu/menu.component.html147 + src/app/menu/menu.component.html147 + Log out Logga ut - - src/app/menu/menu.component.html72 + src/app/menu/menu.component.html72 + My account Mitt konto - - src/app/menu/menu.component.html83 + src/app/menu/menu.component.html83 + My library Mitt bibliotek - - src/app/menu/menu.component.html88 + src/app/menu/menu.component.html88 + Create an account Skapa ett konto - - - src/app/+login/login.component.html50src/app/menu/menu.component.html100 - + src/app/+login/login.component.html50 + src/app/menu/menu.component.html100 + My videos Mina videor - - - - src/app/+my-library/my-library-routing.module.ts76src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts69src/app/core/menu/menu.service.ts77 + src/app/+my-library/my-library-routing.module.ts76 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts69 + src/app/core/menu/menu.service.ts77 + My video imports Mina importerade videor @@ -1471,9 +1474,10 @@ The link will expire within 1 hour. My playlists Mina spellistor - - - src/app/+my-library/my-library-routing.module.ts39src/app/+my-library/my-video-playlists/my-video-playlists.component.html3src/app/core/menu/menu.service.ts86 + src/app/+my-library/my-library-routing.module.ts39 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 + src/app/core/menu/menu.service.ts86 + Create a new playlist Skapa en ny spellista @@ -1482,89 +1486,91 @@ The link will expire within 1 hour. My subscriptions Mina prenumerationer - - - src/app/+my-library/my-library-routing.module.ts98src/app/+my-library/my-subscriptions/my-subscriptions.component.html4src/app/core/menu/menu.service.ts92 + src/app/+my-library/my-library-routing.module.ts98 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html4 + src/app/core/menu/menu.service.ts92 + Videos Videor - - - src/app/+my-library/my-library.component.ts52src/app/core/menu/menu.service.ts76 + src/app/+my-library/my-library.component.ts52 + src/app/core/menu/menu.service.ts76 + Interface: Gränssnitt: - - src/app/menu/menu.component.html132 + src/app/menu/menu.component.html132 + Playlists Spellistor - - - src/app/+my-library/my-library.component.ts59src/app/core/menu/menu.service.ts85 + src/app/+my-library/my-library.component.ts59 + src/app/core/menu/menu.service.ts85 + Subscriptions Prenumerationer - - - - - src/app/+my-library/my-library.component.ts64src/app/+videos/video-list/video-user-subscriptions.component.ts46src/app/+videos/videos-routing.module.ts57src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts64 + src/app/+videos/video-list/video-user-subscriptions.component.ts46 + src/app/+videos/videos-routing.module.ts57 + src/app/core/menu/menu.service.ts91 + History Historik - - - src/app/+my-library/my-library.component.ts69src/app/core/menu/menu.service.ts97 + src/app/+my-library/my-library.component.ts69 + src/app/core/menu/menu.service.ts97 + VIDEOS VIDEOR - - - - src/app/+accounts/accounts.component.ts83src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215src/app/+video-channels/video-channels.component.ts76 + src/app/+accounts/accounts.component.ts83 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215 + src/app/+video-channels/video-channels.component.ts76 + Import jobs concurrency Samtidiga importjobb - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 + allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. tillåt import av flera videor samtidigt. ⚠️ Kräver en omstart av PeerTube. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + jobs in parallel samtidiga jobb - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + Allow import with HTTP URL (e.g. YouTube) Tillåt import via HTTP (t.ex. YouTube) - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + Discover Upptäck - - - 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 Administration - - src/app/menu/menu.component.html93 + src/app/menu/menu.component.html93 + About Om - - src/app/menu/menu.component.html124 + src/app/menu/menu.component.html124 + Contact Kontakt - - src/app/+about/about-routing.module.ts37src/app/menu/menu.component.html136 + src/app/+about/about-routing.module.ts37 + src/app/menu/menu.component.html136 + View your notifications Se dina notifikationer @@ -1696,7 +1702,6 @@ The link will expire within 1 hour. Filen är för stor för servern. Kontakta din administratör om du vill höja gränsen. src/app/core/rest/rest-extractor.service.ts62 - GLOBAL SEARCH GLOBAL SÖKNING @@ -1830,9 +1835,9 @@ The link will expire within 1 hour. Duration Längd - - - src/app/+search/search-filters.component.html108src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + src/app/+search/search-filters.component.html108 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + Display sensitive content Visa känsligt material @@ -1851,10 +1856,10 @@ The link will expire within 1 hour. Category Kategori - - - - src/app/+search/search-filters.component.html121src/app/+videos/+video-edit/shared/video-edit.component.html63src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html17 + src/app/+search/search-filters.component.html121 + src/app/+videos/+video-edit/shared/video-edit.component.html63 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html17 + Reset Återställ @@ -1872,10 +1877,10 @@ The link will expire within 1 hour. Licence Licens - - - - src/app/+search/search-filters.component.html134src/app/+videos/+video-edit/shared/video-edit.component.html74src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html26 + src/app/+search/search-filters.component.html134 + src/app/+videos/+video-edit/shared/video-edit.component.html74 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html26 + Display all licenses Visa alla licenser @@ -1884,11 +1889,11 @@ The link will expire within 1 hour. Language Språk - - - - - src/app/+search/search-filters.component.html147src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10src/app/+videos/+video-edit/shared/video-edit.component.html94src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html35 + src/app/+search/search-filters.component.html147 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10 + src/app/+videos/+video-edit/shared/video-edit.component.html94 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html35 + Display all languages Visa alla språk @@ -1959,9 +1964,9 @@ The link will expire within 1 hour. Tags Taggar - - - src/app/+videos/+video-edit/shared/video-edit.component.html19src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html44 + src/app/+videos/+video-edit/shared/video-edit.component.html19 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html44 + Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag. Taggar kan användas för att föreslå relevanta rekommendationer. Du kan använda upp till fem taggar. Tryck Enter för att lägga till en ny tagg. @@ -1980,9 +1985,9 @@ The link will expire within 1 hour. This image is too large. Den här bilden är för stor. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts56src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts56 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Ladda upp ett nytt baner @@ -2002,8 +2007,8 @@ The link will expire within 1 hour. ratio 6/1, recommended size: 1920x317, max size: , extensions: höjd/bredd-förhållande 1:6, rekommenderad storlek: 1920 × 317, max-storlek: , utökningar: - - src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts44 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts44 + Account avatar Kontots profilbild @@ -2019,14 +2024,18 @@ The link will expire within 1 hour. src/app/shared/shared-actor-image/actor-avatar.component.ts 48 - - Markdown compatible that also supports custom PeerTube HTML tagsMarkdown compatible that also supports custom PeerTube HTML tags + + + Markdown compatible that also supports custom PeerTube HTML tags + Markdown-kompatibel med stöd för anpassade PeerTube HTML-taggar src/app/shared/shared-custom-markup/custom-markup-help.component.html 2 - - Latest published videoLatest published video + + + Latest published video + Senast publicerade video src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html 24 @@ -2075,48 +2084,48 @@ The link will expire within 1 hour. Channel Kanal - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70src/app/+signup/+register/register.component.html34src/app/+videos/+video-edit/shared/video-edit.component.html58src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+signup/+register/register.component.html34 + src/app/+videos/+video-edit/shared/video-edit.component.html58 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + Privacy Offentlighetsstatus - - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+videos/+video-edit/shared/video-edit.component.html106src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29src/app/+videos/+video-edit/video-add-components/video-upload.component.html26src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2src/app/shared/shared-abuse-list/abuse-details.component.ts22 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+videos/+video-edit/shared/video-edit.component.html106 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html26 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2 + src/app/shared/shared-abuse-list/abuse-details.component.ts22 + FAQ Vanliga frågor - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + Frequently asked questions about PeerTube Vanliga frågor om PeerTube - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + API API - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + API documentation API-dokumentation - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + Schedule publication () Schemalägg publicering () @@ -2275,10 +2284,11 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 video} other { videor}} - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + @@ -2355,17 +2365,17 @@ The link will expire within 1 hour. Update Uppdatera - - - - - - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts174src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts174 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61 + src/app/+videos/+video-edit/video-update.component.html3 + src/app/+videos/+video-edit/video-update.component.html18 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + Select the file to upload Välj en fil att ladda upp @@ -2375,13 +2385,13 @@ The link will expire within 1 hour. Scheduled Schemalagd - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Dölj videon fram till ett datum - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Videons bakgrundsbild @@ -2435,8 +2445,8 @@ The link will expire within 1 hour. Upload on hold Uppladdning pausad - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts124 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts124 + Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. Uppladdning är inte aktiverat från ditt konto. Om du vill lägga upp videor, måste en administratör låsa upp din videokvot. @@ -2472,7 +2482,7 @@ The link will expire within 1 hour. Torrents with only 1 file are supported. - Torrents with only 1 file are supported. + Bara torrentar med en fil stöds. src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts 119 @@ -2541,18 +2551,18 @@ The link will expire within 1 hour. Other videos Andra videor - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + AUTOPLAY AUTOMATISK UPPSPELNING - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + Report this comment Anmäl den här kommentaren - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + Share Dela @@ -2664,64 +2674,58 @@ The link will expire within 1 hour. Public Offentlig - - 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. Den här videon har blockerats. - - src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + Published Publicerades - - - src/app/+videos/+video-watch/video-watch.component.html31 + src/app/+videos/+video-watch/video-watch.component.html31 + SUPPORT STÖTTA - - 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 DELA - - 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 SPARA - - 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 LADDA NER - - 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 Gilla den här videon - - 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 Ogilla den här videon - - 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 Supportalternativ för den här videon - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + By Av - - src/app/+videos/+video-watch/video-watch.component.html71 + src/app/+videos/+video-watch/video-watch.component.html71 + Subscribe Prenumerera @@ -2745,42 +2749,42 @@ The link will expire within 1 hour. Show more Visa mer - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + Show less Visa mindre - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + Origin Ursprung - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 + Originally published Ursprungligen publicerad - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html12 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html12 + Friendly Reminder: Observera: - - 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. Den här videons delningssystem gör att en del teknisk information om ditt system (som publik IP-adress) kan skickas till andra serventer. - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + More information Mer information - - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html36src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56src/app/+admin/system/jobs/jobs.component.html56src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + src/app/+admin/moderation/video-block-list/video-block-list.component.html36 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56 + src/app/+admin/system/jobs/jobs.component.html56 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + The video was blocked due to automatic blocking of new videos Den här videon har blockerats eftersom nya videor blockeras automatiskt @@ -2794,48 +2798,48 @@ The link will expire within 1 hour. Get more information Visa mer 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.html13 - The video is being imported, it will be available when the import is finished. - The video is being imported, it will be available when the import is finished. - + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 + + + The video is being imported, it will be available when the import is finished. + Videon importeras och kommer göras tillgänglig när importen är klar. src/app/+videos/+video-watch/shared/information/video-alert.component.html 2,3 - - The video is being transcoded, it may not work properly. - The video is being transcoded, it may not work properly. - + + + The video is being transcoded, it may not work properly. + Videon omkodas och fungerar kanske inte korrekt än. src/app/+videos/+video-watch/shared/information/video-alert.component.html 6,7 - - This video will be published on . - This video will be published on . - + + + This video will be published on . + Videon kommer publiceras . src/app/+videos/+video-watch/shared/information/video-alert.component.html 9,11 - - This live has not started yet. - This live has not started yet. - + + + This live has not started yet. + Den här sändningen har inte startat än. src/app/+videos/+video-watch/shared/information/video-alert.component.html 14,15 - - This live has ended. - This live has ended. - + + + This live has ended. + Den här sändningen har avslutats. src/app/+videos/+video-watch/shared/information/video-alert.component.html 18,19 @@ -2844,171 +2848,171 @@ The link will expire within 1 hour. SORT BY SORTERA EFTER - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + Most recent first (default) Nyast först (standard) - - 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 Flest svar först - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + No comments. Inga kommentarer. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + View from and others Visa från med flera - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html80 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html80 + {VAR_PLURAL, plural, =1 {1 reply} other { replies}} {VAR_PLURAL, plural, =1 {1 svar} other { svar}} - - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html80src/app/+videos/+video-watch/shared/comment/video-comments.component.html83src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html80 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html83 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + View from Visa från - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html83 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html83 + View Visa - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + Comments are disabled. Kommentarer har avaktiverats. - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html98 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html98 + The deletion will be sent to remote instances so they can reflect the change. Raderingen kommer vidarebefordras till fjärrinstansen så att de kan spegla ändringen. - - 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. Om det är en fjärrinstans kommer raderingen endast ske på din instans. - - 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 Radera och omformulera - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts203 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts203 + Do you really want to delete and re-draft this comment? Vill du verkligen radera och omformulera den här kommentaren? - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts203 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts203 + Add comment... Lägg till kommentar … - - 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 Med stöd för Markdown - - 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: Med stöd för Markdown med: - - 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 Automatiskt genererade länkar - - 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 Radbrytningar - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html22 + Lists Listor - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23src/app/shared/shared-main/misc/help.component.ts84 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23 + src/app/shared/shared-main/misc/help.component.ts84 + Emphasis Betoning - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25src/app/shared/shared-main/misc/help.component.ts81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25 + src/app/shared/shared-main/misc/help.component.ts81 + bold fetstil - - 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 kursiv stil - - 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-förkortningar - - 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 Se den fullständiga listan - - 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 Bara ett steg kvar för att kommentera - - 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). Du kan kommentera med ett konto på en ActivityPub-kompatibel instans (som PeerTube, Mastodon eller Pleroma). - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + Login to comment Logga in för att skriva kommentarer - - 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 Lista över Markdown-emojier - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + Comment Kommentera - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + Reply Svara - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + Highlighted comment Markerad kommentar - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + Reply Svar @@ -3017,8 +3021,8 @@ The link will expire within 1 hour. This comment has been deleted Den här kommentaren har raderats - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + Video redundancies Videoredundans @@ -3277,9 +3281,9 @@ The link will expire within 1 hour. Create user Skapa användare - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Tabellparametrar @@ -3643,13 +3647,13 @@ The link will expire within 1 hour. No abuses found matching current filters. Det finns inga anmälningar som matchar den här sökningen. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + No abuses found. Inga anmälningar hittade. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html167 + src/app/shared/shared-abuse-list/abuse-list-table.component.html167 + Unsolved reports Oavklarade anmälningar @@ -3770,10 +3774,11 @@ The link will expire within 1 hour. Video Video - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43src/app/+my-library/my-ownership/my-ownership.component.html20src/app/+my-library/my-video-imports/my-video-imports.component.html18src/app/shared/shared-video-miniature/video-download.component.html8 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43 + src/app/+my-library/my-ownership/my-ownership.component.html20 + src/app/+my-library/my-video-imports/my-video-imports.component.html18 + src/app/shared/shared-video-miniature/video-download.component.html8 + Comment Kommentera @@ -3976,14 +3981,14 @@ The link will expire within 1 hour. Search Sök - - - - - - - - src/app/+admin/plugins/plugins.component.html5src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts249src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/shared/shared-main/misc/simple-search-input.component.ts15src/app/shared/shared-main/misc/simple-search-input.component.ts16 + src/app/+admin/plugins/plugins.component.html5 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts249 + 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.ts15 + src/app/shared/shared-main/misc/simple-search-input.component.ts16 + Users can resolve distant content Användare kan hämta fjärrinnehåll @@ -4267,13 +4272,13 @@ The link will expire within 1 hour. Main instance categories Instansens huvudkategorier - - 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 Lägg till en ny kategori - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + 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. Delningssystemet gör att en del teknisk information om ditt system (såsom publik IP-adress) kan skickas till andra serventer, men hjälper även till att minska serverbelastningen. @@ -4307,52 +4312,52 @@ The link will expire within 1 hour. Main languages you/your moderators speak Språk som du eller dina moderatorer behärskar - - 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 OCH OFÖRBEHÅLLSAMT MATERIAL - - 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. Hantera användare för att bygga upp en grupp moderatorer. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html84 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html84 + This instance is dedicated to sensitive or NSFW content Den här instansen tillåter känsligt och oförbehållsamt innehåll - - 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. Du kan låta andra administratörer veta att du huvudsakligen federerar känsligt material. Dessutom kommer rutan för känsligt och oförbehållsamt innehåll vara ifylld som standard. - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html98 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html98 + Policy on videos containing sensitive content Policy för videor med känsligt innehåll - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html106 + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. Med Dölj eller Suddiga miniatyrer behövs en bekräftelse för att visa videon. - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111src/app/shared/shared-user-settings/user-video-settings.component.html8 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111 + src/app/shared/shared-user-settings/user-video-settings.component.html8 + Blur thumbnails Gör miniatyrbilden suddig - - - 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 Visa - - - - 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 Strategi @@ -4361,90 +4366,90 @@ The link will expire within 1 hour. Terms Villkor - - - - - src/app/+about/about-instance/about-instance.component.html168src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129src/app/+signup/+register/register.component.html13src/app/shared/shared-instance/instance-about-accordion.component.html35 + src/app/+about/about-instance/about-instance.component.html168 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129 + src/app/+signup/+register/register.component.html13 + src/app/shared/shared-instance/instance-about-accordion.component.html35 + Code of conduct Användarvillkor - - - - src/app/+about/about-instance/about-instance.component.html154src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140src/app/shared/shared-instance/instance-about-accordion.component.html47 + src/app/+about/about-instance/about-instance.component.html154 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140 + src/app/shared/shared-instance/instance-about-accordion.component.html47 + Moderation information Information om moderation - - - - src/app/+about/about-instance/about-instance.component.html140src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151src/app/shared/shared-instance/instance-about-accordion.component.html41 + src/app/+about/about-instance/about-instance.component.html140 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151 + src/app/shared/shared-instance/instance-about-accordion.component.html41 + Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc Vem modererar instansen? Hur ser policyn ut för videor med känsligt eller oförbehållsamt innehåll, politiska videor och liknande? - - 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 DU OCH DIN INSTANS - - 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? Vem står bakom instansen? - - 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? En person? En ideell förening? Ett företag? - - 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? Varför skapade du den här instansen? - - 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? För att dela dina egna videor eller för att tillåta kontoregistrering och låta folk ladda upp vad de vill? - - 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? Hur länge planerar du underhålla den här instansen? - - 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 Detta är viktigt att veta för användare som vill registrera sig på din instans - - 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? Hur tänker du finansiera PeerTube-servern? - - 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? Med dina egna medel? Donationer från användarna? Reklamintäkter? - - 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 ÖVRIG 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? Vilken server eller hårdvara körs instansen på? - - 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. till exempel 2vCore 2GB RAM eller en länk till den servertjänst du hyr - - 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 UTSEENDE @@ -4552,14 +4557,18 @@ The link will expire within 1 hour. Signup won't be limited to a fixed number of users. Kontoregistrering kommer inte begränsas till ett förutbestämt antal användare. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html159 - - Minimum required age to create an accountMinimum required age to create an account + + + Minimum required age to create an account + Minimumålder för att skapa ett konto src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 163 - - {VAR_PLURAL, plural, =1 {year old} other {years old}}{VAR_PLURAL, plural, =1 {year old} other {years old}} + + + {VAR_PLURAL, plural, =1 {year old} other {years old}} + {VAR_PLURAL, plural, =1 {år} other {år}} src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 170 @@ -4626,150 +4635,150 @@ The link will expire within 1 hour. Default video quota per user Standardkvot för videor per användare - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 + bytes byte - - - - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html178src/app/+admin/users/user-edit/user-edit.component.html178 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html178 + src/app/+admin/users/user-edit/user-edit.component.html178 + Default daily upload limit per user Standarduppladdningsgräns för användare - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 + Allow import with a torrent file or a magnet URI Tillåt import via torrent-fil eller magnet-länk - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + Unless a user is marked as trusted, their videos will stay private until a moderator reviews them. Användarnas videor kommer hållas privata tills en moderator har granskat dem, såvida användaren inte har markerats som betrodd. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html263 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html263 + Block new videos automatically Blockera nya videor automatiskt - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + SEARCH SÖKNING - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + Allow users to do remote URI/handle search Låt användare använda en länk för att göra fjärrsökningar - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + Allow your users to look up remote videos/actors that may not be federated with your instance Tillåt dina användare att söka efter videor, konton eller kanaler som möjligen inte är federerade med din instans - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html291 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html291 + Allow anonymous to do remote URI/handle search Låt anonyma användare använda en länk för att göra fjärrsökningar - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html299 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html299 + Allow anonymous users to look up remote videos/actors that may not be federated with your instance Tillåt anonyma användare att söka efter videor, konton eller kanaler som möjligen inte är federerade med din instans - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html302 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html302 + ⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select. ⚠️ Den här funktionen beror på hur väl instanserna modereras i det sökregister du väljer. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html316 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html316 + You should only use moderated search indexes in production, or host your own. Du bör enbart använda modererade sökregister i produktionsmiljö, alternativt göra ett eget. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 + Search index URL Sökregistrets webbadress - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + Disable local search in search bar Avaktivera lokal sökning i sökrutan - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + Otherwise the local search stays used by default Annars används den lokala sökfunktionen som standard - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + Search bar uses the global search index by default Sökrutan använder det globala sökregistret som standard - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + Enable global search Aktivera global sökning - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + FEDERATION FEDERATION - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 + Manage relations with other instances. Hantera kopplingar till andra instanser. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 + Other instances can follow yours Andra instanser kan följa din - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + Manually approve new instance followers Godkänn instansens nya följare manuellt - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + Automatically follow back instances Följ, per automatik, instanser som följer din - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 + ⚠️ This functionality requires a lot of attention and extra moderation. ⚠️ Den här funktionen kräver mycket uppmärksamhet och extra moderation. - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + Index URL Register-URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + Automatically follow instances of a public index Följ instanser i ett offentligt register automatiskt - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 + See the documentation for more information about the expected URL Se dokumentationen för mer information om den väntade webbadressen - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + ADMINISTRATORS ADMINISTRATÖRER - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + Administrator Administratör @@ -4778,13 +4787,13 @@ The link will expire within 1 hour. Admin email Administratörens e-postadress - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + Enable contact form Aktivera kontaktformulär - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 + VOD Transcoding Omkodning av video on demand @@ -4793,28 +4802,28 @@ The link will expire within 1 hour. TWITTER TWITTER - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. Uppge ett Twitter-konto som representerar din instans för att förbättra förhandsvisningen av länkar. Du kan låta standardvärdet stå kvar om du inte har något konto. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 + Your Twitter username Ditt användarnamn på Twitter - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + Instance allowed by Twitter Instans godkänd av Twitter - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 + If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. - If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 + När du delar en videolänk och instansen är godkänd av Twitter kommer en spelare bäddas in i Twitterflödet. Om instansen inte är godkänd kommer vi använda ett bildkort som länkar till din PeerTube-instans. Kryssa i den här rutan, spara inställningarna och testa med en videolänk från din instans (https://example.com/videos/watch/blabla) på https://cards-dev.twitter.com/validator för att se om din instans är godkänd. + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 + LIVE DIREKT @@ -5226,38 +5235,38 @@ color: red; Profile Profil - - src/app/shared/shared-video-miniature/video-download.component.ts237 + src/app/shared/shared-video-miniature/video-download.component.ts237 + Resolution Upplösning - - src/app/shared/shared-video-miniature/video-download.component.ts246 + src/app/shared/shared-video-miniature/video-download.component.ts246 + Aspect ratio Höjd/bredd-förhållande - - src/app/shared/shared-video-miniature/video-download.component.ts247 + src/app/shared/shared-video-miniature/video-download.component.ts247 + Average frame rate Genomsnittlig bildhastighet - - src/app/shared/shared-video-miniature/video-download.component.ts248 + src/app/shared/shared-video-miniature/video-download.component.ts248 + Pixel format Pixel-format - - src/app/shared/shared-video-miniature/video-download.component.ts249 + src/app/shared/shared-video-miniature/video-download.component.ts249 + Sample rate Samplingshastighet - - src/app/shared/shared-video-miniature/video-download.component.ts253 + src/app/shared/shared-video-miniature/video-download.component.ts253 + Channel Layout Utseende för kanaler - - src/app/shared/shared-video-miniature/video-download.component.ts254 + src/app/shared/shared-video-miniature/video-download.component.ts254 + Video settings Videoinställningar @@ -5306,9 +5315,9 @@ color: red; Policy for sensitive videos Policy för känsliga videor - - - 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 Visa endast videor och undertexter på följande språk @@ -5322,9 +5331,9 @@ color: red; Add a new language Lägg till ett nytt språk - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71src/app/shared/shared-user-settings/user-video-settings.component.html36 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71 + src/app/shared/shared-user-settings/user-video-settings.component.html36 + is awaiting email verification inväntar verifikation via e-post @@ -5425,9 +5434,9 @@ color: red; Account page Kontosida - - - src/app/+videos/+video-watch/video-watch.component.html70src/app/+videos/+video-watch/video-watch.component.html76 + src/app/+videos/+video-watch/video-watch.component.html70 + src/app/+videos/+video-watch/video-watch.component.html76 + @@ -5558,10 +5567,10 @@ color: red; Channel page Kanalsida - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html23src/app/+my-library/my-subscriptions/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+my-library/+my-video-channels/my-video-channels.component.html23 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html67 + Created by Skapad av @@ -5812,11 +5821,12 @@ color: red; {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} {VAR_PLURAL, plural, =1 {1 prenumerant} other { prenumeranter}} - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html28src/app/+video-channels/video-channels.component.html73src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html28 + src/app/+video-channels/video-channels.component.html73 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 video} other { videor}} @@ -5917,9 +5927,11 @@ channel with the same name ()! See this video channel Visa den här videokanalen - - - src/app/+accounts/account-video-channels/account-video-channels.component.html13src/app/+accounts/account-video-channels/account-video-channels.component.html17src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + src/app/+accounts/account-video-channels/account-video-channels.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html17 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + This channel doesn't have any videos. Den här kanalen har inga videor. @@ -5933,8 +5945,8 @@ channel with the same name ()! Stats Statistik - - src/app/menu/menu.component.html139 + src/app/menu/menu.component.html139 + This channel does not have playlists. Den här kanalen har inga spellistor. @@ -6267,23 +6279,23 @@ channel with the same name ()! About this instance Om den här instansen - - src/app/+about/about-routing.module.ts25 + src/app/+about/about-routing.module.ts25 + About PeerTube Om PeerTube - - src/app/+about/about-routing.module.ts50 + src/app/+about/about-routing.module.ts50 + About this instance's network Om den här instansens nätverk - - src/app/+about/about-routing.module.ts59 + src/app/+about/about-routing.module.ts59 + Link copied Länk kopierad - - src/app/+about/about-instance/about-instance.component.ts98 + src/app/+about/about-instance/about-instance.component.ts98 + Developed with ❤ by Framasoft Utvecklat med ❤ av Framasoft @@ -6306,18 +6318,18 @@ channel with the same name ()! Skapa mitt konto - - src/app/+signup/+register/register.component.html39 + src/app/+signup/+register/register.component.html39 + PeerTube is creating your account... PeerTube skapar ditt konto … - - src/app/+signup/+register/register.component.html47 + src/app/+signup/+register/register.component.html47 + Done Klart - - src/app/+signup/+register/register.component.html43 + src/app/+signup/+register/register.component.html43 + Who are we? Vilka är vi? @@ -6388,8 +6400,10 @@ channel with the same name ()!Channel name cannot be the same as your account name. You can click on the first step to update your account name. Kanalnamnet kan inte vara samma som ditt kontonamn. Du kan klicka på det första steget för att ändra ditt kontonamn. src/app/+signup/+register/register-step-channel.component.html51 - - I am at least years old and agree to the Terms and to the Code of Conduct of this instance I am at least years old and agree to the Terms and to the Code of Conduct of this instance + + + I am at least years old and agree to the Terms and to the Code of Conduct of this instance + Jag är minst år gammal samt godkänner villkoren och instansens uppförandekod src/app/+signup/+register/register-step-terms.component.html 5,10 @@ -6408,7 +6422,6 @@ channel with the same name ()!4,5 - Register Skaffa ett konto @@ -6417,13 +6430,13 @@ channel with the same name ()! Your message has been sent. Ditt meddelande har skickats. - - src/app/+about/about-instance/contact-admin-modal.component.ts89 + src/app/+about/about-instance/contact-admin-modal.component.ts89 + You already sent this form recently Du har redan skickat detta formulär nyligen - - src/app/+about/about-instance/contact-admin-modal.component.ts95 + src/app/+about/about-instance/contact-admin-modal.component.ts95 + Account videos Kontots videor @@ -6433,14 +6446,15 @@ channel with the same name ()!Search videos within account Sök efter videor från ett konto src/app/+accounts/accounts-routing.module.ts49 - - ACCOUNTACCOUNT + + + ACCOUNT + KONTO src/app/+accounts/accounts.component.html 8 - Account video channels Kontots kanaler @@ -6957,9 +6971,9 @@ channel with the same name ()! Instance muted. Instansen kommer ignoreras. - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts143 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts143 + Instance muted by your instance. Instansen ignoreras av din instans. @@ -7108,23 +7122,23 @@ channel with the same name ()! Do you really want to unblock this video? It will be available again in the videos list. Vill du verkligen häva den här videons blockering? Detta kommer göra den synlig igen i videokatalogen. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts133src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts133 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + Unblock Häv blockering - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts82src/app/+admin/moderation/video-block-list/video-block-list.component.ts135src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts82 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts135 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + Video unblocked. Videon är inte längre blockerad. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts140src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts140 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + yes ja @@ -7391,8 +7405,8 @@ channel with the same name ()! User created. Användare har skapats. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Skapa användare @@ -7456,8 +7470,8 @@ channel with the same name ()! Update a user Uppdatera en användare - - src/app/+admin/users/users.routes.ts45 + src/app/+admin/users/users.routes.ts45 + Federation Federation @@ -7476,9 +7490,9 @@ channel with the same name ()! Videos will be deleted, comments will be tombstoned. Videorna kommer raderas och kommentarerna arkiverade. - - - src/app/+admin/users/user-list/user-list.component.ts82src/app/shared/shared-moderation/user-moderation-dropdown.component.ts265 + src/app/+admin/users/user-list/user-list.component.ts82 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts265 + Ban Blockera @@ -7488,77 +7502,77 @@ channel with the same name ()! User won't be able to login anymore, but videos and comments will be kept as is. Användare kommer inte längre kunna logga in, men videor och kommentarer kommer behållas så som de är. - - - src/app/+admin/users/user-list/user-list.component.ts88src/app/shared/shared-moderation/user-moderation-dropdown.component.ts270 + src/app/+admin/users/user-list/user-list.component.ts88 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts270 + Unban Avsluta blockering - - - - src/app/+admin/users/user-list/user-list.component.ts93src/app/+admin/users/user-list/user-list.component.ts172src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + src/app/+admin/users/user-list/user-list.component.ts93 + src/app/+admin/users/user-list/user-list.component.ts172 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + Set Email as Verified Markera e-post som verifierad - - - src/app/+admin/users/user-list/user-list.component.ts100src/app/shared/shared-moderation/user-moderation-dropdown.component.ts281 + src/app/+admin/users/user-list/user-list.component.ts100 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts281 + You cannot ban root. Du kan inte blockera root. - - - src/app/+admin/users/user-list/user-list.component.ts159src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + src/app/+admin/users/user-list/user-list.component.ts159 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + Do you really want to unban users? Vill du verkligen avbryta blockeringen av användare? - - src/app/+admin/users/user-list/user-list.component.ts172 + src/app/+admin/users/user-list/user-list.component.ts172 + users unbanned. användare avblockerade. - - src/app/+admin/users/user-list/user-list.component.ts178 + src/app/+admin/users/user-list/user-list.component.ts178 + You cannot delete root. Du kan inte radera root. - - - src/app/+admin/users/user-list/user-list.component.ts189src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + src/app/+admin/users/user-list/user-list.component.ts189 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + If you remove these users, you will not be able to create others with the same username! Om du tar bort de här användarna kommer du inte kunna skapa nya med samma användarnamn! - - src/app/+admin/users/user-list/user-list.component.ts194 + src/app/+admin/users/user-list/user-list.component.ts194 + users deleted. användare borttagna. - - src/app/+admin/users/user-list/user-list.component.ts200 + src/app/+admin/users/user-list/user-list.component.ts200 + users email set as verified. användares e-post har markerats som verifierade. - - src/app/+admin/users/user-list/user-list.component.ts211 + src/app/+admin/users/user-list/user-list.component.ts211 + Account unmuted. Kontot ignoreras inte längre. - - - src/app/shared/shared-moderation/account-blocklist.component.ts43src/app/shared/shared-moderation/user-moderation-dropdown.component.ts129 + src/app/shared/shared-moderation/account-blocklist.component.ts43 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts129 + Instance unmuted. Instansen ignoreras inte längre. - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts157 + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts157 + Videos history is enabled Videohistorik är aktiverad @@ -7659,9 +7673,9 @@ channel with the same name ()! Interface settings updated. Gränssnittsinställningar uppdaterade. - - - src/app/shared/shared-user-settings/user-interface-settings.component.ts72src/app/shared/shared-user-settings/user-interface-settings.component.ts79 + src/app/shared/shared-user-settings/user-interface-settings.component.ts72 + src/app/shared/shared-user-settings/user-interface-settings.component.ts79 + New video from your subscriptions Ny video från dina prenumerationer @@ -7751,8 +7765,8 @@ channel with the same name ()! Preferences saved Inställningar sparade - - src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + Profile updated. Profilen har uppdaterats. @@ -7769,26 +7783,26 @@ channel with the same name ()! Avatar changed. Avataren har uppdaterats. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts44src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts105 + src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts105 + avatar profilbild - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts112 + src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts112 + Avatar deleted. Profilbilden har raderats. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts61src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts122 + src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts122 + Unknown language Okänt språk - - src/app/shared/shared-user-settings/user-video-settings.component.ts55 + src/app/shared/shared-user-settings/user-video-settings.component.ts55 + Too many languages are enabled. Please enable them all or stay below 20 enabled languages. För många språk aktiverade. Aktivera antingen alla eller begränsa dem till max 20 stycken. @@ -7817,23 +7831,23 @@ channel with the same name ()! Video channel updated. Kanalen har uppdaterats. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts92 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts92 + Banner changed. Baneret har ändrats. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts135 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts135 + banner baner - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts142 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts142 + Banner deleted. Baneret har raderats. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts152 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts152 + Please type the display name of the video channel () to confirm Uppge kanalens visningsnamn () för att bekräfta @@ -8029,8 +8043,8 @@ channel with the same name ()! Channels Kanaler - - src/app/+my-library/my-library.component.ts45 + src/app/+my-library/my-library.component.ts45 + Videos Videor @@ -8060,18 +8074,18 @@ channel with the same name ()! Now please check your emails to verify your account and complete signup. Kolla din e-post för att verifiera ditt konto och slutföra skapandet av ditt konto. - - src/app/+signup/+register/register.component.ts130 + src/app/+signup/+register/register.component.ts130 + You are now logged in as ! Du är nu inloggad som ! - - src/app/+signup/+register/register.component.ts138 + src/app/+signup/+register/register.component.ts138 + An email with verification link will be sent to . Ett e-postmeddelande med en verifikationslänk har skickats till . - - src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 + Unable to find user id or verification string. Kan inte hitta användar-id eller verifikationssträng. @@ -8088,7 +8102,7 @@ channel with the same name ()!Prenumerera på kontot - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS SPELLISTOR @@ -8100,38 +8114,38 @@ channel with the same name ()! Focus the search bar Markera sökrutan - - src/app/app.component.ts300 + src/app/app.component.ts300 + Toggle the left menu Växla vänstermenyn - - src/app/app.component.ts305 + src/app/app.component.ts305 + Go to the discover videos page Gå till upptäck videor-sidan - - src/app/app.component.ts310 + src/app/app.component.ts310 + Go to the trending videos page Gå till sidan med populära videor - - src/app/app.component.ts315 + src/app/app.component.ts315 + Go to the recently added videos page Gå till sidan med nyligen uppladdade videor - - src/app/app.component.ts320 + src/app/app.component.ts320 + Go to the local videos page Gå till sidan med lokala videor - - src/app/app.component.ts325 + src/app/app.component.ts325 + Go to the videos upload page Gå till sidan för videouppladdningar - - src/app/app.component.ts330 + src/app/app.component.ts330 + Go to my subscriptions Gå till mina prenumerationer @@ -8167,8 +8181,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Keyboard Shortcuts: Kortkommandon: src/app/core/hotkeys/hotkeys.component.ts11 - - My historyMy history + + + My history + Min historik src/app/core/menu/menu.service.ts 98 @@ -8177,9 +8193,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Trending Populärt - - src/app/core/menu/menu.service.ts131 - ON ON + src/app/core/menu/menu.service.ts131 + + + ON + PÅ src/app/core/menu/menu.service.ts 150 @@ -8188,9 +8206,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Home Hem - - - src/app/core/menu/menu.service.ts115src/app/core/menu/menu.service.ts116 + src/app/core/menu/menu.service.ts115 + src/app/core/menu/menu.service.ts116 + Success Åtgärden lyckades @@ -8209,29 +8227,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular any language vilket språk som helst - - src/app/menu/menu.component.ts263 - + src/app/menu/menu.component.ts263 + hide dölj - - src/app/menu/menu.component.ts298 + src/app/menu/menu.component.ts298 + blur gör suddig - - src/app/menu/menu.component.ts302 + src/app/menu/menu.component.ts302 + display visa - - src/app/menu/menu.component.ts306 + src/app/menu/menu.component.ts306 + Unknown Okänd - - src/app/menu/menu.component.ts193 + src/app/menu/menu.component.ts193 + Your password has been successfully reset! Ditt lösenord har återställts! @@ -8240,45 +8257,45 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Today Idag - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/abstract-video-list.ts133 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/abstract-video-list.ts133 + Yesterday Igår - - src/app/shared/shared-video-miniature/abstract-video-list.ts134 + src/app/shared/shared-video-miniature/abstract-video-list.ts134 + This week Den här veckan - - src/app/shared/shared-video-miniature/abstract-video-list.ts135 + src/app/shared/shared-video-miniature/abstract-video-list.ts135 + This month Den här månaden - - src/app/shared/shared-video-miniature/abstract-video-list.ts136 + src/app/shared/shared-video-miniature/abstract-video-list.ts136 + Last month Senaste månaden - - src/app/shared/shared-video-miniature/abstract-video-list.ts137 + src/app/shared/shared-video-miniature/abstract-video-list.ts137 + Older Äldre - - src/app/shared/shared-video-miniature/abstract-video-list.ts138 + src/app/shared/shared-video-miniature/abstract-video-list.ts138 + Cannot load more videos. Try again later. Kan inte ladda in fler videor, försök gärna igen om en stund. - - src/app/shared/shared-video-miniature/abstract-video-list.ts223 + src/app/shared/shared-video-miniature/abstract-video-list.ts223 + function is not implemented funktionen är inte tagen i bruk - - src/app/shared/shared-video-miniature/abstract-video-list.ts296 + src/app/shared/shared-video-miniature/abstract-video-list.ts296 + Last 7 days Senaste veckan @@ -8344,13 +8361,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Search index is unavailable. Retrying with instance results instead. Sökregistret kan inte nås. Försöker igen med resultat från den här instansen istället. - - src/app/+search/search.component.ts153 + src/app/+search/search.component.ts153 + Search error Sökfel - - src/app/+search/search.component.ts154 + src/app/+search/search.component.ts154 + Search Sök @@ -8546,20 +8563,26 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Signup limit must be a number. Gränsen för användarantal måste vara ett nummer. 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 @@ -8568,73 +8591,73 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Admin email is required. Administratörens e-postadress måste uppges. - - src/app/shared/form-validators/custom-config-validators.ts64 + src/app/shared/form-validators/custom-config-validators.ts64 + Admin email must be valid. Administratörens e-postadress måste var giltig. - - src/app/shared/form-validators/custom-config-validators.ts65 + src/app/shared/form-validators/custom-config-validators.ts65 + Transcoding threads is required. Antalet omkodningstrådar måste anges. - - 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. Antal trådar för omkodning måste vara större eller lika med noll. - - src/app/shared/form-validators/custom-config-validators.ts73 + src/app/shared/form-validators/custom-config-validators.ts73 + Max live duration is required. Maxlängden för direktsändningar måste anges. - - 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. Maxlängden för direktsändningar måste vara minst -1. - - src/app/shared/form-validators/custom-config-validators.ts81 + src/app/shared/form-validators/custom-config-validators.ts81 + Max instance lives is required. Maxantalet direktsändningar på instansen måste uppges. - - 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. Maxantalet direktsändningar på instansen måste vara minst -1. - - src/app/shared/form-validators/custom-config-validators.ts89 + src/app/shared/form-validators/custom-config-validators.ts89 + Max user lives is required. Maxantalet direktsändningar per användare måste uppges. - - 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. Maxantalet direktsändningar per användare måste vara minst -1. - - src/app/shared/form-validators/custom-config-validators.ts97 + src/app/shared/form-validators/custom-config-validators.ts97 + Concurrency is required. Concurrency is required. - - src/app/shared/form-validators/custom-config-validators.ts104 + src/app/shared/form-validators/custom-config-validators.ts104 + Concurrency should be greater or equal to 1. Concurrency should be greater or equal to 1. - - src/app/shared/form-validators/custom-config-validators.ts105 + src/app/shared/form-validators/custom-config-validators.ts105 + Index URL should be a URL Registerlänken måste vara en giltig webbadress - - src/app/shared/form-validators/custom-config-validators.ts112 + src/app/shared/form-validators/custom-config-validators.ts112 + Search index URL should be a URL Sökregistrets länk måste vara en giltig webbadress - - src/app/shared/form-validators/custom-config-validators.ts119 + src/app/shared/form-validators/custom-config-validators.ts119 + Email is required. E-postadress måste uppges. @@ -9410,66 +9433,66 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Hidden Dold - - src/app/shared/shared-instance/instance-features-table.component.ts53 + src/app/shared/shared-instance/instance-features-table.component.ts53 + Blurred with confirmation request Suddig, fråga om bekräftelse - - src/app/shared/shared-instance/instance-features-table.component.ts54 + src/app/shared/shared-instance/instance-features-table.component.ts54 + Displayed Synlig - - src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-instance/instance-features-table.component.ts55 + ~ 1 minute omkring en minut - - src/app/shared/shared-instance/instance-features-table.component.ts74 + src/app/shared/shared-instance/instance-features-table.component.ts74 + ~ minutes omkring minuter - - src/app/shared/shared-instance/instance-features-table.component.ts76 + src/app/shared/shared-instance/instance-features-table.component.ts76 + of full HD videos video i full HD - - src/app/shared/shared-instance/instance-features-table.component.ts92 + src/app/shared/shared-instance/instance-features-table.component.ts92 + of HD videos video i HD - - src/app/shared/shared-instance/instance-features-table.component.ts93 + src/app/shared/shared-instance/instance-features-table.component.ts93 + of average quality videos video i standardupplösning - - src/app/shared/shared-instance/instance-features-table.component.ts94 + src/app/shared/shared-instance/instance-features-table.component.ts94 + (channel page) (kanalsida) - - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts41src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts41 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (kontosida) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + Emphasis Betoning @@ -9518,34 +9541,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to unban ? Vill du verkligen avsluta blockeringen av ? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + User unbanned. Användaren är inte längre blockerad. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + If you remove this user, you will not be able to create another with the same username! Om du tar bort den här användaren kommer du inte kunna skapa en ny med samma användarnamn! - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + User deleted. Användaren har raderats. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92 + User email set as verified E-postadressen som tillhör användaren har markerats som verifierad - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + Account muted. Kontot ignoreras. - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts115src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts115 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + Instance muted. Instansen @@ -9559,9 +9582,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account muted by the instance. Kontot ignoreras av instansen. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts444src/app/shared/shared-moderation/user-moderation-dropdown.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts444 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts171 + Mute server Ignorera server @@ -9585,158 +9608,158 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. Kontot ignoreras inte längre av instansen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts185 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts185 + Instance muted by the instance. Instansen ignoreras av instansen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts199 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts199 + Instance unmuted by the instance. Instansen ignoreras inte längre av instansen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts213 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts213 + Are you sure you want to remove all the comments of this account? Är du säker på att du vill ta bort alla kommentarer författade av det här kontot? - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts224 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts224 + Delete account comments Radera kommentarer från kontot - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts225 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts225 + Will remove comments of this account (may take several minutes). Ta bort alla kommentarer som författats av det här kontot (kan ta flera minuter). - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts231 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts231 + Edit user Redigera användare - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts259 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts259 + Change quota, role, and more. Ändra videokvot, behörigheter och mer. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts260 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts260 + Delete user Radera användare - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264 + Unban user Upphäv blockering av användare - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts275 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts275 + Allow the user to login and create videos/comments again Låt användaren logga in och skapa videor eller kommentarer igen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts276 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts276 + Mute this account Ignorera det här kontot - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts293 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts293 + Hide any content from that user from you. Göm allt innehåll från den användaren för dig. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts294 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts294 + Unmute this account Sluta ignorera det här kontot - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts299 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts299 + Show back content from that user for you. Visa innehåll från den användaren för dig igen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts300 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts300 + Mute the instance Ignorera instansen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts305 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts305 + Hide any content from that instance for you. Dölj allt innehåll från den instansen för dig. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts306 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts306 + Unmute the instance Sluta ignorera instansen - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts311 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts311 + Show back content from that instance for you. Visa innehåll från den instansen för dig igen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts312 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts312 + Remove comments from your videos Ta bort kommentarer från dina videor - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts317 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts317 + Remove comments made by this account on your videos. Ta bort kommentarer gjorda av detta kontot från dina videor. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts318 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts318 + Mute this account by your instance Ignorera det här kontot av din instans - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts329 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts329 + Hide any content from that user from you, your instance and its users. Dölj allt innehåll från den användaren för dig, din instans och dess användare. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts330 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts330 + Unmute this account by your instance Sluta ignorera det här kontot av din instans - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts335 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts335 + Show this user's content to the users of this instance again. Visa den här användarens innehåll för användarna på den här instansen igen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts336 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts336 + Mute the instance by your instance Ignorera instansen av din instans - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts347 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts347 + Hide any content from that instance from you, your instance and its users. Dölj allt innehåll från den instansen för dig, din instans och dess användare. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts348 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts348 + Unmute the instance by your instance Sluta ignorera instansen av din instans - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts353 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts353 + Show back content from that instance for you, your instance and its users. Visa allt innehåll från den användaren för dig, din instans och dess användare igen. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts354 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts354 + Remove comments from your instance Ta bort kommentarer från din instans - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts364 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts364 + Remove comments made by this account from your instance. Ta bort kommentarer gjorda av detta kontot från din instans. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts365 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts365 + Violent or repulsive Våldsamt eller motbjudande @@ -9877,8 +9900,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderator src/app/core/users/user.service.ts407 - - Search videos, playlists, channels…Search videos, playlists, channels… + + + Search videos, playlists, channels… + Sök efter videor, spellistor och kanaler … src/app/header/search-typeahead.component.html 3 @@ -9889,9 +9914,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular En video har tagits bort från - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + Video added in at timestamps En video lades till i vid tiderna @@ -9907,25 +9932,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Timestamps updated Tidsinställningarna har uppdaterats - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + Starts at Starta vid - - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Stops at Sluta vid - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + and stops at och sluta vid - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Delete video Radera video @@ -9944,9 +9969,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Do you really want to delete this comment? Vill du verkligen radera den här kommentaren? - - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172src/app/shared/shared-abuse-list/abuse-list-table.component.ts420 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts420 + Comment deleted. Kommentaren har raderats. @@ -9955,35 +9980,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Encoder Kodek - - src/app/shared/shared-video-miniature/video-download.component.ts212 + src/app/shared/shared-video-miniature/video-download.component.ts212 + Format name Formatnamn - - src/app/shared/shared-video-miniature/video-download.component.ts213 + src/app/shared/shared-video-miniature/video-download.component.ts213 + Size Storlek - - src/app/shared/shared-video-miniature/video-download.component.ts214 + src/app/shared/shared-video-miniature/video-download.component.ts214 + Bitrate Bithastighet - - - src/app/shared/shared-video-miniature/video-download.component.ts216src/app/shared/shared-video-miniature/video-download.component.ts239 + src/app/shared/shared-video-miniature/video-download.component.ts216 + src/app/shared/shared-video-miniature/video-download.component.ts239 + Codec Kodek - - src/app/shared/shared-video-miniature/video-download.component.ts236 + src/app/shared/shared-video-miniature/video-download.component.ts236 + Copied Kopierad - - - src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts196 + src/app/shared/shared-forms/input-toggle-hidden.component.ts47 + src/app/shared/shared-video-miniature/video-download.component.ts196 + Copy Kopiera @@ -10051,20 +10076,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Save to playlist Spara i spellista - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + You need to be <a href="/login">logged in</a> to rate this video. Du måste vara <a href="/login">inloggad</a> för att betygsätta den här videon. - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + Mirror Spegla src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302 - - SubtitlesSubtitles + + + Subtitles + Undertexter src/app/shared/shared-video-miniature/video-download.component.html 9 @@ -10079,18 +10106,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Remove Ta bort - - 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 Ta bort och skriv om - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} {VAR_PLURAL, plural, =0 {Inga kommentarer} =1 {1 kommentar} other { kommentarer}} - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + Mute account Ignorera konto @@ -10162,28 +10189,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Published Publicerad - - src/app/shared/shared-video-miniature/video-miniature.component.ts158 + src/app/shared/shared-video-miniature/video-miniature.component.ts158 + Publication scheduled on Publiceringen har schemalagts till - - src/app/shared/shared-video-miniature/video-miniature.component.ts163 + src/app/shared/shared-video-miniature/video-miniature.component.ts163 + Waiting transcoding Inväntar omkodning - - src/app/shared/shared-video-miniature/video-miniature.component.ts167 + src/app/shared/shared-video-miniature/video-miniature.component.ts167 + To transcode Att omkoda - - src/app/shared/shared-video-miniature/video-miniature.component.ts171 + src/app/shared/shared-video-miniature/video-miniature.component.ts171 + To import Att importera - - src/app/shared/shared-video-miniature/video-miniature.component.ts175 + src/app/shared/shared-video-miniature/video-miniature.component.ts175 + @@ -10230,13 +10257,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular viewers tittare - - src/app/shared/shared-main/video/video.model.ts215 + src/app/shared/shared-main/video/video.model.ts215 + views visningar - - src/app/shared/shared-main/video/video.model.ts218 + src/app/shared/shared-main/video/video.model.ts218 + Close Stäng @@ -10261,15 +10288,15 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Previous month Förra månaden - - - node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts24 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + Next month Nästa månad - - - node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts44node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts57 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts44 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts57 + Select month Välj månad @@ -10405,41 +10432,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video to import updated. Videon att importera har uppdaterats. - - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts141src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts141 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + Your video was uploaded to your account and is private. Din video har laddats upp till ditt konto och är privat. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts162 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts162 + But associated data (tags, description...) will be lost, are you sure you want to leave this page? Men associerad data (taggar, beskrivning …) kommer försvinna, är du säker på att du vill lämna sidan? - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts163 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts163 + Your video is not uploaded yet, are you sure you want to leave this page? Din video har inte laddats upp än, vill du lämna sidan? - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts165 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts165 + Upload Ladda upp - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts222 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts222 + Upload Ladda upp - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts224 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts224 + Video published. Videon har publicerats. - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts245 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts245 + You have unsaved changes! If you leave, your changes will be lost. Du har gjort ändringar som inte sparats! Om du lämnar nu kommer de förkastas. @@ -10458,23 +10485,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Stop autoplaying next video Spela inte nästa video automatiskt - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts220 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts220 + Autoplay next video Spela nästa video automatiskt - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + Stop looping playlist videos Sluta loopa videor i spellistor - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts226 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts226 + Loop playlist videos Loopa videor i spellistor - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + Placeholder image Platshållarbild @@ -10486,28 +10513,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>? Den här videon finns inte på din instans. Vill du bli hänvisad till ursprungsinstansen <a href=""></a>? - - src/app/+videos/+video-watch/video-watch.component.ts288 + src/app/+videos/+video-watch/video-watch.component.ts288 + Redirection Omdirigering - - src/app/+videos/+video-watch/video-watch.component.ts289 + src/app/+videos/+video-watch/video-watch.component.ts289 + This video contains mature or explicit content. Are you sure you want to watch it? Den här videon innehåller oförbehållsamt innehåll eller innehåll skapat för vuxna. Är du säker på att du vill se den? - - src/app/+videos/+video-watch/video-watch.component.ts335 + src/app/+videos/+video-watch/video-watch.component.ts335 + Mature or explicit content Oförbehållsamt innehåll eller innehåll skapat för vuxna - - src/app/+videos/+video-watch/video-watch.component.ts336 + src/app/+videos/+video-watch/video-watch.component.ts336 + Up Next Kommer härnäst - - src/app/+videos/+video-watch/video-watch.component.ts407 + src/app/+videos/+video-watch/video-watch.component.ts407 + Cancel Avbryt @@ -10516,84 +10543,84 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Autoplay is suspended Automatisk uppspelning är upphävd - - src/app/+videos/+video-watch/video-watch.component.ts409 + src/app/+videos/+video-watch/video-watch.component.ts409 + Enter/exit fullscreen (requires player focus) Slå av eller på helskärmsläget (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts678 + src/app/+videos/+video-watch/video-watch.component.ts678 + Play/Pause the video (requires player focus) Spela eller pausa videon (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts679 + src/app/+videos/+video-watch/video-watch.component.ts679 + Mute/unmute the video (requires player focus) Slå av eller på ljudet (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts680 + src/app/+videos/+video-watch/video-watch.component.ts680 + Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) Hoppa till en position i videon: 0 motsvarar 0 % av den totala speltiden och 9 motsvarar 90 % (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts682 + src/app/+videos/+video-watch/video-watch.component.ts682 + Increase the volume (requires player focus) Öka volymen (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts684 + src/app/+videos/+video-watch/video-watch.component.ts684 + Decrease the volume (requires player focus) Minska volymen (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts685 + src/app/+videos/+video-watch/video-watch.component.ts685 + Seek the video forward (requires player focus) Spola videon framåt (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts687 + src/app/+videos/+video-watch/video-watch.component.ts687 + Seek the video backward (requires player focus) Spola videon bakåt (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts688 + src/app/+videos/+video-watch/video-watch.component.ts688 + Increase playback rate (requires player focus) Öka uppspelningshastigheten (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts690 + src/app/+videos/+video-watch/video-watch.component.ts690 + Decrease playback rate (requires player focus) Minska uppspelningshastigheten (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts691 + src/app/+videos/+video-watch/video-watch.component.ts691 + Navigate in the video frame by frame (requires player focus) Föregående eller nästkommande bildruta (spelaren måste vara markerad) - - src/app/+videos/+video-watch/video-watch.component.ts693 + src/app/+videos/+video-watch/video-watch.component.ts693 + Like the video Gilla videon - - 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 Ogilla videon - - 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. Nästa video kommer börja automatiskt om den här funktionen är aktiverad. - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + Recently added Nyligen tillagt - - - src/app/+videos/video-list/video-recently-added.component.ts37src/app/core/menu/menu.service.ts137 + src/app/+videos/video-list/video-recently-added.component.ts37 + src/app/core/menu/menu.service.ts137 + Videos from your subscriptions Videor från dina prenumerationer @@ -10632,29 +10659,29 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos Lokala videor - - - - - src/app/+videos/video-list/video-local.component.ts37src/app/+videos/videos-routing.module.ts70src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 + src/app/+videos/video-list/video-local.component.ts37 + src/app/+videos/videos-routing.module.ts70 + src/app/core/menu/menu.service.ts142 + src/app/core/menu/menu.service.ts143 + Discover videos Upptäck videor - - - src/app/+videos/videos-routing.module.ts21src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts21 + src/app/core/menu/menu.service.ts124 + Trending videos Populära videor - - - src/app/+videos/videos-routing.module.ts30src/app/core/menu/menu.service.ts130 + src/app/+videos/videos-routing.module.ts30 + src/app/core/menu/menu.service.ts130 + Recently added videos Nyligen tillagda videor - - - src/app/+videos/videos-routing.module.ts43src/app/core/menu/menu.service.ts136 + src/app/+videos/videos-routing.module.ts43 + src/app/core/menu/menu.service.ts136 + Upload a video Ladda upp en video diff --git a/client/src/locale/angular.ta.xlf b/client/src/locale/angular.ta.xlf index 1fb1cb17f..4dd2b73cd 100644 --- a/client/src/locale/angular.ta.xlf +++ b/client/src/locale/angular.ta.xlf @@ -2363,12 +2363,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3260,7 +3260,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7253,7 +7253,7 @@ channel with the same name ()! created. - src/app/+admin/users/user-edit/user-create.component.ts77 + src/app/+admin/users/user-edit/user-create.component.ts76 Create userCreate user src/app/+admin/users/user-edit/user-create.component.ts95 @@ -7916,7 +7916,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.th-TH.xlf b/client/src/locale/angular.th-TH.xlf index 347299fe6..4cfdc4f61 100644 --- a/client/src/locale/angular.th-TH.xlf +++ b/client/src/locale/angular.th-TH.xlf @@ -5,13 +5,13 @@ Close the left menu ปิดเมนูด้านซ้าย - - src/app/app.component.ts118 + src/app/app.component.ts118 + Open the left menu เปิดเมนูด้านซ้าย - - src/app/app.component.ts120 + src/app/app.component.ts120 + You don't have notifications. คุณไม่มีการแจ้งเตือน @@ -166,11 +166,7 @@ User registered on your instance - ผู้ใช้ - - - ได้ลงทะเบียนบนเว็บไซต์ของคุณแล้ว - + ผู้ใช้ ได้ลงทะเบียนบนเซิร์ฟเวอร์ของคุณแล้ว src/app/shared/shared-main/users/user-notifications.component.html140 @@ -197,13 +193,7 @@ Your instance has a new follower () awaiting your approval - เว็บไซต์ของคุณมี - ผู้ติดตามใหม่ - ( - ) - ที่กำลังรอการอนุญาต - - + เซิร์ฟเวอร์ของคุณมี ผู้ติดตามใหม่ ( ) ที่กำลังรอการอนุญาต src/app/shared/shared-main/users/user-notifications.component.html181 @@ -252,17 +242,19 @@ - - - - - - - - - - - src/app/+videos/+video-watch/video-watch.component.html77src/app/menu/menu.component.html105src/app/shared/shared-main/buttons/action-dropdown.component.html22src/app/shared/shared-main/misc/top-menu-dropdown.component.html14src/app/shared/shared-main/misc/top-menu-dropdown.component.html24src/app/shared/shared-moderation/batch-domains-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/+videos/+video-watch/video-watch.component.html77 + src/app/menu/menu.component.html105 + src/app/shared/shared-main/buttons/action-dropdown.component.html22 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html14 + src/app/shared/shared-main/misc/top-menu-dropdown.component.html24 + src/app/shared/shared-moderation/batch-domains-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 + My watch history My watch history @@ -277,8 +269,8 @@ 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 เริ่มต้นที่ @@ -344,15 +336,14 @@ video วิดีโอ - - - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts288src/app/shared/shared-video-miniature/video-download.component.ts55 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts288 + src/app/shared/shared-video-miniature/video-download.component.ts55 + The following link contains a private token and should not be shared with anyone. The following link contains a private token and should not be shared with anyone. - - src/app/shared/shared-video-miniature/video-download.component.html19 + src/app/shared/shared-video-miniature/video-download.component.html19 + @@ -364,14 +355,13 @@ subtitles คำบรรยายใต้ภาพ - - - src/app/shared/shared-video-miniature/video-download.component.ts56 + src/app/shared/shared-video-miniature/video-download.component.ts56 + Format Format - - src/app/shared/shared-video-miniature/video-download.component.html74 + src/app/shared/shared-video-miniature/video-download.component.html74 + @@ -384,33 +374,33 @@ 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 (ไฟล์ .torrent) - - src/app/shared/shared-video-miniature/video-download.component.html121 + src/app/shared/shared-video-miniature/video-download.component.html121 + Advanced Advanced - - src/app/shared/shared-video-miniature/video-download.component.html135 + src/app/shared/shared-video-miniature/video-download.component.html135 + Simple Simple - - src/app/shared/shared-video-miniature/video-download.component.html143 + src/app/shared/shared-video-miniature/video-download.component.html143 + video วิดีโอ @@ -420,13 +410,13 @@ Your video quota is exceeded with this video (video size: , used: , quota: ) Your video quota is exceeded with this video (video size: , used: , quota: ) - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts323 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts323 + 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.ts341 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts341 + subtitles คำบรรยายใต้ภาพ @@ -437,16 +427,16 @@ ยกเลิก - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48src/app/shared/shared-video-miniature/videos-selection.component.html19 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html48 + src/app/shared/shared-video-miniature/videos-selection.component.html19 + Download ดาวน์โหลด - - - - src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272src/app/shared/shared-video-miniature/video-download.component.html4src/app/shared/shared-video-miniature/video-download.component.html156 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272 + src/app/shared/shared-video-miniature/video-download.component.html4 + src/app/shared/shared-video-miniature/video-download.component.html156 + Reason... เหตุผล... @@ -481,8 +471,10 @@ src/app/shared/shared-moderation/report-modals/report.component.html58 src/app/shared/shared-moderation/report-modals/video-report.component.html96 src/app/shared/shared-moderation/video-block.component.html42 - - The contact form is not enabled on this instance.The contact form is not enabled on this instance. + + + The contact form is not enabled on this instance. + The contact form is not enabled on this instance. src/app/+about/about-instance/contact-admin-modal.component.html 56 @@ -502,7 +494,7 @@ This will ask remote instances to delete it - การดำเนินการนี้จะขอให้เว็บไซต์อื่นลบเนื้อหานี้ + การดำเนินการนี้จะขอให้เซิร์ฟเวอร์อื่นลบเนื้อหานี้ src/app/shared/shared-moderation/video-block.component.html27 @@ -518,16 +510,16 @@ 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.html33 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html10 + src/app/shared/shared-video-miniature/video-miniature.component.html7 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33 + {VAR_PLURAL, plural, =1 {1 view} other { views}} {VAR_PLURAL, plural, =1 {การดู 1 ครั้ง} other {การดู @@ -538,12 +530,13 @@ - - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16src/app/shared/shared-video/video-views-counter.component.html3src/app/shared/shared-video/video-views-counter.component.html7 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/shared/shared-video/video-views-counter.component.html3 + src/app/shared/shared-video/video-views-counter.component.html7 + {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}} {VAR_PLURAL, plural, =1 {ผู้ชม 1 คน} other {ผู้ชม คน}} @@ -571,15 +564,15 @@ Blocked ถูกบล็อก - - src/app/shared/shared-video-miniature/video-miniature.component.html57 + src/app/shared/shared-video-miniature/video-miniature.component.html57 + Sensitive มีเนื้อหาไม่เหมาะสม - - src/app/shared/shared-video-miniature/video-miniature.component.html62 + src/app/shared/shared-video-miniature/video-miniature.component.html62 + {VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}} {VAR_PLURAL, plural, =0 {ไม่มีวิดีโอ} =1 {1 วิดีโอ} other { @@ -593,15 +586,13 @@ - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html25 + Updated - อัปเดตเมื่อ - - - - src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + อัปเดตเมื่อ + src/app/shared/shared-video-playlist/video-playlist-miniature.component.html32 + Unavailable ไม่พร้อมใช้งาน @@ -610,10 +601,10 @@ Deleted ถูกลบ - - - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html47src/app/shared/shared-abuse-list/abuse-list-table.component.html91src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html47 + src/app/shared/shared-abuse-list/abuse-list-table.component.html91 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34 + Edit starts/stops at แก้ไขช่วงเวลาเริ่ม/จบ @@ -656,40 +647,40 @@ 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/trending/video-trending-header.component.ts44 Delete ลบ - - - - - - - - - - - - - - - - - - - - - - - - - src/app/+admin/follows/followers-list/followers-list.component.ts74src/app/+admin/moderation/video-block-list/video-block-list.component.ts87src/app/+admin/moderation/video-block-list/video-block-list.component.ts91src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163src/app/+admin/users/user-list/user-list.component.ts81src/app/+admin/users/user-list/user-list.component.ts195src/app/+my-library/+my-video-channels/my-video-channels.component.ts52src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35src/app/+my-library/my-videos/my-videos.component.html50src/app/+my-library/my-videos/my-videos.component.ts115src/app/+my-library/my-videos/my-videos.component.ts142src/app/+my-library/my-videos/my-videos.component.ts183src/app/+videos/+video-edit/shared/video-edit.component.html178src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171src/app/shared/shared-abuse-list/abuse-list-table.component.ts144src/app/shared/shared-abuse-list/abuse-list-table.component.ts386src/app/shared/shared-abuse-list/abuse-list-table.component.ts421src/app/shared/shared-main/buttons/delete-button.component.ts17src/app/shared/shared-main/buttons/delete-button.component.ts22src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + src/app/+admin/follows/followers-list/followers-list.component.ts74 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts87 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts91 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts95 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts163 + src/app/+admin/users/user-list/user-list.component.ts81 + src/app/+admin/users/user-list/user-list.component.ts195 + src/app/+my-library/+my-video-channels/my-video-channels.component.ts52 + src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127 + src/app/+my-library/my-video-playlists/my-video-playlists.component.ts35 + src/app/+my-library/my-videos/my-videos.component.html50 + src/app/+my-library/my-videos/my-videos.component.ts115 + src/app/+my-library/my-videos/my-videos.component.ts142 + src/app/+my-library/my-videos/my-videos.component.ts183 + src/app/+videos/+video-edit/shared/video-edit.component.html178 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts144 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts386 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts421 + src/app/shared/shared-main/buttons/delete-button.component.ts17 + src/app/shared/shared-main/buttons/delete-button.component.ts22 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts87 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308 + Only live videos - Only live videos + เฉพาะวิดีโอสด src/app/+my-library/my-videos/my-videos.component.ts 53 @@ -717,11 +708,11 @@ Hide ซ่อน - - - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119src/app/+admin/users/user-edit/user-password.component.html11src/app/shared/shared-forms/input-toggle-hidden.component.ts38src/app/shared/shared-user-settings/user-video-settings.component.html16 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html119 + src/app/+admin/users/user-edit/user-password.component.html11 + src/app/shared/shared-forms/input-toggle-hidden.component.ts38 + src/app/shared/shared-user-settings/user-video-settings.component.html16 + Show แสดง @@ -758,12 +749,12 @@ Subscribe with an account on this instance - ติดตามด้วยบัญชีบนเว็บไซต์นี้ + ติดตามด้วยบัญชีบนเซิร์ฟเวอร์นี้ src/app/shared/shared-user-subscription/subscribe-button.component.html57 Subscribe with your local account - ติดตามด้วยบัญชีของเว็บไซต์นี้ + ติดตามด้วยบัญชีของเซิร์ฟเวอร์นี้ src/app/shared/shared-user-subscription/subscribe-button.component.html58 @@ -865,7 +856,7 @@ per user / per instance - ต่อผู้ใช้ / ต่อเว็บไซต์ + ต่อผู้ใช้ / ต่อเซิร์ฟเวอร์ src/app/shared/shared-instance/instance-features-table.component.html86 @@ -929,12 +920,12 @@ Loading instance statistics... - กำลังโหลดสถิติเว็บไซต์... + กำลังโหลดสถิติเซิร์ฟเวอร์... src/app/shared/shared-instance/instance-statistics.component.html1 Local - เว็บไซต์นี้ + เซิร์ฟเวอร์นี้ src/app/shared/shared-instance/instance-statistics.component.html4 @@ -1011,17 +1002,17 @@ User ผู้ใช้ - - - - src/app/+login/login.component.html21src/app/+signup/+register/register.component.html27src/app/core/users/user.service.ts405 + src/app/+login/login.component.html21 + src/app/+signup/+register/register.component.html27 + src/app/core/users/user.service.ts405 + Ban แบน - - - - src/app/+admin/users/user-list/user-list.component.ts87src/app/shared/shared-moderation/user-ban-modal.component.html3src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269 + src/app/+admin/users/user-list/user-list.component.ts87 + src/app/shared/shared-moderation/user-ban-modal.component.html3 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269 + A banned user will no longer be able to login. @@ -1032,25 +1023,25 @@ Cancel ยกเลิก - - - - - - - - - - - - - - - - - - - src/app/+about/about-instance/contact-admin-modal.component.html48src/app/+login/login.component.html117src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/video-add-components/video-upload.component.html81src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73src/app/+videos/+video-watch/video-watch.component.ts408src/app/modal/confirm.component.html20src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-video-miniature/video-download.component.html152 + src/app/+about/about-instance/contact-admin-modal.component.html48 + src/app/+login/login.component.html117 + src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html20 + src/app/+my-library/my-videos/modals/video-change-ownership.component.html22 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html69 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html73 + src/app/+videos/+video-watch/video-watch.component.ts408 + src/app/modal/confirm.component.html20 + src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26 + src/app/shared/shared-moderation/batch-domains-modal.component.html31 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/report.component.html54 + src/app/shared/shared-moderation/report-modals/video-report.component.html92 + src/app/shared/shared-moderation/user-ban-modal.component.html26 + src/app/shared/shared-moderation/video-block.component.html38 + src/app/shared/shared-video-miniature/video-download.component.html152 + Ban this user แบนผู้ใช้นี้ @@ -1058,14 +1049,12 @@ Block video "" - Block video " - " - + บล็อกวิดีโอ "" src/app/shared/shared-moderation/video-block.component.html3 Block live "" - Block live "" + บล็อกวิดีโอสด "" src/app/shared/shared-moderation/video-block.component.html4 @@ -1117,7 +1106,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. - เว็บไซต์นี้เปิดให้ลงทะเบียนผู้ใช้ใหม่ อย่างไรก็ตาม โปรดตรวจสอบเงื่อนไขเงื่อนไขอย่างระมัดระวังก่อนการสร้างบัญชี คุณสามารถหาเว็บไซต์อื่นที่ตรงกับความต้องการของคุณโดยเฉพาะได้ที่: https://joinpeertube.org/instances + เซิร์ฟเวอร์นี้เปิดให้ลงทะเบียนผู้ใช้ใหม่ อย่างไรก็ตาม โปรดตรวจสอบเงื่อนไขเงื่อนไขอย่างระมัดระวังก่อนการสร้างบัญชี คุณสามารถหาเซิร์ฟเวอร์อื่นที่ตรงกับความต้องการของคุณโดยเฉพาะได้ที่: https://joinpeertube.org/instances src/app/+login/login.component.html 60,62 @@ -1125,7 +1114,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. - ณ ตอนนี้ เว็บไซต์นี้ไม่เปิดให้ลงทะเบียนผู้ใช้ใหม่ คุณสามารถตรวจสอบเงื่อนไขเพื่อดูข้อมูลเพิ่มเติมหรือหาเว็บไซต์อื่นที่ให้คุณสร้างบัญชีและอัปโหลดวิดีโอได้ หาเว็บไซต์ที่เหมาะกับคุณได้ที่: https://joinpeertube.org/instances + ณ ตอนนี้ เซิร์ฟเวอร์นี้ไม่เปิดให้ลงทะเบียนผู้ใช้ใหม่ คุณสามารถตรวจสอบเงื่อนไขเพื่อดูข้อมูลเพิ่มเติมหรือหาเซิร์ฟเวอร์อื่นที่ให้คุณสร้างบัญชีและอัปโหลดวิดีโอได้ หาเว็บไซต์ที่เหมาะกับคุณได้ที่: https://joinpeertube.org/instances src/app/+login/login.component.html 65,67 @@ -1178,10 +1167,10 @@ Login เข้าสู่ระบบ - - - - src/app/+login/login-routing.module.ts12src/app/+login/login.component.html44src/app/menu/menu.component.html99 + src/app/+login/login-routing.module.ts12 + src/app/+login/login.component.html44 + src/app/menu/menu.component.html99 + Or sign in with หรือเข้าสู่ระบบด้วย @@ -1233,7 +1222,7 @@ The link will expire within 1 hour. on this instance - บนเว็บไซต์นี้ + บนเซิร์ฟเวอร์นี้ src/app/+search/search.component.html7 @@ -1243,7 +1232,7 @@ The link will expire within 1 hour. for - for + สำหรับ src/app/+search/search.component.html 10 @@ -1290,9 +1279,9 @@ The link will expire within 1 hour. Signup ลงทะเบียน - Button on the registration form to finalize the account and channel creation - src/app/+signup/+register/register.component.ts68 + src/app/+signup/+register/register.component.ts68 + Filters @@ -1473,9 +1462,9 @@ The link will expire within 1 hour. My settings การตั้งค่าของฉัน - - - src/app/menu/menu.component.html119src/app/modal/quick-settings-modal.component.html3 + src/app/menu/menu.component.html119 + src/app/modal/quick-settings-modal.component.html3 + These settings apply only to your session on this instance. These settings apply only to your session on this instance. @@ -1531,83 +1520,83 @@ The link will expire within 1 hour. Public profile โปรไฟล์สาธารณะ - - src/app/menu/menu.component.html28 + src/app/menu/menu.component.html28 + Interface: อินเตอร์เฟซ: - - src/app/menu/menu.component.html35 + src/app/menu/menu.component.html35 + Videos: วิดีโอ: - - src/app/menu/menu.component.html42 + src/app/menu/menu.component.html42 + Sensitive: เนื้อหาที่ไม่เหมาะสม: - - src/app/menu/menu.component.html52 + src/app/menu/menu.component.html52 + Help share videos ช่วยแบ่งปันข้อมูลวิดีโอ - - src/app/menu/menu.component.html58 + src/app/menu/menu.component.html58 + Keyboard shortcuts ปุ่มลัดคีย์บอร์ด - - - src/app/menu/menu.component.html67src/app/menu/menu.component.html141 + src/app/menu/menu.component.html67 + src/app/menu/menu.component.html141 + powered by PeerTube - CopyLeft 2015-2021 ขับเคลื่อนโดย PeerTube - กอปปีเลฟต์ 2015-2021 - - src/app/menu/menu.component.html146 + src/app/menu/menu.component.html146 + Help ช่วยเหลือ - - src/app/menu/menu.component.html137 + src/app/menu/menu.component.html137 + Get help using PeerTube ขอความช่วยเหลือในการใช้งาน PeerTube - - src/app/menu/menu.component.html137 + src/app/menu/menu.component.html137 + powered by PeerTube ขับเคลื่อนโดย PeerTube - - src/app/menu/menu.component.html147 + src/app/menu/menu.component.html147 + Log out ออกจากระบบ - - src/app/menu/menu.component.html72 + src/app/menu/menu.component.html72 + My account บัญชีของฉัน - - src/app/menu/menu.component.html83 + src/app/menu/menu.component.html83 + My library คลังของฉัน - - src/app/menu/menu.component.html88 + src/app/menu/menu.component.html88 + Create an account สร้างบัญชีผู้ใช้ - - - src/app/+login/login.component.html50src/app/menu/menu.component.html100 - + src/app/+login/login.component.html50 + src/app/menu/menu.component.html100 + My videos วิดีโอของฉัน - - - - src/app/+my-library/my-library-routing.module.ts76src/app/+my-library/my-videos/my-videos.component.html4src/app/+my-library/my-videos/my-videos.component.ts69src/app/core/menu/menu.service.ts77 + src/app/+my-library/my-library-routing.module.ts76 + src/app/+my-library/my-videos/my-videos.component.html4 + src/app/+my-library/my-videos/my-videos.component.ts69 + src/app/core/menu/menu.service.ts77 + My video imports My video imports @@ -1616,9 +1605,10 @@ The link will expire within 1 hour. My playlists เพลย์ลิสต์ของฉัน - - - src/app/+my-library/my-library-routing.module.ts39src/app/+my-library/my-video-playlists/my-video-playlists.component.html3src/app/core/menu/menu.service.ts86 + src/app/+my-library/my-library-routing.module.ts39 + src/app/+my-library/my-video-playlists/my-video-playlists.component.html3 + src/app/core/menu/menu.service.ts86 + Create a new playlist สร้างเพลย์ลิสต์ใหม่ @@ -1627,89 +1617,91 @@ The link will expire within 1 hour. My subscriptions การติดตามของฉัน - - - src/app/+my-library/my-library-routing.module.ts98src/app/+my-library/my-subscriptions/my-subscriptions.component.html4src/app/core/menu/menu.service.ts92 + src/app/+my-library/my-library-routing.module.ts98 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html4 + src/app/core/menu/menu.service.ts92 + Videos วิดีโอ - - - src/app/+my-library/my-library.component.ts52src/app/core/menu/menu.service.ts76 + src/app/+my-library/my-library.component.ts52 + src/app/core/menu/menu.service.ts76 + Interface: อินเตอร์เฟซ: - - src/app/menu/menu.component.html132 + src/app/menu/menu.component.html132 + Playlists เพลย์ลิสต์ - - - src/app/+my-library/my-library.component.ts59src/app/core/menu/menu.service.ts85 + src/app/+my-library/my-library.component.ts59 + src/app/core/menu/menu.service.ts85 + Subscriptions การติดตาม - - - - - src/app/+my-library/my-library.component.ts64src/app/+videos/video-list/video-user-subscriptions.component.ts46src/app/+videos/videos-routing.module.ts57src/app/core/menu/menu.service.ts91 + src/app/+my-library/my-library.component.ts64 + src/app/+videos/video-list/video-user-subscriptions.component.ts46 + src/app/+videos/videos-routing.module.ts57 + src/app/core/menu/menu.service.ts91 + History ประวัติ - - - src/app/+my-library/my-library.component.ts69src/app/core/menu/menu.service.ts97 + src/app/+my-library/my-library.component.ts69 + src/app/core/menu/menu.service.ts97 + VIDEOS วิดีโอ - - - - src/app/+accounts/accounts.component.ts83src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215src/app/+video-channels/video-channels.component.ts76 + src/app/+accounts/accounts.component.ts83 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html215 + src/app/+video-channels/video-channels.component.ts76 + Import jobs concurrency Import jobs concurrency - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html225 + allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html226 + jobs in parallel jobs in parallel - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html230 + src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html171 + Allow import with HTTP URL (e.g. YouTube) Allow import with HTTP URL (e.g. YouTube) - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html239 + 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/menu/menu.component.html93 + src/app/menu/menu.component.html93 + About เกี่ยวกับ - - src/app/menu/menu.component.html124 + src/app/menu/menu.component.html124 + Contact ติดต่อ - - src/app/+about/about-routing.module.ts37src/app/menu/menu.component.html136 + src/app/+about/about-routing.module.ts37 + src/app/menu/menu.component.html136 + View your notifications ดูการแจ้งเตือนของคุณ @@ -1765,7 +1757,7 @@ The link will expire within 1 hour. We couldn't find any resource tied to the URL you were looking for. - We couldn't find any resource tied to the URL you were looking for. + เราไม่พบเนื้อหาใด ๆ ที่ผูกกับ URL ที่คุณกำลังมองหาอยู่ src/app/+page-not-found/page-not-found.component.html 8 @@ -1792,7 +1784,7 @@ The link will expire within 1 hour. 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 @@ -1805,12 +1797,12 @@ The link will expire within 1 hour. You are not authorized here. - You are not authorized here. + คุณไม่ได้รับอนุญาตในหน้านี้ src/app/+page-not-found/page-not-found.component.html27 You might need to check your account is allowed by the video or instance owner. - You might need to check your account is allowed by the video or instance owner. + คุณอาจต้องตรวจสอบว่าบัญชีของคุณได้รับอนุญาตโดยเจ้าของวิดีโอหรือเซิร์ฟเวอร์หรือไม่ src/app/+page-not-found/page-not-found.component.html 30 @@ -1818,7 +1810,7 @@ The link will expire within 1 hour. You might need to check your account is allowed by the resource or instance owner. - You might need to check your account is allowed by the resource or instance owner. + คุณอาจต้องตรวจสอบว่าบัญชีของคุณได้รับอนุญาตโดยเจ้าของเนื้อหาหรือเซิร์ฟเวอร์หรือไม่ src/app/+page-not-found/page-not-found.component.html 31 @@ -1841,7 +1833,6 @@ The link will expire within 1 hour. สื่อมีขนาดใหญ่เกินที่จะอยู่บนเซิร์ฟเวอร์ โปรดติดต่อผู้ดูแลระบบหากคุณต้องการเพิ่มขีดจำกัดขนาด src/app/core/rest/rest-extractor.service.ts62 - GLOBAL SEARCH ค้นหาทุกเซิร์ฟเวอร์ @@ -1872,12 +1863,12 @@ The link will expire within 1 hour. any instance - ทุกเว็บไซต์ + ทุกเซิร์ฟเวอร์ src/app/header/search-typeahead.component.html42 only followed instances - เฉพาะเว็บไซต์ที่ติดตาม + เฉพาะเซิร์ฟเวอร์ที่ติดตาม src/app/header/search-typeahead.component.html43 @@ -1903,7 +1894,7 @@ The link will expire within 1 hour. In this instance's network - ในเครือข่ายของเว็บไซต์นี้ + ในเครือข่ายของเซิร์ฟเวอร์นี้ src/app/header/suggestion.component.html14 @@ -1975,9 +1966,9 @@ The link will expire within 1 hour. Duration ความยาว - - - src/app/+search/search-filters.component.html108src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + src/app/+search/search-filters.component.html108 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html52 + Display sensitive content แสดงเนื้อหาที่ไม่เหมาะสม @@ -1996,10 +1987,10 @@ The link will expire within 1 hour. Category หมวดหมู่ - - - - src/app/+search/search-filters.component.html121src/app/+videos/+video-edit/shared/video-edit.component.html63src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html17 + src/app/+search/search-filters.component.html121 + src/app/+videos/+video-edit/shared/video-edit.component.html63 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html17 + Reset รีเซ็ต @@ -2017,10 +2008,10 @@ The link will expire within 1 hour. Licence ลิขสิทธิ์ - - - - src/app/+search/search-filters.component.html134src/app/+videos/+video-edit/shared/video-edit.component.html74src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html26 + src/app/+search/search-filters.component.html134 + src/app/+videos/+video-edit/shared/video-edit.component.html74 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html26 + Display all licenses แสดงทุกสัญญาอนุญาต @@ -2029,11 +2020,11 @@ The link will expire within 1 hour. Language ภาษา - - - - - src/app/+search/search-filters.component.html147src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10src/app/+videos/+video-edit/shared/video-edit.component.html94src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html35 + src/app/+search/search-filters.component.html147 + src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10 + src/app/+videos/+video-edit/shared/video-edit.component.html94 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html35 + Display all languages แสดงทุกภาษา @@ -2104,9 +2095,9 @@ The link will expire within 1 hour. Tags แท็ก - - - src/app/+videos/+video-edit/shared/video-edit.component.html19src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html44 + src/app/+videos/+video-edit/shared/video-edit.component.html19 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html44 + Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag. แท็กสามารถใช้เพื่อแนะนำเนื้อหาที่มีความเกี่ยวข้องกัน สามารถใส่ได้สูงสุด 5 แท็ก กดปุ่ม Enter เพื่อเพิ่มแท็กใหม่ @@ -2125,9 +2116,9 @@ The link will expire within 1 hour. This image is too large. This image is too large. - - - src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts56src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts56 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts52 + Upload a new banner Upload a new banner @@ -2147,8 +2138,8 @@ The link will expire within 1 hour. 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 + src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts44 + Account avatar Account avatar @@ -2164,14 +2155,18 @@ The link will expire within 1 hour. src/app/shared/shared-actor-image/actor-avatar.component.ts 48 - - Markdown compatible that also supports custom PeerTube HTML tagsMarkdown 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 - - Latest published videoLatest published video + + + Latest published video + วิดีโอที่เผยแพร่ล่าสุด src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html 24 @@ -2218,48 +2213,48 @@ The link will expire within 1 hour. 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.html34src/app/+videos/+video-edit/shared/video-edit.component.html58src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html70 + src/app/+signup/+register/register.component.html34 + src/app/+videos/+video-edit/shared/video-edit.component.html58 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html6 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html30 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html22 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html19 + Privacy ความเป็นส่วนตัว - - - - - - - - - - src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57src/app/+videos/+video-edit/shared/video-edit.component.html106src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29src/app/+videos/+video-edit/video-add-components/video-upload.component.html26src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2src/app/shared/shared-abuse-list/abuse-details.component.ts22 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html57 + src/app/+videos/+video-edit/shared/video-edit.component.html106 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html13 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html37 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html29 + src/app/+videos/+video-edit/video-add-components/video-upload.component.html26 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html2 + src/app/shared/shared-abuse-list/abuse-details.component.ts22 + FAQ คำถามที่พบบ่อย - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + Frequently asked questions about PeerTube คำถามที่พบบ่อยเกี่ยวกับ PeerTube - - src/app/menu/menu.component.html138 + src/app/menu/menu.component.html138 + API API - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + API documentation API documentation - - src/app/menu/menu.component.html140 + src/app/menu/menu.component.html140 + Schedule publication () ตั้งเวลาเผยแพร่ ( @@ -2420,10 +2415,11 @@ The link will expire within 1 hour. {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 videos} other { videos}} - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html26src/app/+accounts/accounts.component.html41src/app/+video-channels/video-channels.component.html76src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + src/app/+accounts/account-video-channels/account-video-channels.component.html26 + src/app/+accounts/accounts.component.html41 + src/app/+video-channels/video-channels.component.html76 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html16 + @@ -2504,17 +2500,17 @@ The link will expire within 1 hour. Update อัปเดต - - - - - - - - - - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts174src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/app/shared/shared-main/buttons/edit-button.component.ts17src/app/shared/shared-main/buttons/edit-button.component.ts22src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts174 + src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts110 + src/app/+videos/+video-edit/video-add-components/video-go-live.component.html45 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html68 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.html61 + src/app/+videos/+video-edit/video-update.component.html3 + src/app/+videos/+video-edit/video-update.component.html18 + src/app/shared/shared-main/buttons/edit-button.component.ts17 + src/app/shared/shared-main/buttons/edit-button.component.ts22 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts284 + Select the file to upload เลือกไฟล์ที่ต้องการอัปโหลด @@ -2524,13 +2520,13 @@ The link will expire within 1 hour. Scheduled กำหนดเวลาเผยแพร่ - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date ซ่อนวิดีโอจนถึงวันที่กำหนด - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image ภาพพื้นหลังวิดีโอ @@ -2584,8 +2580,8 @@ The link will expire within 1 hour. Upload on hold Upload on hold - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts124 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts124 + Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota. ขออภัย คุณสมบัติการอัปโหลดถูกปิดใช้งานสำหรับบัญชีของคุณ หากคุณต้องการเพิ่มวิดีโอ ผู้ดูแลระบบต้องปลดล็อกโควต้าของคุณก่อน @@ -2593,7 +2589,7 @@ The link will expire within 1 hour. Read instance rules for help - อ่านกฎของเว็บไซต์สำหรับความช่วยเหลือ + อ่านกฎของเซิร์ฟเวอร์สำหรับความช่วยเหลือ src/app/+videos/+video-edit/video-add.component.html4 @@ -2627,7 +2623,7 @@ The link will expire within 1 hour. Cannot create live because this instance have too many created lives - ไม่สามารถสร้างวิดีโอสด เนื่องจากเว็บไซต์นี้ได้สร้างวิดีโอสดมากเกินไป + ไม่สามารถสร้างวิดีโอสด เนื่องจากเซิร์ฟเวอร์นี้ได้สร้างวิดีโอสดมากเกินไป src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts96 @@ -2652,13 +2648,7 @@ 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. - เราไม่แนะนำให้คุณใช้ผู้ใช้ - root - เพื่อเผยแพร่วิดีโอ เนื่องจากเป็นบัญชีผู้ดูแลระบบสูงสุดของระบบของคุณ - คุณควร - สร้างบัญชีแยก - เพื่ออัปโหลดวิดีโอ - + เราไม่แนะนำให้คุณใช้ผู้ใช้ root เพื่อเผยแพร่วิดีโอ เนื่องจากเป็นบัญชีผู้ดูแลระบบสูงสุดของเซิร์ฟเวอร์ของคุณ คุณควร สร้างบัญชีแยก เพื่ออัปโหลดวิดีโอ src/app/+videos/+video-edit/video-add.component.html11 @@ -2696,18 +2686,18 @@ The link will expire within 1 hour. Other videos วิดีโออื่น ๆ - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html5 + AUTOPLAY เล่นอัตโนมัติ - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html10 + Report this comment รายงานความคิดเห็นนี้ - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts178 + Share แชร์ @@ -2824,66 +2814,60 @@ The link will expire within 1 hour. Public สาธารณะ - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 - - - - - + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html11 + This video is blocked. วิดีโอนี้ถูกบล็อก - - src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + src/app/+videos/+video-watch/shared/information/video-alert.component.html22 + Published - เผยแพร่เมื่อ - - - src/app/+videos/+video-watch/video-watch.component.html31 + เผยแพร่เมื่อ + src/app/+videos/+video-watch/video-watch.component.html31 + SUPPORT สนับสนุน - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html13 + SHARE แชร์ - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html18 + SAVE บันทึก - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html29 + DOWNLOAD ดาวน์โหลด - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html43 + Like this video ชอบวิดีโอนี้ - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts37 + Dislike this video ไม่ชอบวิดีโอนี้ - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts38 + Support options for this video วิธีการสนับสนุนสำหรับวิดีโอนี้ - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts56 + By โดย - - src/app/+videos/+video-watch/video-watch.component.html71 + src/app/+videos/+video-watch/video-watch.component.html71 + Subscribe ติดตาม @@ -2907,42 +2891,42 @@ The link will expire within 1 hour. Show more แสดงเพิ่มเติม - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html10 + Show less แสดงน้อยลง - - src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + src/app/+videos/+video-watch/shared/metadata/video-description.component.html16 + Origin - Origin - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 + ต้นทาง + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html7 + Originally published เผยแพร่ครั้งแรกเมื่อ - - src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html12 + src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html12 + 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. ระบบแบ่งปันข้อมูลที่ใช้ในวิดีโอนี้ได้ระบุว่าข้อมูลทางเทคนิคบางส่วนเกี่ยวกับระบบของคุณ (เช่น ที่อยู่ไอพีสาธารณะ) อาจถูกส่งไปยังเพียร์อื่นได้ - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html6 + More information ข้อมูลเพิ่มเติม - - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.html36src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56src/app/+admin/system/jobs/jobs.component.html56src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + src/app/+admin/moderation/video-block-list/video-block-list.component.html36 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html56 + src/app/+admin/system/jobs/jobs.component.html56 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/shared/shared-abuse-list/abuse-list-table.component.html32 + The video was blocked due to automatic blocking of new videos วิดีโอถูกบล็อกเนื่องจากการบล็อกวิดีโอใหม่โดยอัตโนมัติ @@ -2956,47 +2940,52 @@ The link will expire within 1 hour. Get more information อ่านรายละเอียดเพิ่มเติม - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html9 + OK ตกลง - - src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 - The video is being imported, it will be available when the import is finished. - The video is being imported, it will be available when the import is finished. + src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html13 + + + The video is being imported, it will be available when the import is finished. + The video is being imported, it will be available when the import is finished. src/app/+videos/+video-watch/shared/information/video-alert.component.html 2,3 - - The video is being transcoded, it may not work properly. - The video is being transcoded, it may not work properly. + + + The video is being transcoded, it may not work properly. + The video is being transcoded, it may not work properly. src/app/+videos/+video-watch/shared/information/video-alert.component.html 6,7 - - This video will be published on . - This video will be published on . + + + This video will be published on . + This video will be published on . src/app/+videos/+video-watch/shared/information/video-alert.component.html 9,11 - - This live has not started yet. - This live has not started yet. + + + This live has not started yet. + This live has not started yet. src/app/+videos/+video-watch/shared/information/video-alert.component.html 14,15 - - This live has ended. - This live has ended. + + + This live has ended. + This live has ended. src/app/+videos/+video-watch/shared/information/video-alert.component.html @@ -3006,169 +2995,169 @@ The link will expire within 1 hour. SORT BY จัดเรียงตาม - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html11 + Most recent first (default) ความคิดเห็นล่าสุด (ค่าเริ่มต้น) - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html14 + Most replies first การตอบกลับมากที่สุด - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html15 + No comments. ไม่มีความคิดเห็น - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html28 + View from and others View from and others - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html80 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html80 + {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.html80src/app/+videos/+video-watch/shared/comment/video-comments.component.html83src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html80 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html83 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + View from View from - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html83 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html83 + View View - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html87 + Comments are disabled. การแสดงความคิดเห็นถูกปิด - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html98 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html98 + 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 ลบและร่างใหม่ - - src/app/+videos/+video-watch/shared/comment/video-comments.component.ts203 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts203 + 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.ts203 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts203 + 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 + Lists Lists - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23src/app/shared/shared-main/misc/help.component.ts84 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html23 + src/app/shared/shared-main/misc/help.component.ts84 + Emphasis Emphasis - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25src/app/shared/shared-main/misc/help.component.ts81 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html25 + src/app/shared/shared-main/misc/help.component.ts81 + bold bold - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + italic italic - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html26 + Emoji shortcuts Emoji shortcuts - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html29 + Emoji markup Emoji markup - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html33 + See complete list See complete list - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html35 + You are one step away from commenting ใกล้จะแสดงความคิดเห็นได้แล้ว - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html59 + You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html65 + Login to comment เข้าสู่ระบบเพื่อแสดงความคิดเห็น - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html78 + Markdown Emoji List Markdown Emoji List - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html86 + Comment แสดงความคิดเห็น - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html44 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts81 + Reply ตอบกลับ - - - src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts83 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html36 + Highlighted comment ความคิดเห็นที่ถูกเน้น - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html10 + Reply ตอบกลับ @@ -3177,8 +3166,8 @@ The link will expire within 1 hour. This comment has been deleted ความคิดเห็นนี้ถูกลบ - - src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + src/app/+videos/+video-watch/shared/comment/video-comment.component.html53 + Video redundancies Video redundancies @@ -3458,9 +3447,9 @@ The link will expire within 1 hour. Create user สร้างผู้ใช้ - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -3848,13 +3837,13 @@ The link will expire within 1 hour. No abuses found matching current filters. No abuses found matching current filters. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + src/app/shared/shared-abuse-list/abuse-list-table.component.html166 + No abuses found. No abuses found. - - src/app/shared/shared-abuse-list/abuse-list-table.component.html167 + src/app/shared/shared-abuse-list/abuse-list-table.component.html167 + Unsolved reports Unsolved reports @@ -3985,10 +3974,11 @@ The link will expire within 1 hour. Video Video - - - - src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43src/app/+my-library/my-ownership/my-ownership.component.html20src/app/+my-library/my-video-imports/my-video-imports.component.html18src/app/shared/shared-video-miniature/video-download.component.html8 + src/app/+admin/moderation/video-comment-list/video-comment-list.component.html43 + src/app/+my-library/my-ownership/my-ownership.component.html20 + src/app/+my-library/my-video-imports/my-video-imports.component.html18 + src/app/shared/shared-video-miniature/video-download.component.html8 + Comment Comment @@ -4096,7 +4086,7 @@ The link will expire within 1 hour. Instance - เว็บไซต์ + เซิร์ฟเวอร์ src/app/+about/about.component.html5 src/app/+search/search-filters.component.html184 src/app/shared/shared-moderation/server-blocklist.component.html31 @@ -4220,14 +4210,14 @@ The link will expire within 1 hour. Search ค้นหา - - - - - - - - src/app/+admin/plugins/plugins.component.html5src/app/+search/search-routing.module.ts12src/app/+search/search.component.ts249src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/shared/shared-main/misc/simple-search-input.component.ts15src/app/shared/shared-main/misc/simple-search-input.component.ts16 + src/app/+admin/plugins/plugins.component.html5 + src/app/+search/search-routing.module.ts12 + src/app/+search/search.component.ts249 + 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.ts15 + src/app/shared/shared-main/misc/simple-search-input.component.ts16 + Users can resolve distant content ผู้ใช้สามารถค้นหาเนื้อหาที่อยู่บนเว็บไซต์อื่นได้ @@ -4266,7 +4256,7 @@ The link will expire within 1 hour. Videos with the most interactions for recent videos - Videos with the most interactions for recent videos + วิดีโอล่าสุดที่มีการโต้ตอบมากที่สุด src/app/+videos/video-list/trending/video-trending-header.component.ts51 @@ -4497,7 +4487,7 @@ The link will expire within 1 hour. INSTANCE - INSTANCE + เซิร์ฟเวอร์ src/app/+admin/config/edit-custom-config/edit-instance-information.component.html7 @@ -4515,13 +4505,13 @@ 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.html57 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html57 + 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. ระบบแบ่งปันข้อมูลได้ระบุว่าข้อมูลทางเทคนิคเกี่ยวกับระบบของคุณ (เช่น ที่อยู่ไอพีสาธารณะ) อาจถูกส่งไปยังเพียร์อื่น ๆ แต่ช่วยลดการทำงานของเซิร์ฟเวอร์ได้เป็นอย่างดี @@ -4555,52 +4545,52 @@ The link will expire within 1 hour. 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.html84 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html84 + 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.html98 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html98 + 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 + With Hide or Blur thumbnails, a confirmation will be requested to watch the video. With Hide or Blur thumbnails, a confirmation will be requested to watch the video. - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111src/app/shared/shared-user-settings/user-video-settings.component.html8 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html111 + src/app/shared/shared-user-settings/user-video-settings.component.html8 + Blur thumbnails เบลอภาพขนาดย่อ - - - 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 แสดง - - - - 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 @@ -4609,90 +4599,90 @@ The link will expire within 1 hour. Terms เงื่อนไข - - - - - src/app/+about/about-instance/about-instance.component.html168src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129src/app/+signup/+register/register.component.html13src/app/shared/shared-instance/instance-about-accordion.component.html35 + src/app/+about/about-instance/about-instance.component.html168 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html129 + src/app/+signup/+register/register.component.html13 + src/app/shared/shared-instance/instance-about-accordion.component.html35 + Code of conduct หลักปฏิบัติ - - - - src/app/+about/about-instance/about-instance.component.html154src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140src/app/shared/shared-instance/instance-about-accordion.component.html47 + src/app/+about/about-instance/about-instance.component.html154 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html140 + src/app/shared/shared-instance/instance-about-accordion.component.html47 + Moderation information ข้อมูลเกี่ยวกับการดูแล - - - - src/app/+about/about-instance/about-instance.component.html140src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151src/app/shared/shared-instance/instance-about-accordion.component.html41 + src/app/+about/about-instance/about-instance.component.html140 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html151 + src/app/shared/shared-instance/instance-about-accordion.component.html41 + Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc 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 ข้อมูลอื่น ๆ - - 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 @@ -4800,14 +4790,18 @@ The link will expire within 1 hour. Signup won't be limited to a fixed number of users. Signup won't be limited to a fixed number of users. src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html159 - - Minimum required age to create an accountMinimum required age to create an account + + + Minimum required age to create an account + Minimum required age to create an account src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 163 - - {VAR_PLURAL, plural, =1 {year old} other {years old}}{VAR_PLURAL, plural, =1 {year old} other {years old}} + + + {VAR_PLURAL, plural, =1 {year old} other {years old}} + {VAR_PLURAL, plural, =1 {year old} other {years old}} src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html 170 @@ -4874,150 +4868,150 @@ The link will expire within 1 hour. Default video quota per user Default video quota per user - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html182 + bytes bytes - - - - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html157src/app/+admin/users/user-edit/user-edit.component.html178src/app/+admin/users/user-edit/user-edit.component.html178 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html188 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html202 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html157 + src/app/+admin/users/user-edit/user-edit.component.html178 + src/app/+admin/users/user-edit/user-edit.component.html178 + Default daily upload limit per user Default daily upload limit per user - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html196 + Allow import with a torrent file or a magnet URI Allow import with a torrent file or a magnet URI - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html246 + Unless a user is marked as trusted, their videos will stay private until a moderator reviews them. 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.html263 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html263 + Block new videos automatically Block new videos automatically - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html260 + SEARCH ค้นหา - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html277 + Allow users to do remote URI/handle search Allow users to do remote URI/handle search - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html288 + Allow your users to look up remote videos/actors that may not be federated with your instance 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.html291 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html291 + 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.html299 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html299 + Allow anonymous users to look up remote videos/actors that may not be federated with your instance 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.html302 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html302 + ⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select. ⚠️ 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.html316 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html316 + You should only use moderated search indexes in production, or host your own. You should only use moderated search indexes in production, or host your own. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html319 + Search index URL Search index URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html325 + Disable local search in search bar Disable local search in search bar - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html338 + Otherwise the local search stays used by default Otherwise the local search stays used by default - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html348 + Search bar uses the global search index by default Search bar uses the global search index by default - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html345 + Enable global search Enable global search - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html313 + FEDERATION FEDERATION - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html366 + Manage relations with other instances. Manage relations with other instances. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html368 + Other instances can follow yours Other instances can follow yours - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html380 + Manually approve new instance followers Manually approve new instance followers - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html387 + Automatically follow back instances Automatically follow back instances - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html400 + ⚠️ This functionality requires a lot of attention and extra moderation. ⚠️ This functionality requires a lot of attention and extra moderation. - - - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html135 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html403 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html416 + Index URL Index URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html425 + Automatically follow instances of a public index Automatically follow instances of a public index - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html413 + See the documentation for more information about the expected URL See the documentation for more information about the expected URL - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html419 + ADMINISTRATORS ADMINISTRATORS - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html445 + Administrator Administrator @@ -5026,13 +5020,13 @@ The link will expire within 1 hour. Admin email Admin email - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html451 + Enable contact form Enable contact form - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html464 + VOD Transcoding VOD Transcoding @@ -5041,28 +5035,28 @@ The link will expire within 1 hour. TWITTER TWITTER - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html473 + Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html475 + Your Twitter username Your Twitter username - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html486 + Instance allowed by Twitter Instance allowed by Twitter - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html499 + If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. - - src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 + src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html504 + LIVE สด @@ -5480,38 +5474,38 @@ color: red; Profile โปรไฟล์ - - src/app/shared/shared-video-miniature/video-download.component.ts237 + src/app/shared/shared-video-miniature/video-download.component.ts237 + Resolution Resolution - - src/app/shared/shared-video-miniature/video-download.component.ts246 + src/app/shared/shared-video-miniature/video-download.component.ts246 + Aspect ratio Aspect ratio - - src/app/shared/shared-video-miniature/video-download.component.ts247 + src/app/shared/shared-video-miniature/video-download.component.ts247 + Average frame rate Average frame rate - - src/app/shared/shared-video-miniature/video-download.component.ts248 + src/app/shared/shared-video-miniature/video-download.component.ts248 + Pixel format Pixel format - - src/app/shared/shared-video-miniature/video-download.component.ts249 + src/app/shared/shared-video-miniature/video-download.component.ts249 + Sample rate Sample rate - - src/app/shared/shared-video-miniature/video-download.component.ts253 + src/app/shared/shared-video-miniature/video-download.component.ts253 + Channel Layout Channel Layout - - src/app/shared/shared-video-miniature/video-download.component.ts254 + src/app/shared/shared-video-miniature/video-download.component.ts254 + Video settings การตั้งค่าวิดีโอ @@ -5560,9 +5554,9 @@ color: red; 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 แสดงเฉพาะวิดีโอในภาษาหรือคำบรรยายเหล่านี้ @@ -5570,15 +5564,15 @@ color: red; In Recently added, Trending, Local, Most liked and Search pages - ในหน้าเพิ่งเผยแพร่ มาแรง เว็บไซต์นี้ ชอบมากที่สุด และหน้าค้นหา + ในหน้าเพิ่งเผยแพร่ มาแรง เซิร์ฟเวอร์นี้ ชอบมากที่สุด และหน้าค้นหา src/app/shared/shared-user-settings/user-video-settings.component.html28 Add a new language เพิ่มภาษา - - - src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71src/app/shared/shared-user-settings/user-video-settings.component.html36 + src/app/+admin/config/edit-custom-config/edit-instance-information.component.html71 + src/app/shared/shared-user-settings/user-video-settings.component.html36 + is awaiting email verification @@ -5606,7 +5600,7 @@ color: red; instance default - ค่าเริ่มต้นของเว็บไซต์ + ค่าเริ่มต้นของเซิร์ฟเวอร์ src/app/shared/shared-user-settings/user-interface-settings.component.html8 @@ -5688,9 +5682,9 @@ color: red; Account page Account page - - - src/app/+videos/+video-watch/video-watch.component.html70src/app/+videos/+video-watch/video-watch.component.html76 + src/app/+videos/+video-watch/video-watch.component.html70 + src/app/+videos/+video-watch/video-watch.component.html76 + @@ -5828,10 +5822,10 @@ color: red; Channel page Channel page - - - - src/app/+my-library/+my-video-channels/my-video-channels.component.html23src/app/+my-library/my-subscriptions/my-subscriptions.component.html20src/app/+videos/+video-watch/video-watch.component.html67 + src/app/+my-library/+my-video-channels/my-video-channels.component.html23 + src/app/+my-library/my-subscriptions/my-subscriptions.component.html20 + src/app/+videos/+video-watch/video-watch.component.html67 + Created by สร้างโดย @@ -6043,7 +6037,7 @@ color: red; This instance does not require email verification. - เว็บไซต์นี้ไม่ต้องยืนยันอีเมล + เซิร์ฟเวอร์นี้ไม่ต้องยืนยันอีเมล src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html20 @@ -6063,17 +6057,17 @@ color: red; Instance muted - ปิดเสียงเว็บไซต์แล้ว + ปิดเสียงเซิร์ฟเวอร์แล้ว src/app/+accounts/accounts.component.html23 Muted by your instance - ถูกปิดเสียงโดยเว็บไซต์ของคุณ + ถูกปิดเสียงโดยเซิร์ฟเวอร์ของคุณ src/app/+accounts/accounts.component.html24 Instance muted by your instance - เว็บไซต์นี้ถูกปิดเสียงโดยเว็บไซต์ของคุณ + เซิร์ฟเวอร์นี้ถูกปิดเสียงโดยเซิร์ฟเวอร์ของคุณ src/app/+accounts/accounts.component.html25 @@ -6087,11 +6081,12 @@ color: red; {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} {VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}} - - - - - src/app/+accounts/account-video-channels/account-video-channels.component.html23src/app/+accounts/accounts.component.html38src/app/+my-library/+my-video-channels/my-video-channels.component.html28src/app/+video-channels/video-channels.component.html73src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html23 + src/app/+accounts/accounts.component.html38 + src/app/+my-library/+my-video-channels/my-video-channels.component.html28 + src/app/+video-channels/video-channels.component.html73 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html13 + {VAR_PLURAL, plural, =1 {1 videos} other { videos}} {VAR_PLURAL, plural, =1 {1 videos} other { videos}} @@ -6102,7 +6097,7 @@ color: red; - + src/app/+accounts/accounts.component.html 41,42 @@ -6152,7 +6147,7 @@ color: red; {VAR_PLURAL, plural, =1 {1 videos} other { videos}} - {VAR_PLURAL, plural, =1 {1 videos} other { videos}} + {VAR_PLURAL, plural, =1 {1 วิดีโอ} other { วิดีโอ}} src/app/+accounts/account-video-channels/account-video-channels.component.html26 @@ -6196,9 +6191,11 @@ channel with the same name ()! See this video channel ดูช่องวิดีโอนี้ - - - src/app/+accounts/account-video-channels/account-video-channels.component.html13src/app/+accounts/account-video-channels/account-video-channels.component.html17src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + src/app/+accounts/account-video-channels/account-video-channels.component.html13 + src/app/+accounts/account-video-channels/account-video-channels.component.html17 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html4 + src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html7 + This channel doesn't have any videos. ช่องนี้ไม่มีวิดีโอ @@ -6212,8 +6209,8 @@ channel with the same name ()! Stats สถิติ - - src/app/menu/menu.component.html139 + src/app/menu/menu.component.html139 + This channel does not have playlists. ช่องนี้ไม่มีเพลย์ลิสต์ @@ -6291,7 +6288,7 @@ channel with the same name ()! This instance is dedicated to sensitive/NSFW content. - เว็บไซต์นี้เผยแพร่เนื้อหาที่ไม่เหมาะสมโดยเฉพาะ + เซิร์ฟเวอร์นี้เผยแพร่เนื้อหาที่ไม่เหมาะสมโดยเฉพาะ src/app/+about/about-instance/about-instance.component.html19 @@ -6308,17 +6305,17 @@ channel with the same name ()! Why we created this instance - ทำไมเราถึงสร้างเว็บไซต์นี้ + ทำไมเราถึงสร้างเซิร์ฟเวอร์นี้ src/app/+about/about-instance/about-instance.component.html58 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 running - How we will pay for keeping our instance running + เราจะจ่ายเงินเพื่อให้เซิร์ฟเวอร์นี้ทำงานอยู่อย่างไร src/app/+about/about-instance/about-instance.component.html 86 @@ -6351,7 +6348,7 @@ channel with the same name ()! Features found on this instance - คุณสมบัติที่สามารถใช้งานได้ในเว็บไซต์นี้ + คุณสมบัติที่สามารถใช้งานได้ในเซิร์ฟเวอร์นี้ src/app/shared/shared-instance/instance-features-table.component.html4 src/app/shared/shared-instance/instance-about-accordion.component.html6 src/app/shared/shared-instance/instance-about-accordion.component.html6 @@ -6368,14 +6365,12 @@ channel with the same name ()! 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. - + PeerTube เป็นแพลตฟอร์มวิดีโอสตรีมมิ่งที่สามารถโฮสต์ด้วยตนเองและสื่อสารถึงกันได้ผ่าน ActivityPub โดยใช้ P2P ในเว็บเบราว์เซอร์ของคุณโดยตรง src/app/+about/about-peertube/about-peertube.component.html10 It is free and open-source software, under AGPLv3 licence. - It is free and open-source software, under AGPLv3 licence. + ซอฟต์แวร์นี้เป็นซอฟต์แวร์เสรีและโอเพนซอร์ส ภายใต้สัญญาอนุญาต AGPLv3 src/app/+about/about-peertube/about-peertube.component.html14 @@ -6440,7 +6435,7 @@ channel with the same name ()! What are the consequences? - มีข้อเสียอะไรบ้าง? + ผลที่ตามมาคืออะไร? src/app/+about/about-peertube/about-peertube.component.html85 @@ -6508,16 +6503,12 @@ channel with the same name ()! How does PeerTube compare with YouTube? - How does PeerTube compare with YouTube? + เมื่อเทียบกับ YouTube แล้ว PeerTube เป็นอย่างไร? src/app/+about/about-peertube/about-peertube.component.html130 The threats to privacy with YouTube are different from PeerTube's. In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). - - 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). - + ภัยคุกคามความเป็นส่วนตัวสำหรับ YouTube จะแตกต่างจากของ PeerTube ซึ่งในกรณีของ YouTube ตัวแพลตฟอร์มมีการเก็บข้อมูลส่วนตัวของคุณจำนวนมาก (ไม่ใช่แค่ที่อยู่ IP) เพื่อวิเคราะห์และติดตามคุณ นอกจากนี้ YouTube เป็นเจ้าของโดย Google/Alphabet ซึ่งเป็นบริษัทที่ติดตามคุณในหลายเว็บไซต์ (ผ่าน AdSense หรือ Google Analytics) src/app/+about/about-peertube/about-peertube.component.html133 @@ -6573,7 +6564,7 @@ channel with the same name ()! This instance does not have instances followers. - เว็บไซต์นี้ไม่มีเว็บไซต์อื่นติดตาม + เซิร์ฟเวอร์นี้ไม่มีเซิร์ฟเวอร์อื่นติดตาม src/app/+about/about-follows/about-follows.component.html6 @@ -6590,29 +6581,29 @@ channel with the same name ()! This instance is not following any other. - This instance is not following any other. + เซิร์ฟเวอร์นี้ไม่ได้ติดตามเซิร์ฟเวอร์อื่น src/app/+about/about-follows/about-follows.component.html18 About this instance - เกี่ยวกับเว็บไซต์นี้ - - src/app/+about/about-routing.module.ts25 + เกี่ยวกับเซิร์ฟเวอร์นี้ + src/app/+about/about-routing.module.ts25 + About PeerTube เกี่ยวกับ PeerTube - - src/app/+about/about-routing.module.ts50 + src/app/+about/about-routing.module.ts50 + About this instance's network - เกี่ยวกับเครือข่ายของเว็บไซต์นี้ - - src/app/+about/about-routing.module.ts59 + เกี่ยวกับเครือข่ายของเซิร์ฟเวอร์นี้ + src/app/+about/about-routing.module.ts59 + Link copied คัดลอกลิงก์แล้ว - - src/app/+about/about-instance/about-instance.component.ts98 + src/app/+about/about-instance/about-instance.component.ts98 + Developed with ❤ by Framasoft พัฒนาด้วย ❤ โดย @@ -6634,18 +6625,18 @@ channel with the same name ()! Create my account สร้างบัญชีของฉัน - - src/app/+signup/+register/register.component.html39 + src/app/+signup/+register/register.component.html39 + PeerTube is creating your account... PeerTube กำลังสร้างบัญชีของคุณ... - - src/app/+signup/+register/register.component.html47 + src/app/+signup/+register/register.component.html47 + Done เรียบร้อย - - src/app/+signup/+register/register.component.html43 + src/app/+signup/+register/register.component.html43 + Who are we? เราเป็นใคร @@ -6653,12 +6644,12 @@ channel with the same name ()! 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? - เราใช้แหล่งเงินใดในการจ่ายค่าใช้จ่ายของเว็บไซต์นี้ + เราใช้แหล่งเงินใดในการจ่ายค่าใช้จ่ายของเซิร์ฟเวอร์นี้ src/app/shared/shared-instance/instance-about-accordion.component.html29 @@ -6709,15 +6700,17 @@ 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.html43 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.html51 - - I am at least years old and agree to the Terms and to the Code of Conduct of this instance I am at least years old and agree to the Terms and to the Code of Conduct of this instance + + + I am at least years old and agree to the Terms and to the Code of Conduct of this instance + ฉันมีอายุอย่างน้อย ปี และยอมรับเงื่อนไขและหลักปฏิบัติของเซิร์ฟเวอร์นี้ src/app/+signup/+register/register-step-terms.component.html 5,10 @@ -6725,18 +6718,17 @@ 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.html36 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.html 4,5 - Register Register @@ -6745,13 +6737,13 @@ channel with the same name ()! Your message has been sent. ข้อความของคุณถูกส่งแล้ว - - src/app/+about/about-instance/contact-admin-modal.component.ts89 + src/app/+about/about-instance/contact-admin-modal.component.ts89 + You already sent this form recently คุณเพิ่งส่งฟอร์มนี้ไปเมื่อสักครู่ - - src/app/+about/about-instance/contact-admin-modal.component.ts95 + src/app/+about/about-instance/contact-admin-modal.component.ts95 + Account videos วิดีโอในบัญชี @@ -6761,14 +6753,15 @@ channel with the same name ()! Search videos within account ค้นหาวิดีโอภายในบัญชี src/app/+accounts/accounts-routing.module.ts49 - - ACCOUNTACCOUNT + + + ACCOUNT + ACCOUNT src/app/+accounts/accounts.component.html 8 - Account video channels ช่องวิดีโอในบัญชี @@ -6783,7 +6776,7 @@ channel with the same name ()! Display all videos (private, unlisted or not yet published) - Display all videos (private, unlisted or not yet published) + แสดงทุกวิดีโอ (ส่วนตัว ไม่เปิดเผย หรือยังไม่ได้เผยแพร่) src/app/shared/shared-video-miniature/abstract-video-list.html36 src/app/shared/shared-video-miniature/abstract-video-list.html36 src/app/shared/shared-video-miniature/abstract-video-list.html36 @@ -6996,7 +6989,7 @@ channel with the same name ()! INSTANCE HOMEPAGE - INSTANCE HOMEPAGE + หน้าหลักเซิร์ฟเวอร์ src/app/+admin/config/edit-custom-config/edit-homepage.component.html 7 @@ -7300,9 +7293,9 @@ channel with the same name ()! Instance muted. - - - src/app/shared/shared-moderation/server-blocklist.component.ts68src/app/shared/shared-moderation/user-moderation-dropdown.component.ts143 + src/app/shared/shared-moderation/server-blocklist.component.ts68 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts143 + Instance muted by your instance. Instance @@ -7455,25 +7448,25 @@ channel with the same name ()! 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.ts133src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts133 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180 + Unblock Unblock - - - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts82src/app/+admin/moderation/video-block-list/video-block-list.component.ts135src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts82 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts135 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296 + Video unblocked. Video unblocked. - - - src/app/+admin/moderation/video-block-list/video-block-list.component.ts140src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + src/app/+admin/moderation/video-block-list/video-block-list.component.ts140 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188 + yes ใช่ @@ -7677,7 +7670,7 @@ channel with the same name ()! Last week - Last week + สัปดาห์ที่ผ่านมา src/app/+admin/system/logs/logs.component.ts87 @@ -7746,8 +7739,8 @@ channel with the same name ()! User created. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -7817,8 +7810,8 @@ channel with the same name ()! Update a user Update a user - - src/app/+admin/users/users.routes.ts45 + src/app/+admin/users/users.routes.ts45 + Federation Federation @@ -7837,9 +7830,9 @@ channel with the same name ()! Videos will be deleted, comments will be tombstoned. Videos will be deleted, comments will be tombstoned. - - - src/app/+admin/users/user-list/user-list.component.ts82src/app/shared/shared-moderation/user-moderation-dropdown.component.ts265 + src/app/+admin/users/user-list/user-list.component.ts82 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts265 + Ban Ban @@ -7849,83 +7842,81 @@ channel with the same name ()! User won't be able to login anymore, but videos and comments will be kept as is. User won't be able to login anymore, but videos and comments will be kept as is. - - - src/app/+admin/users/user-list/user-list.component.ts88src/app/shared/shared-moderation/user-moderation-dropdown.component.ts270 + src/app/+admin/users/user-list/user-list.component.ts88 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts270 + Unban Unban - - - - src/app/+admin/users/user-list/user-list.component.ts93src/app/+admin/users/user-list/user-list.component.ts172src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + src/app/+admin/users/user-list/user-list.component.ts93 + src/app/+admin/users/user-list/user-list.component.ts172 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + Set Email as Verified Set Email as Verified - - - src/app/+admin/users/user-list/user-list.component.ts100src/app/shared/shared-moderation/user-moderation-dropdown.component.ts281 + src/app/+admin/users/user-list/user-list.component.ts100 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts281 + You cannot ban root. คุณไม่สามารถแบน root - - - src/app/+admin/users/user-list/user-list.component.ts159src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + src/app/+admin/users/user-list/user-list.component.ts159 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts54 + Do you really want to unban users? คุณต้องการปลดแบนผู้ใช้ บัญชีหรือไม่ - - src/app/+admin/users/user-list/user-list.component.ts172 + src/app/+admin/users/user-list/user-list.component.ts172 + users unbanned. ปลดแบนผู้ใช้ บัญชีแล้ว - - src/app/+admin/users/user-list/user-list.component.ts178 + src/app/+admin/users/user-list/user-list.component.ts178 + You cannot delete root. You cannot delete root. - - - src/app/+admin/users/user-list/user-list.component.ts189src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + src/app/+admin/users/user-list/user-list.component.ts189 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts82 + If you remove these users, you will not be able to create others with the same username! If you remove these users, you will not be able to create others with the same username! - - src/app/+admin/users/user-list/user-list.component.ts194 + src/app/+admin/users/user-list/user-list.component.ts194 + users deleted. users deleted. - - src/app/+admin/users/user-list/user-list.component.ts200 + src/app/+admin/users/user-list/user-list.component.ts200 + users email set as verified. users email set as verified. - - src/app/+admin/users/user-list/user-list.component.ts211 + src/app/+admin/users/user-list/user-list.component.ts211 + Account unmuted. เลิกปิดเสียงบัญชี แล้ว - - - src/app/shared/shared-moderation/account-blocklist.component.ts43src/app/shared/shared-moderation/user-moderation-dropdown.component.ts129 + src/app/shared/shared-moderation/account-blocklist.component.ts43 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts129 + Instance unmuted. - เลิกปิดเสียงเว็บไซต์ - แล้ว - - - - src/app/shared/shared-moderation/server-blocklist.component.ts45src/app/shared/shared-moderation/user-moderation-dropdown.component.ts157 + เลิกปิดเสียงเซิร์ฟเวอร์ แล้ว + src/app/shared/shared-moderation/server-blocklist.component.ts45 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts157 + Videos history is enabled ประวัติวิดีโอเปิดใช้งาน @@ -8027,9 +8018,9 @@ channel with the same name ()! Interface settings updated. อัปเดตการตั้งค่าอินเตอร์เฟซแล้ว - - - src/app/shared/shared-user-settings/user-interface-settings.component.ts72src/app/shared/shared-user-settings/user-interface-settings.component.ts79 + src/app/shared/shared-user-settings/user-interface-settings.component.ts72 + src/app/shared/shared-user-settings/user-interface-settings.component.ts79 + New video from your subscriptions วิดีโอใหม่จากช่องที่คุณติดตาม @@ -8067,7 +8058,7 @@ channel with the same name ()! A new user registered on your instance - มีผู้ใช้ใหม่ลงทะเบียนบนเว็บไซต์ของคุณ + มีผู้ใช้ใหม่ลงทะเบียนบนเซิร์ฟเวอร์ของคุณ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts39 @@ -8082,7 +8073,7 @@ channel with the same name ()! Your instance has a new follower - เว็บไซต์ของคุณมีผู้ติดตามใหม่ + เซิร์ฟเวอร์ของคุณมีผู้ติดตามใหม่ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts42 @@ -8119,8 +8110,8 @@ channel with the same name ()! Preferences saved บันทึกการตั้งค่าแล้ว - - src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts94 + Profile updated. อัปเดตโปรไฟล์แล้ว @@ -8137,26 +8128,26 @@ channel with the same name ()! Avatar changed. เปลี่ยนภาพแทนตัวแล้ว - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts44src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts105 + src/app/+my-account/my-account-settings/my-account-settings.component.ts44 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts105 + avatar avatar - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts112 + src/app/+my-account/my-account-settings/my-account-settings.component.ts51 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts112 + Avatar deleted. Avatar deleted. - - - src/app/+my-account/my-account-settings/my-account-settings.component.ts61src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts122 + src/app/+my-account/my-account-settings/my-account-settings.component.ts61 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts122 + Unknown language ภาษาที่ไม่รู้จัก - - src/app/shared/shared-user-settings/user-video-settings.component.ts55 + src/app/shared/shared-user-settings/user-video-settings.component.ts55 + Too many languages are enabled. Please enable them all or stay below 20 enabled languages. จำนวนภาษาที่เปิดมากเกินไป โปรดเปิดทุกภาษาหรือเปิดไว้ไม่เกิน 20 ภาษา @@ -8179,29 +8170,29 @@ channel with the same name ()! This name already exists on this instance. - ชื่อนี้มีอยู่ในเว็บไซต์นี้แล้ว + ชื่อนี้มีอยู่ในเซิร์ฟเวอร์นี้แล้ว src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts73 Video channel updated. อัปเดตช่องวิดีโอ แล้ว - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts92 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts92 + Banner changed. Banner changed. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts135 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts135 + banner banner - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts142 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts142 + Banner deleted. Banner deleted. - - src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts152 + src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts152 + Please type the display name of the video channel () to confirm กรุณาพิมพ์ชื่อแสดงของช่อง ( ) เพื่อยืนยัน @@ -8409,8 +8400,8 @@ channel with the same name ()! Channels ช่อง - - src/app/+my-library/my-library.component.ts45 + src/app/+my-library/my-library.component.ts45 + Videos วิดีโอ @@ -8440,22 +8431,22 @@ channel with the same name ()! Now please check your emails to verify your account and complete signup. กรุณาตรวจสอบอีเมลของคุณเพื่อยืนยันบัญชีและเสร็จสิ้นการลงทะเบียน - - src/app/+signup/+register/register.component.ts130 + src/app/+signup/+register/register.component.ts130 + You are now logged in as ! คุณเข้าสู่ระบบในชื่อ แล้ว - - src/app/+signup/+register/register.component.ts138 + src/app/+signup/+register/register.component.ts138 + An email with verification link will be sent to . อีเมลที่มีลิงก์ยืนยันจะถูกส่งไปยัง - - src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 + src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts39 + Unable to find user id or verification string. ไม่พบไอดีผู้ใช้หรือรหัสลิงก์ยืนยัน @@ -8472,7 +8463,7 @@ channel with the same name ()! ติดตามบัญชี - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS เพลย์ลิสต์ @@ -8484,38 +8475,38 @@ channel with the same name ()! Focus the search bar โฟกัสไปที่แถบค้นหา - - src/app/app.component.ts300 + src/app/app.component.ts300 + Toggle the left menu เปิด/ปิดเมนูด้านซ้าย - - src/app/app.component.ts305 + src/app/app.component.ts305 + Go to the discover videos page ไปที่หน้าสำรวจวิดีโอ - - src/app/app.component.ts310 + src/app/app.component.ts310 + Go to the trending videos page ไปที่หน้าวิดีโอมาแรง - - src/app/app.component.ts315 + src/app/app.component.ts315 + Go to the recently added videos page ไปที่หน้าวิดีโอที่เพิ่งเผยแพร่ - - src/app/app.component.ts320 + src/app/app.component.ts320 + Go to the local videos page - ไปที่หน้าวิดีโอในเว็บไซต์นี้ - - src/app/app.component.ts325 + ไปที่หน้าวิดีโอในเซิร์ฟเวอร์นี้ + src/app/app.component.ts325 + Go to the videos upload page ไปที่หน้าอัปโหลดวิดีโอ - - src/app/app.component.ts330 + src/app/app.component.ts330 + Go to my subscriptions ไปที่การติดตามของฉัน @@ -8552,8 +8543,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Keyboard Shortcuts: ปุ่มลัดคีย์บอร์ด: src/app/core/hotkeys/hotkeys.component.ts11 - - My historyMy history + + + My history + My history src/app/core/menu/menu.service.ts 98 @@ -8561,10 +8554,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Trending - Trending - - src/app/core/menu/menu.service.ts131 - ON ON + มาแรง + src/app/core/menu/menu.service.ts131 + + + ON + ON src/app/core/menu/menu.service.ts 150 @@ -8572,10 +8567,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Home - Home - - - src/app/core/menu/menu.service.ts115src/app/core/menu/menu.service.ts116 + หน้าแรก + src/app/core/menu/menu.service.ts115 + src/app/core/menu/menu.service.ts116 + Success สำเร็จ @@ -8594,29 +8589,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular any language ภาษาใดก็ได้ - - src/app/menu/menu.component.ts263 - + src/app/menu/menu.component.ts263 + hide ซ่อน - - src/app/menu/menu.component.ts298 + src/app/menu/menu.component.ts298 + blur เบลอ - - src/app/menu/menu.component.ts302 + src/app/menu/menu.component.ts302 + display แสดง - - src/app/menu/menu.component.ts306 + src/app/menu/menu.component.ts306 + Unknown ไม่รู้จัก - - src/app/menu/menu.component.ts193 + src/app/menu/menu.component.ts193 + Your password has been successfully reset! รีเซ็ตรหัสผ่านเรียบร้อย @@ -8625,45 +8619,45 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Today วันนี้ - - - - src/app/+search/search-filters.component.ts41src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69src/app/shared/shared-video-miniature/abstract-video-list.ts133 + src/app/+search/search-filters.component.ts41 + src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts69 + src/app/shared/shared-video-miniature/abstract-video-list.ts133 + Yesterday เมื่อวาน - - src/app/shared/shared-video-miniature/abstract-video-list.ts134 + src/app/shared/shared-video-miniature/abstract-video-list.ts134 + This week สัปดาห์นี้ - - src/app/shared/shared-video-miniature/abstract-video-list.ts135 + src/app/shared/shared-video-miniature/abstract-video-list.ts135 + This month เดือนนี้ - - src/app/shared/shared-video-miniature/abstract-video-list.ts136 + src/app/shared/shared-video-miniature/abstract-video-list.ts136 + Last month เดือนที่ผ่านมา - - src/app/shared/shared-video-miniature/abstract-video-list.ts137 + src/app/shared/shared-video-miniature/abstract-video-list.ts137 + Older เก่ากว่า - - src/app/shared/shared-video-miniature/abstract-video-list.ts138 + src/app/shared/shared-video-miniature/abstract-video-list.ts138 + Cannot load more videos. Try again later. ไม่สามารถโหลดวิดีโอเพิ่มเติม ลองอีกครั้งในภายหลัง - - src/app/shared/shared-video-miniature/abstract-video-list.ts223 + src/app/shared/shared-video-miniature/abstract-video-list.ts223 + function is not implemented function is not implemented - - src/app/shared/shared-video-miniature/abstract-video-list.ts296 + src/app/shared/shared-video-miniature/abstract-video-list.ts296 + Last 7 days 7 วันที่ผ่านมา @@ -8729,13 +8723,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Search index is unavailable. Retrying with instance results instead. Search index is unavailable. Retrying with instance results instead. - - src/app/+search/search.component.ts153 + src/app/+search/search.component.ts153 + Search error เกิดข้อผิดพลาดในการค้นหา - - src/app/+search/search.component.ts154 + src/app/+search/search.component.ts154 + Search การค้นหา @@ -8761,7 +8755,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 1 year ago - 1 year ago + 1 ปีที่ผ่านมา src/app/shared/shared-main/angular/from-now.pipe.ts 12 @@ -8780,7 +8774,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 1 month ago - 1 month ago + 1 เดือนที่ผ่านมา src/app/shared/shared-main/angular/from-now.pipe.ts 19 @@ -8799,7 +8793,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 1 week ago - 1 week ago + 1 สัปดาห์ที่ผ่านมา src/app/shared/shared-main/angular/from-now.pipe.ts 26 @@ -8869,7 +8863,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Instance name is required. - ต้องใส่ชื่อของเว็บไซต์ + ต้องใส่ชื่อของเซิร์ฟเวอร์ src/app/shared/form-validators/custom-config-validators.ts7 @@ -8929,20 +8923,26 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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 @@ -8951,73 +8951,73 @@ 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 + src/app/shared/form-validators/custom-config-validators.ts97 + Concurrency is required. Concurrency is required. - - src/app/shared/form-validators/custom-config-validators.ts104 + src/app/shared/form-validators/custom-config-validators.ts104 + Concurrency should be greater or equal to 1. Concurrency should be greater or equal to 1. - - src/app/shared/form-validators/custom-config-validators.ts105 + src/app/shared/form-validators/custom-config-validators.ts105 + Index URL should be a URL Index URL should be a URL - - src/app/shared/form-validators/custom-config-validators.ts112 + src/app/shared/form-validators/custom-config-validators.ts112 + Search index URL should be a URL Search index URL should be a URL - - src/app/shared/form-validators/custom-config-validators.ts119 + src/app/shared/form-validators/custom-config-validators.ts119 + Email is required. ต้องใส่อีเมล @@ -9196,7 +9196,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular You must agree with the instance terms in order to register on it. - คุณต้องยอมรับข้อกำหนดของเว็บไซต์เพื่อลงทะเบียน + คุณต้องยอมรับข้อกำหนดของเซิร์ฟเวอร์เพื่อลงทะเบียน src/app/shared/form-validators/user-validators.ts133 @@ -9306,7 +9306,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular You can only transfer ownership to a local account - คุณสามารถโอนเจ้าของได้เฉพาะบัญชีที่อยู่ในเว็บไซต์นี้เท่านั้น + คุณสามารถโอนเจ้าของได้เฉพาะบัญชีที่อยู่ในเซิร์ฟเวอร์นี้เท่านั้น src/app/shared/form-validators/video-ownership-change-validators.ts15 @@ -9782,7 +9782,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Instance languages - ภาษาเว็บไซต์ + ภาษาของเซิร์ฟเวอร์ src/app/+videos/+video-edit/shared/video-edit.component.ts179 @@ -9794,66 +9794,66 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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 ถูกเบลอและมีหน้าต่างยืนยัน - - src/app/shared/shared-instance/instance-features-table.component.ts54 + src/app/shared/shared-instance/instance-features-table.component.ts54 + Displayed แสดง - - src/app/shared/shared-instance/instance-features-table.component.ts55 + src/app/shared/shared-instance/instance-features-table.component.ts55 + ~ 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 สำหรับวิดีโอ Full HD - - src/app/shared/shared-instance/instance-features-table.component.ts92 + src/app/shared/shared-instance/instance-features-table.component.ts92 + of HD videos สำหรับวิดีโอ HD - - src/app/shared/shared-instance/instance-features-table.component.ts93 + src/app/shared/shared-instance/instance-features-table.component.ts93 + 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.ts19src/app/shared/shared-actor-image/actor-avatar.component.ts41src/app/shared/shared-video-miniature/video-miniature.component.ts113 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts19 + src/app/shared/shared-actor-image/actor-avatar.component.ts41 + src/app/shared/shared-video-miniature/video-miniature.component.ts113 + (account page) (account page) - - - src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20src/app/shared/shared-actor-image/actor-avatar.component.ts40 + src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts20 + src/app/shared/shared-actor-image/actor-avatar.component.ts40 + Emphasis Emphasis @@ -9906,42 +9906,42 @@ 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.ts66 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts66 + User unbanned. User unbanned. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts72 + If you remove this user, you will not be able to create another with the same username! If you remove this user, you will not be able to create another with the same username! - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86 + User deleted. User deleted. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts92 + User email set as verified User email set as verified - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts103 + Account muted. Account muted. - - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts115src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts115 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240 + Instance muted. Instance @@ -9957,9 +9957,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account muted by the instance. - - - src/app/shared/shared-abuse-list/abuse-list-table.component.ts444src/app/shared/shared-moderation/user-moderation-dropdown.component.ts171 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts444 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts171 + Mute server Mute server @@ -9987,162 +9987,162 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Account unmuted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts185 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts185 + Instance muted by the instance. Instance muted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts199 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts199 + Instance unmuted by the instance. Instance unmuted by the instance. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts213 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts213 + 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.ts224 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts224 + Delete account comments Delete account comments - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts225 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts225 + 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.ts231 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts231 + Edit user Edit user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts259 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts259 + Change quota, role, and more. Change quota, role, and more. - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts260 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts260 + Delete user Delete user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264 + Unban user Unban user - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts275 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts275 + 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.ts276 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts276 + Mute this account ปิดเสียงบัญชีนี้ - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts293 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts293 + Hide any content from that user from you. ซ่อนไม่ให้คุณเห็นเนื้อหาใด ๆ จากผู้ใช้นี้ - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts294 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts294 + Unmute this account เลิกปิดเสียงบัญชีนี้ - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts299 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts299 + 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.ts300 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts300 + Mute the instance Mute the instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts305 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts305 + 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.ts306 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts306 + Unmute the instance Unmute the instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts311 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts311 + 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.ts312 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts312 + Remove comments from your videos ลบความคิดเห็นจากวิดีโอของคุณ - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts317 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts317 + Remove comments made by this account on your videos. ลบทุกความคิดเห็นที่บัญชีนี้ได้สร้างบนวิดีโอของคุณ - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts318 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts318 + Mute this account by your instance Mute this account by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts329 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts329 + 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.ts330 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts330 + Unmute this account by your instance Unmute this account by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts335 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts335 + 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.ts336 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts336 + Mute the instance by your instance Mute the instance by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts347 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts347 + 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.ts348 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts348 + Unmute the instance by your instance Unmute the instance by your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts353 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts353 + 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.ts354 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts354 + Remove comments from your instance Remove comments from your instance - - src/app/shared/shared-moderation/user-moderation-dropdown.component.ts364 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts364 + 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.ts365 + src/app/shared/shared-moderation/user-moderation-dropdown.component.ts365 + Violent or repulsive Violent or repulsive @@ -10283,8 +10283,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Moderator Moderator src/app/core/users/user.service.ts407 - - Search videos, playlists, channels…Search videos, playlists, channels… + + + Search videos, playlists, channels… + ค้นหาวิดีโอ, เพลย์ลิสต์, ช่อง… src/app/header/search-typeahead.component.html 3 @@ -10295,9 +10297,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video removed from - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts93 + Video added in at timestamps Video added in @@ -10316,25 +10318,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Timestamps updated อัปเดตช่วงเวลาแล้ว - - - src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts112 + Starts at Starts at - - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts135 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Stops at Stops at - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts136 + and stops at and stops at - - src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts138 + Delete video ลบวิดีโอ @@ -10353,9 +10355,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular 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.ts420 + src/app/+videos/+video-watch/shared/comment/video-comments.component.ts172 + src/app/shared/shared-abuse-list/abuse-list-table.component.ts420 + Comment deleted. ลบความคิดเห็นแล้ว @@ -10364,35 +10366,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Encoder Encoder - - src/app/shared/shared-video-miniature/video-download.component.ts212 + src/app/shared/shared-video-miniature/video-download.component.ts212 + Format name Format name - - src/app/shared/shared-video-miniature/video-download.component.ts213 + src/app/shared/shared-video-miniature/video-download.component.ts213 + Size Size - - src/app/shared/shared-video-miniature/video-download.component.ts214 + src/app/shared/shared-video-miniature/video-download.component.ts214 + Bitrate Bitrate - - - src/app/shared/shared-video-miniature/video-download.component.ts216src/app/shared/shared-video-miniature/video-download.component.ts239 + src/app/shared/shared-video-miniature/video-download.component.ts216 + src/app/shared/shared-video-miniature/video-download.component.ts239 + Codec Codec - - src/app/shared/shared-video-miniature/video-download.component.ts236 + src/app/shared/shared-video-miniature/video-download.component.ts236 + Copied คัดลอกแล้ว - - - src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts196 + src/app/shared/shared-forms/input-toggle-hidden.component.ts47 + src/app/shared/shared-video-miniature/video-download.component.ts196 + Copy Copy @@ -10460,20 +10462,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Save to playlist บันทึกไปยังเพลย์ลิสต์ - - - src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts57 + src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264 + You need to be <a href="/login">logged in</a> to rate this video. คุณต้อง<a href="/login">เข้าสู่ระบบ</a>เพื่อให้คะแนนวิดีโอนี้ - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts85 + Mirror Mirror src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302 - - SubtitlesSubtitles + + + Subtitles + Subtitles src/app/shared/shared-video-miniature/video-download.component.html 9 @@ -10488,18 +10492,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Remove Remove - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts186 + Remove & re-draft Remove & re-draft - - src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + src/app/+videos/+video-watch/shared/comment/video-comment.component.ts194 + {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} {VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other { Comments}} - - src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + src/app/+videos/+video-watch/shared/comment/video-comments.component.html4 + Mute account Mute account @@ -10573,28 +10577,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Published เผยแพร่แล้ว - - src/app/shared/shared-video-miniature/video-miniature.component.ts158 + src/app/shared/shared-video-miniature/video-miniature.component.ts158 + Publication scheduled on Publication scheduled on - - src/app/shared/shared-video-miniature/video-miniature.component.ts163 + src/app/shared/shared-video-miniature/video-miniature.component.ts163 + Waiting transcoding รอการประมวลผล - - src/app/shared/shared-video-miniature/video-miniature.component.ts167 + src/app/shared/shared-video-miniature/video-miniature.component.ts167 + To transcode ที่ต้องประมวลผล - - src/app/shared/shared-video-miniature/video-miniature.component.ts171 + src/app/shared/shared-video-miniature/video-miniature.component.ts171 + To import ที่ต้องนำเข้า - - src/app/shared/shared-video-miniature/video-miniature.component.ts175 + src/app/shared/shared-video-miniature/video-miniature.component.ts175 + @@ -10635,19 +10639,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Only users of this instance can see this video - เฉพาะผู้ใช้ของเว็บไซต์นี้ที่จะเห็นวิดีโอนี้ + เฉพาะผู้ใช้ของเซิร์ฟเวอร์นี้ที่จะเห็นวิดีโอนี้ src/app/shared/shared-main/video/video.service.ts397 viewers ผู้ชม คน - - src/app/shared/shared-main/video/video.model.ts215 + src/app/shared/shared-main/video/video.model.ts215 + views การดู ครั้ง - - src/app/shared/shared-main/video/video.model.ts218 + src/app/shared/shared-main/video/video.model.ts218 + Close ปิด @@ -10672,15 +10676,15 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Previous month เดือนก่อนหน้า - - - node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts24 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts35 + Next month เดือนถัดไป - - - node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts44node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts57 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts44 + node_modules/@ng-bootstrap/ng-bootstrap/src/datepicker/datepicker-navigation.ts57 + Select month เลือกเดือน @@ -10816,41 +10820,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Video to import updated. Video to import updated. - - - src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts141src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts141 + src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts143 + Your video was uploaded to your account and is private. วิดีโอของคุณถูกอัปโหลดไปยังบัญชีของคุณและเป็นส่วนตัวแล้ว - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts162 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts162 + 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.ts163 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts163 + 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.ts165 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts165 + Upload อัปโหลด - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts222 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts222 + Upload อัปโหลด - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts224 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts224 + Video published. เผยแพร่วิดีโอแล้ว - - src/app/+videos/+video-edit/video-add-components/video-upload.component.ts245 + src/app/+videos/+video-edit/video-add-components/video-upload.component.ts245 + You have unsaved changes! If you leave, your changes will be lost. คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก ถ้าคุณออกจากหน้านี้ ข้อมูลที่ไม่ได้บันทึกจะหายไป @@ -10869,23 +10873,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.ts220 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts220 + Autoplay next video เล่นวิดีโอถัดไปโดยอัตโนมัติ - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts221 + Stop looping playlist videos หยุดวนซ้ำวิดีโอในเพลย์ลิสต์ - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts226 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts226 + Loop playlist videos วนซ้ำวิดีโอในเพลย์ลิสต์ - - src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts227 + Placeholder image Placeholder image @@ -10896,29 +10900,29 @@ 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.ts288 + วิดีโอนี้ไม่สามารถรับชมบนเซิร์ฟเวอร์นี้ คุณต้องการเปลี่ยนเส้นทางไปยังเซิร์ฟเวอร์ต้นทางหรือไม่?: <a href=""></a> + src/app/+videos/+video-watch/video-watch.component.ts288 + Redirection - Redirection - - src/app/+videos/+video-watch/video-watch.component.ts289 + การเปลี่ยนเส้นทาง + src/app/+videos/+video-watch/video-watch.component.ts289 + This video contains mature or explicit content. Are you sure you want to watch it? วิดีโอนี้มีเนื้อหาไม่เหมาะสม คุณต้องการรับชมหรือไม่ - - src/app/+videos/+video-watch/video-watch.component.ts335 + src/app/+videos/+video-watch/video-watch.component.ts335 + Mature or explicit content เนื้อหาไม่เหมาะสม - - src/app/+videos/+video-watch/video-watch.component.ts336 + src/app/+videos/+video-watch/video-watch.component.ts336 + Up Next รายการถัดไป - - src/app/+videos/+video-watch/video-watch.component.ts407 + src/app/+videos/+video-watch/video-watch.component.ts407 + Cancel ยกเลิก @@ -10927,84 +10931,84 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Autoplay is suspended การเล่นวิดีโออัตโนมัติถูกหยุด - - src/app/+videos/+video-watch/video-watch.component.ts409 + src/app/+videos/+video-watch/video-watch.component.ts409 + Enter/exit fullscreen (requires player focus) Enter/exit fullscreen (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts678 + src/app/+videos/+video-watch/video-watch.component.ts678 + Play/Pause the video (requires player focus) Play/Pause the video (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts679 + src/app/+videos/+video-watch/video-watch.component.ts679 + Mute/unmute the video (requires player focus) Mute/unmute the video (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts680 + src/app/+videos/+video-watch/video-watch.component.ts680 + Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts682 + src/app/+videos/+video-watch/video-watch.component.ts682 + Increase the volume (requires player focus) Increase the volume (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts684 + src/app/+videos/+video-watch/video-watch.component.ts684 + Decrease the volume (requires player focus) Decrease the volume (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts685 + src/app/+videos/+video-watch/video-watch.component.ts685 + Seek the video forward (requires player focus) Seek the video forward (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts687 + src/app/+videos/+video-watch/video-watch.component.ts687 + Seek the video backward (requires player focus) Seek the video backward (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts688 + src/app/+videos/+video-watch/video-watch.component.ts688 + Increase playback rate (requires player focus) Increase playback rate (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts690 + src/app/+videos/+video-watch/video-watch.component.ts690 + Decrease playback rate (requires player focus) Decrease playback rate (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts691 + src/app/+videos/+video-watch/video-watch.component.ts691 + Navigate in the video frame by frame (requires player focus) Navigate in the video frame by frame (requires player focus) - - src/app/+videos/+video-watch/video-watch.component.ts693 + src/app/+videos/+video-watch/video-watch.component.ts693 + Like the video ชอบวิดีโอ - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts46 + Dislike the video ไม่ชอบวิดีโอ - - src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts51 + When active, the next video is automatically played after the current one. เมื่อเปิดไว้ วิดีโอถัดไปจะถูกเล่นต่อจากวิดีโอปัจจุบันโดยอัตโนมัติ - - src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts61 + Recently added เพิ่งเผยแพร่ - - - src/app/+videos/video-list/video-recently-added.component.ts37src/app/core/menu/menu.service.ts137 + src/app/+videos/video-list/video-recently-added.component.ts37 + src/app/core/menu/menu.service.ts137 + Videos from your subscriptions วิดีโอจากช่องที่คุณติดตาม @@ -11042,30 +11046,30 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular Local videos - วิดีโอในเว็บไซต์นี้ - - - - - src/app/+videos/video-list/video-local.component.ts37src/app/+videos/videos-routing.module.ts70src/app/core/menu/menu.service.ts142src/app/core/menu/menu.service.ts143 + วิดีโอในเซิร์ฟเวอร์นี้ + src/app/+videos/video-list/video-local.component.ts37 + src/app/+videos/videos-routing.module.ts70 + src/app/core/menu/menu.service.ts142 + src/app/core/menu/menu.service.ts143 + Discover videos สำรวจวิดีโอ - - - src/app/+videos/videos-routing.module.ts21src/app/core/menu/menu.service.ts124 + src/app/+videos/videos-routing.module.ts21 + src/app/core/menu/menu.service.ts124 + Trending videos วิดีโอมาแรง - - - src/app/+videos/videos-routing.module.ts30src/app/core/menu/menu.service.ts130 + src/app/+videos/videos-routing.module.ts30 + src/app/core/menu/menu.service.ts130 + Recently added videos วิดีโอที่เพิ่งเผยแพร่ - - - src/app/+videos/videos-routing.module.ts43src/app/core/menu/menu.service.ts136 + src/app/+videos/videos-routing.module.ts43 + src/app/core/menu/menu.service.ts136 + Upload a video อัปโหลดวิดีโอ diff --git a/client/src/locale/angular.tr-TR.xlf b/client/src/locale/angular.tr-TR.xlf index 5cd308747..c42282c5d 100644 --- a/client/src/locale/angular.tr-TR.xlf +++ b/client/src/locale/angular.tr-TR.xlf @@ -2320,12 +2320,12 @@ The link will expire within 1 hour. Scheduled Sıraya alındı - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Videoyu belirli bir tarihe dek gizle - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Videonun arkaplan resmi @@ -3249,7 +3249,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7410,8 +7410,8 @@ channel with the same name ()! User created. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8130,7 +8130,7 @@ channel with the same name ()! Hesaba abone olundu - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf index 395cb1906..b3edca5d1 100644 --- a/client/src/locale/angular.uk-UA.xlf +++ b/client/src/locale/angular.uk-UA.xlf @@ -2242,12 +2242,12 @@ The link will expire within 1 hour. Scheduled Scheduled - src/app/+videos/+video-edit/shared/video-edit.component.ts191 + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Hide the video until a specific date - src/app/+videos/+video-edit/shared/video-edit.component.ts192 + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Video background image @@ -3193,7 +3193,7 @@ The link will expire within 1 hour. Create user Create user - src/app/+admin/users/user-edit/user-create.component.ts95src/app/+admin/users/user-list/user-list.component.html20 + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Table parameters @@ -7361,8 +7361,8 @@ channel with the same name ()! User created. Користувача створено. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8057,7 +8057,7 @@ channel with the same name ()! Subscribe to the account - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTSPLAYLISTS src/app/+video-channels/video-channels.component.ts diff --git a/client/src/locale/angular.vi-VN.xlf b/client/src/locale/angular.vi-VN.xlf index 5cb31ebab..301570458 100644 --- a/client/src/locale/angular.vi-VN.xlf +++ b/client/src/locale/angular.vi-VN.xlf @@ -2378,13 +2378,13 @@ The link will expire within 1 hour. Scheduled Đã lên lịch - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date Ẩn video dưới một ngày đặc biệt - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image Hình nền video @@ -3261,9 +3261,9 @@ The link will expire within 1 hour. Create user Tạo người dùng - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters Thành phần bảng @@ -4923,7 +4923,7 @@ The link will expire within 1 hour. Live streaming - Live stream + Livestream src/app/+admin/config/edit-custom-config/edit-custom-config.component.html42 src/app/shared/shared-instance/instance-features-table.component.html67 @@ -7345,8 +7345,8 @@ channel with the same name ()! User created. Người dùng đã tạo. - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Tạo người dùng @@ -8034,9 +8034,9 @@ channel with the same name ()! Subscribe to the account Theo dõi tài khoản này - src/app/+video-channels/video-channels.component.ts71 - src/app/+videos/+video-watch/video-watch.component.ts701 - + + + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS DANH SÁCH PHÁT diff --git a/client/src/locale/angular.xlf b/client/src/locale/angular.xlf index cabef3c88..39012827d 100644 --- a/client/src/locale/angular.xlf +++ b/client/src/locale/angular.xlf @@ -4552,14 +4552,14 @@ color: red; User created. src/app/+admin/users/user-edit/user-create.component.ts - 77 + 76 Create user src/app/+admin/users/user-edit/user-create.component.ts - 95 + 93 src/app/+admin/users/user-list/user-list.component.html @@ -7854,7 +7854,7 @@ channel with the same name ()! src/app/+videos/+video-watch/video-watch.component.ts - 701 + 704 @@ -8542,14 +8542,14 @@ channel with the same name ()!Scheduled src/app/+videos/+video-edit/shared/video-edit.component.ts - 191 + 192 Hide the video until a specific date src/app/+videos/+video-edit/shared/video-edit.component.ts - 192 + 193 diff --git a/client/src/locale/angular.zh-Hans-CN.xlf b/client/src/locale/angular.zh-Hans-CN.xlf index 9b0ee58e8..3a6c603f8 100644 --- a/client/src/locale/angular.zh-Hans-CN.xlf +++ b/client/src/locale/angular.zh-Hans-CN.xlf @@ -2374,13 +2374,13 @@ The link will expire within 1 hour. Scheduled 定时发布 - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date 在设定的日期之前隐藏视频 - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image 视频背景图片 @@ -3259,9 +3259,9 @@ The link will expire within 1 hour. Create user 创建用户 - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters 参数表 @@ -7498,8 +7498,8 @@ channel with the same name ()! 用户 已创建。 - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user Create user @@ -8228,7 +8228,7 @@ channel with the same name ()! 订阅此帐户 - src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts701 + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS 播放列表 diff --git a/client/src/locale/angular.zh-Hant-TW.xlf b/client/src/locale/angular.zh-Hant-TW.xlf index ff60bb01d..d73c743f4 100644 --- a/client/src/locale/angular.zh-Hant-TW.xlf +++ b/client/src/locale/angular.zh-Hant-TW.xlf @@ -2370,13 +2370,13 @@ The link will expire within 1 hour. Scheduled 排定 - src/app/+videos/+video-edit/shared/video-edit.component.ts191 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts192 Hide the video until a specific date 在特定日期前隱藏影片 - src/app/+videos/+video-edit/shared/video-edit.component.ts192 - + + src/app/+videos/+video-edit/shared/video-edit.component.ts193 Video background image 影片背景圖片 @@ -3262,9 +3262,9 @@ The link will expire within 1 hour. Create user 建立使用者 - src/app/+admin/users/user-edit/user-create.component.ts95 - src/app/+admin/users/user-list/user-list.component.html20 - + + + src/app/+admin/users/user-edit/user-create.component.ts93src/app/+admin/users/user-list/user-list.component.html20 Table parameters 參數表 @@ -7384,8 +7384,8 @@ channel with the same name ()! User created. 使用者 已建立。 - src/app/+admin/users/user-edit/user-create.component.ts77 - + + src/app/+admin/users/user-edit/user-create.component.ts76 Create user 建立使用者 @@ -8077,9 +8077,9 @@ channel with the same name ()! Subscribe to the account 訂閱帳號 - src/app/+video-channels/video-channels.component.ts71 - src/app/+videos/+video-watch/video-watch.component.ts701 - + + + src/app/+video-channels/video-channels.component.ts71src/app/+videos/+video-watch/video-watch.component.ts704 PLAYLISTS 播放清單 diff --git a/client/src/locale/player.ca-ES.json b/client/src/locale/player.ca-ES.json index 3ec86f480..b26fec9ba 100644 --- a/client/src/locale/player.ca-ES.json +++ b/client/src/locale/player.ca-ES.json @@ -7,32 +7,32 @@ "peer": "peer", "Go to the video page": "Anar a la pàgina del vídeo", "Settings": "Ajustos", - "Watching this video may reveal your IP address to others.": "Watching this video may reveal your IP address to others.", + "Watching this video may reveal your IP address to others.": "Veure aquest vídeo pot revelar la teua direcció IP a altres persones.", "Copy the video URL": "Copia l'URL del vídeo", "Copy the video URL at the current time": "Copia l'URL del vídeo a l'hora actual", "Copy embed code": "Copia el codi d'incrustació", "Copy magnet URI": "Copia l'URI del magnet", "Total downloaded: ": "Total descarregat: ", "Total uploaded: ": "Total de fitxers pujats: ", - "From servers: ": "From servers: ", - "From peers: ": "From peers: ", + "From servers: ": "Dels servidors: ", + "From peers: ": "Dels nodes: ", "Normal mode": "Normal mode", - "Stats for nerds": "Stats for nerds", - "Theater mode": "Theater mode", - "Video UUID": "Video UUID", - "Viewport / Frames": "Viewport / Frames", - "Resolution": "Resolution", - "Volume": "Volume", + "Stats for nerds": "Estadístiques per a nerds", + "Theater mode": "Mode cinema", + "Video UUID": "UUID del Vídeo", + "Viewport / Frames": "Finestra gràfica / Marcs", + "Resolution": "Resolució", + "Volume": "Volum", "Codecs": "Codecs", "Color": "Color", - "Connection Speed": "Connection Speed", - "Network Activity": "Network Activity", - "Total Transfered": "Total Transfered", + "Connection Speed": "Velocitat de la connexió", + "Network Activity": "Activitat de Xarxa", + "Total Transfered": "Total Transferit", "Download Breakdown": "Download Breakdown", - "Buffer Progress": "Buffer Progress", - "Buffer State": "Buffer State", - "Live Latency": "Live Latency", - "Player mode": "Player mode", + "Buffer Progress": "Progrés del Buffer", + "Buffer State": "Estat del Buffer", + "Live Latency": "Latència en viu", + "Player mode": "Mode Reproductor", "Audio Player": "Reproductor d'àudio", "Video Player": "Reproductor de vídeo", "Play": "Reproduir", @@ -48,12 +48,12 @@ "Progress Bar": "Barra de progrés", "progress bar timing: currentTime={1} duration={2}": "{1} de {2}", "Fullscreen": "Pantalla completa", - "Non-Fullscreen": "No pantalla completa", + "Non-Fullscreen": "Eixir de Pantalla Completa", "Mute": "Silenci", - "Unmute": "Veu", + "Unmute": "Activar So", "Playback Rate": "Velocitat de reproducció", "Subtitles": "Subtítols", - "subtitles off": "subtítols desactivats", + "subtitles off": "Subtítols Desactivats", "Captions": "Llegendes", "captions off": "Llegendes desactivades", "Chapters": "Capítols", diff --git a/client/src/locale/player.sv-SE.json b/client/src/locale/player.sv-SE.json index 10b4f2fa7..cbedec98a 100644 --- a/client/src/locale/player.sv-SE.json +++ b/client/src/locale/player.sv-SE.json @@ -28,7 +28,7 @@ "Connection Speed": "Uppkopplingshastighet", "Network Activity": "Nätverksaktivitet", "Total Transfered": "Överfört totalt", - "Download Breakdown": "Download Breakdown", + "Download Breakdown": "Nerladdningsdetaljer", "Buffer Progress": "Buffer Progress", "Buffer State": "Bufferttillstånd", "Live Latency": "Sändningsfördröjning", diff --git a/client/src/locale/player.th-TH.json b/client/src/locale/player.th-TH.json index a6605a3b6..5b5925892 100644 --- a/client/src/locale/player.th-TH.json +++ b/client/src/locale/player.th-TH.json @@ -7,7 +7,7 @@ "peer": "เพียร์", "Go to the video page": "ไปที่หน้าวิดีโอ", "Settings": "การตั้งค่า", - "Watching this video may reveal your IP address to others.": "Watching this video may reveal your IP address to others.", + "Watching this video may reveal your IP address to others.": "การรับชมวิดีโอนี้อาจเปิดเผยที่อยู่ IP ของคุณสู่ผู้อื่น", "Copy the video URL": "คัดลอก URL วิดีโอ", "Copy the video URL at the current time": "คัดลอก URL วิดีโอ ณ เวลาปัจจุบัน", "Copy embed code": "คัดลอกโค้ดฝัง", @@ -21,8 +21,8 @@ "Theater mode": "โหมดโรงภาพยนตร์", "Video UUID": "Video UUID", "Viewport / Frames": "Viewport / Frames", - "Resolution": "Resolution", - "Volume": "Volume", + "Resolution": "ความละเอียด", + "Volume": "ระดับเสียง", "Codecs": "Codecs", "Color": "Color", "Connection Speed": "Connection Speed", diff --git a/client/src/locale/server.ca-ES.json b/client/src/locale/server.ca-ES.json index 10de3990e..cd89e7f29 100644 --- a/client/src/locale/server.ca-ES.json +++ b/client/src/locale/server.ca-ES.json @@ -244,5 +244,5 @@ "Chinese": "Xinès", "Zulu": "Zulu", "Normal mode": "Normal mode", - "Theater mode": "Theater mode" + "Theater mode": "Mode cinema" } diff --git a/client/src/locale/server.fr.json b/client/src/locale/server.fr.json new file mode 100644 index 000000000..2c9d6b600 --- /dev/null +++ b/client/src/locale/server.fr.json @@ -0,0 +1,246 @@ +{ + "Music": "Musique", + "Films": "Films", + "Vehicles": "Véhicules", + "Art": "Art", + "Sports": "Sports", + "Travels": "Voyages", + "Gaming": "Jeux vidéos", + "People": "Célébrités", + "Comedy": "Comédie", + "Entertainment": "Divertissement", + "News & Politics": "Actualités et politique", + "How To": "Tutoriels", + "Education": "Éducation", + "Activism": "Militantisme", + "Science & Technology": "Science et technologie", + "Animals": "Animaux", + "Kids": "Enfants", + "Food": "Nourriture", + "Attribution": "Attribution", + "Attribution - Share Alike": "Attribution - Partage dans les mêmes conditions", + "Attribution - No Derivatives": "Attribution - Pas de modification", + "Attribution - Non Commercial": "Attribution - Pas d'utilisation commerciale", + "Attribution - Non Commercial - Share Alike": "Attribution - Pas d'utilisation commerciale - Partage dans les mêmes conditions", + "Attribution - Non Commercial - No Derivatives": "Attribution - Pas d'utilisation commerciale - Pas de modification", + "Public Domain Dedication": "Dédié au domaine public", + "Public": "Public", + "Unlisted": "Non listé", + "Private": "Privé", + "Internal": "Interne", + "Published": "Publié", + "To transcode": "À transcoder", + "To import": "À importer", + "Waiting for livestream": "En attente du direct", + "Livestream ended": "Fin du direct", + "Pending": "En attente", + "Success": "Succès", + "Failed": "Echoué", + "Rejected": "Rejeté", + "Regular": "Régulier", + "Watch later": "Regarder plus tard", + "This video does not exist.": "Cette vidéo n'existe pas.", + "We cannot fetch the video. Please try again later.": "Nous ne pouvons pas récupérer cette vidéo. Réessayez plus tard.", + "Sorry": "Désolé", + "This video is not available because the remote instance is not responding.": "Cette vidéo n'est pas disponible car le serveur distant ne répond pas.", + "This playlist does not exist": "Cette liste de lecture n'existe pas", + "We cannot fetch the playlist. Please try again later.": "Nous ne pouvons pas récupérer la liste de lecture. Réessayez plus tard.", + "Playlist: {1}": "Liste de lecture : {1}", + "By {1}": "Par {1}", + "Unavailable video": "Vidéo indisponible", + "Misc": "Divers", + "Unknown": "Inconnu", + "Afar": "Afar", + "Abkhazian": "Abkhaze", + "Afrikaans": "Afrikaans", + "Akan": "Akan", + "Amharic": "Amharique", + "Arabic": "Arabe", + "Aragonese": "Aragonais", + "American Sign Language": "Langue des signes américaine", + "Assamese": "Assamais", + "Avaric": "Avar", + "Kotava": "Kotava", + "Aymara": "Aymara", + "Azerbaijani": "Azéri", + "Bashkir": "Bachkir", + "Bambara": "Bambara", + "Belarusian": "Biélorusse", + "Bengali": "Bengali", + "British Sign Language": "Langue des signes britannique", + "Bislama": "Bislama", + "Tibetan": "Tibétain", + "Bosnian": "Bosnien", + "Breton": "Breton", + "Bulgarian": "Bulgare", + "Brazilian Sign Language": "Langue des signes brésilienne", + "Catalan": "Catalan", + "Czech": "Tchèque", + "Chamorro": "Chamorro", + "Chechen": "Tchétchène", + "Chuvash": "Tchouvache", + "Cornish": "Cornique", + "Corsican": "Corse", + "Cree": "Cri", + "Czech Sign Language": "Langue des signes tchèque", + "Chinese Sign Language": "Langue des signes chinoise", + "Welsh": "Gallois", + "Danish": "Danois", + "German": "Allemand", + "Dhivehi": "Dhivehi", + "Danish Sign Language": "Langue des signes danoise", + "Dzongkha": "Dzongkha", + "Greek": "Grec", + "English": "Anglais", + "Esperanto": "Esperanto", + "Estonian": "Estonien", + "Basque": "Basque", + "Ewe": "Ewe", + "Faroese": "Féroïen", + "Persian": "Perse", + "Fijian": "Fidjien", + "Finnish": "Finnois", + "French": "Français", + "Western Frisian": "Frison occidental", + "French Sign Language": "Langue des signes française", + "Fulah": "Peul", + "Scottish Gaelic": "Gaélique écossais", + "Irish": "Irlandais", + "Galician": "Galicien", + "Manx": "Mannois", + "Guarani": "Guarani", + "German Sign Language": "Langue des signes allemande", + "Gujarati": "Goudjarati", + "Haitian": "Haïtien", + "Hausa": "Haoussa", + "Serbo-Croatian": "Serbo-Croate", + "Hebrew": "Hébreu", + "Herero": "Héréro", + "Hindi": "Hindi", + "Hiri Motu": "Hiri Motou", + "Croatian": "Croate", + "Hungarian": "Hongrois", + "Armenian": "Arménien", + "Igbo": "Igbo", + "Sichuan Yi": "Yi", + "Inuktitut": "Inuktitut", + "Indonesian": "Indonésien", + "Inupiaq": "Inupiaq", + "Icelandic": "Islandais", + "Italian": "Italien", + "Javanese": "Javanais", + "Lojban": "Lojban", + "Japanese": "Japonais", + "Japanese Sign Language": "Langue des signes japonaise", + "Kabyle": "Kabyle", + "Kalaallisut": "Groenlandais", + "Kannada": "Kannada", + "Kashmiri": "Cachemiri", + "Georgian": "Géorgien", + "Kanuri": "Kanouri", + "Kazakh": "Kazakhe", + "Khmer": "Cambodgien", + "Kikuyu": "Kikuyu", + "Kinyarwanda": "Kinyarwanda", + "Kirghiz": "Kirghize", + "Komi": "Komi", + "Kongo": "Kongo", + "Korean": "Coréen", + "Kuanyama": "Kuanyama", + "Kurdish": "Kurde", + "Lao": "Lao", + "Latvian": "Letton", + "Limburgan": "Limbourgeois", + "Lingala": "Lingala", + "Lithuanian": "Lituanien", + "Luxembourgish": "Luxembourgeois", + "Luba-Katanga": "Luba-Katanga", + "Ganda": "Luganda", + "Marshallese": "Marshallais", + "Malayalam": "Malayalam", + "Marathi": "Marathi", + "Macedonian": "Macédonien", + "Malagasy": "Malagache", + "Maltese": "Maltais", + "Mongolian": "Mongol", + "Maori": "Maori", + "Malay (macrolanguage)": "Malais (macro-langue)", + "Burmese": "Birman", + "Nauru": "Nauruan", + "Navajo": "Navajo", + "South Ndebele": "Ndébélé du Transvaal", + "North Ndebele": "Ndébélé du Zimbabwe", + "Ndonga": "Ndonga", + "Nepali (macrolanguage)": "Népalais (macro-langue)", + "Dutch": "Néerlandais", + "Norwegian Nynorsk": "Norvégien (Nynorsk)", + "Norwegian Bokmål": "Norvégien (Bokmål)", + "Norwegian": "Norvégien", + "Nyanja": "Chewa", + "Occitan": "Occitan", + "Ojibwa": "Ojibwé", + "Oriya (macrolanguage)": "Odia (macro-langue)", + "Oromo": "Oromo", + "Ossetian": "Ossète", + "Panjabi": "Pendjabi", + "Pakistan Sign Language": "Langue des signes pakistanaise", + "Polish": "Polonais", + "Portuguese": "Portugais", + "Pushto": "Pachto", + "Quechua": "Quechua", + "Romansh": "Romanche", + "Romanian": "Roumain", + "Russian Sign Language": "Langue des signes russe", + "Rundi": "Kirundi", + "Russian": "Russe", + "Sango": "Sango", + "Saudi Arabian Sign Language": "Langue des signes saoudienne", + "South African Sign Language": "Langue des signes sud-africaine", + "Sinhala": "Singhalais", + "Slovak": "Slovaque", + "Slovenian": "Slovène", + "Northern Sami": "Same du Nord", + "Samoan": "Samoan", + "Shona": "Shona", + "Sindhi": "Sindhi", + "Somali": "Somali", + "Southern Sotho": "Sotho du Sud", + "Spanish": "Espagnol", + "Albanian": "Albanais", + "Sardinian": "Sarde", + "Serbian": "Serbe", + "Swati": "Swati", + "Sundanese": "Soundanais", + "Swahili (macrolanguage)": "Swahili (macro-langue)", + "Swedish": "Suédois", + "Swedish Sign Language": "Langue des signes suédoise", + "Tahitian": "Tahitien", + "Tamil": "Tamoul", + "Tatar": "Tatar", + "Telugu": "Télougou", + "Tajik": "Tadjik", + "Tagalog": "Tagalog", + "Thai": "Thaï", + "Tigrinya": "Tigrigna", + "Klingon": "Klingon", + "Tonga (Tonga Islands)": "Tonga", + "Tswana": "Tswana", + "Tsonga": "Tsonga", + "Turkmen": "Turkmène", + "Turkish": "Turc", + "Twi": "Twi", + "Uighur": "Ouïghour", + "Ukrainian": "Ukrainien", + "Urdu": "Ourdou", + "Uzbek": "Ouzbek", + "Venda": "Venda", + "Vietnamese": "Vietnamien", + "Walloon": "Wallon", + "Wolof": "Wolof", + "Xhosa": "Xhosa", + "Yiddish": "Yidich", + "Yoruba": "Yoruba", + "Zhuang": "Zhuang", + "Chinese": "Chinois", + "Zulu": "Zoulou" +} diff --git a/client/src/locale/server.th-TH.json b/client/src/locale/server.th-TH.json index 8182c1185..1695e1120 100644 --- a/client/src/locale/server.th-TH.json +++ b/client/src/locale/server.th-TH.json @@ -42,10 +42,10 @@ "This video does not exist.": "ไม่มีวิดีโอนี้", "We cannot fetch the video. Please try again later.": "เราไม่สามารถดึงข้อมูลวิดีโอได้ โปรดลองอีกครั้งในภายหลัง", "Sorry": "ขออภัย", - "This video is not available because the remote instance is not responding.": "วิดีโอนี้ไม่สามารถรับชมได้เนื่องจากระบบต้นทางไม่ตอบสนอง", - "This playlist does not exist": "ไม่มีรายการเล่นนี้อยู่", + "This video is not available because the remote instance is not responding.": "วิดีโอนี้ไม่สามารถรับชมได้เนื่องจากเซิร์ฟเวอร์ต้นทางไม่ตอบสนอง", + "This playlist does not exist": "ไม่มีเพลย์ลิสต์นี้อยู่", "We cannot fetch the playlist. Please try again later.": "We cannot fetch the playlist. Please try again later.", - "Playlist: {1}": "รายการเล่น: {1}", + "Playlist: {1}": "เพลย์ลิสต์: {1}", "By {1}": "โดย {1}", "Unavailable video": "Unavailable video", "Misc": "อื่น ๆ", diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index 058033166..4f6e08c1b 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss @@ -59,13 +59,14 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; } /* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */ -.dropdown { +.dropdown, +.dropup { z-index: z(dropdown) !important; } .list-overflow-menu, .parent-entry { - z-index: z(header) - 1 !important; + z-index: z(menu) - 1 !important; } .btn-group, @@ -213,7 +214,7 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; content: ''; display: block; position: fixed; - z-index: z('menu') - 1; + z-index: z(overlay); } } } diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss index 39e81f270..e0a4c7d3f 100644 --- a/client/src/sass/include/_variables.scss +++ b/client/src/sass/include/_variables.scss @@ -159,17 +159,18 @@ $variables: ( $zindex: ( miniature : 10, - privacymsg : 20, sub-menu : 12500, + overlay : 12550, menu : 12600, search-typeahead: 12650, - header : 12700, popover : 13000, tooltip : 14000, loadbar : 15000, modal : 16000, dropdown : 17000, help-popover : 17000, + privacymsg : 17500, + header : 17500, notification : 18000, hotkeys : 19000 ); diff --git a/config/production.yaml.example b/config/production.yaml.example index 890ec94b9..282a631f9 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example @@ -239,7 +239,7 @@ contact_form: signup: enabled: false limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited - mimimum_age: 16 + minimum_age: 16 requires_email_verification: false filters: cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist diff --git a/package.json b/package.json index 887099efc..7611ac9ab 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "peertube", "description": "PeerTube, an ActivityPub-federated video streaming platform using P2P directly in your web browser.", - "version": "3.3.0-rc.1", + "version": "3.3.0", "private": true, "licence": "AGPL-3.0", "engines": { diff --git a/server/helpers/youtube-dl.ts b/server/helpers/youtube-dl.ts index d003ea3cf..fdd361390 100644 --- a/server/helpers/youtube-dl.ts +++ b/server/helpers/youtube-dl.ts @@ -42,7 +42,7 @@ class YoutubeDL { getYoutubeDLInfo (opts?: string[]): Promise { return new Promise((res, rej) => { - let args = opts || [ '-j', '--flat-playlist' ] + let args = opts || [] if (CONFIG.IMPORT.VIDEOS.HTTP.FORCE_IPV4) { args.push('--force-ipv4') diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml index 573f12271..99a725ead 100644 --- a/support/doc/api/openapi.yaml +++ b/support/doc/api/openapi.yaml @@ -1,7 +1,7 @@ openapi: 3.0.0 info: title: PeerTube - version: 3.3.0-rc.1 + version: 3.3.0 contact: name: PeerTube Community url: https://joinpeertube.org diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md index cb344d2d7..8ea0c047d 100644 --- a/support/doc/dependencies.md +++ b/support/doc/dependencies.md @@ -101,7 +101,7 @@ sudo -H -u peertube CC=/opt/rh/devtoolset-7/root/usr/bin/gcc CXX=/opt/rh/devtool 6. Initialize the PostgreSQL database: ``` -sudo postgresql-setup initdb +sudo PGSETUP_INITDB_OPTIONS='--auth-host=md5' postgresql-setup --initdb --unit postgresql ``` Now that dependencies are installed, before running PeerTube you should enable and start PostgreSQL and Redis: @@ -141,7 +141,7 @@ sudo ln -s /usr/bin/python3 /usr/bin/python 6. Initialize the PostgreSQL database: ``` -sudo postgresql-setup initdb +sudo PGSETUP_INITDB_OPTIONS='--auth-host=md5' postgresql-setup --initdb --unit postgresql ``` Now that dependencies are installed, before running PeerTube you should enable and start PostgreSQL and Redis: @@ -188,7 +188,7 @@ This is necessary because `ffmpeg` is not in the Fedora repos. 7. Run: ``` -sudo dnf install nginx ffmpeg postgresql-server postgresql-contrib openssl gcc-c++ make redis git vim oidentd +sudo dnf install nginx ffmpeg postgresql-server postgresql-contrib openssl gcc-c++ make redis git vim ffmpeg -version # Should be >= 4.1 g++ -v # Should be >= 5.x ``` @@ -208,7 +208,7 @@ _from [PostgreSQL documentation](https://www.postgresql.org/download/linux/redha ``` # PostgreSQL -sudo postgresql-setup initdb +sudo PGSETUP_INITDB_OPTIONS='--auth-host=md5' postgresql-setup --initdb --unit postgresql sudo systemctl enable postgresql.service sudo systemctl start postgresql.service # Nginx @@ -217,9 +217,6 @@ sudo systemctl start nginx.service # Redis sudo systemctl enable redis.service sudo systemctl start redis.service -# oidentd -sudo systemctl enable oidentd.service -sudo systemctl start oidentd.service ``` 10. Firewall